Last active
June 16, 2022 21:10
-
-
Save alextes/30565acc21abcf85395e31a4202b22af to your computer and use it in GitHub Desktop.
Script to decode deposits and withdrawals in the MapleFinance Maven11 USDC pool.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ { "inputs": [ { "internalType": "address", "name": "_poolDelegate", "type": "address" }, { "internalType": "address", "name": "_liquidityAsset", "type": "address" }, { "internalType": "address", "name": "_stakeAsset", "type": "address" }, { "internalType": "address", "name": "_slFactory", "type": "address" }, { "internalType": "address", "name": "_llFactory", "type": "address" }, { "internalType": "uint256", "name": "_stakingFee", "type": "uint256" }, { "internalType": "uint256", "name": "_delegateFee", "type": "uint256" }, { "internalType": "uint256", "name": "_liquidityCap", "type": "uint256" }, { "internalType": "string", "name": "name", "type": "string" }, { "internalType": "string", "name": "symbol", "type": "string" } ], "stateMutability": "nonpayable", "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "owner", "type": "address" }, { "indexed": true, "internalType": "address", "name": "spender", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "Approval", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "liquidityProvider", "type": "address" }, { "indexed": true, "internalType": "address", "name": "token", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "balance", "type": "uint256" } ], "name": "BalanceUpdated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "loan", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "interest", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "principal", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "fee", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "stakeLockerPortion", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "poolDelegatePortion", "type": "uint256" } ], "name": "Claim", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "liquidityProvider", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "cooldown", "type": "uint256" } ], "name": "Cooldown", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "liquidityProvider", "type": "address" }, { "indexed": true, "internalType": "address", "name": "custodian", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "oldAllowance", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "newAllowance", "type": "uint256" } ], "name": "CustodyAllowanceChanged", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "custodian", "type": "address" }, { "indexed": true, "internalType": "address", "name": "from", "type": "address" }, { "indexed": true, "internalType": "address", "name": "to", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "CustodyTransfer", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "loan", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "defaultSuffered", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "bptsBurned", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "bptsReturned", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "liquidityAssetRecoveredFromBurn", "type": "uint256" } ], "name": "DefaultSuffered", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "liquidityProvider", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "depositDate", "type": "uint256" } ], "name": "DepositDateUpdated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "by", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "fundsDistributed", "type": "uint256" } ], "name": "FundsDistributed", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "by", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "fundsWithdrawn", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "totalWithdrawn", "type": "uint256" } ], "name": "FundsWithdrawn", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "liquidityProvider", "type": "address" }, { "indexed": false, "internalType": "bool", "name": "status", "type": "bool" } ], "name": "LPStatusChanged", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "uint256", "name": "newLiquidityCap", "type": "uint256" } ], "name": "LiquidityCapSet", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "loan", "type": "address" }, { "indexed": false, "internalType": "address", "name": "debtLocker", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "amountFunded", "type": "uint256" } ], "name": "LoanFunded", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "uint256", "name": "newLockupPeriod", "type": "uint256" } ], "name": "LockupPeriodSet", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "account", "type": "address" }, { "indexed": false, "internalType": "int256", "name": "lossesCorrection", "type": "int256" } ], "name": "LossesCorrectionUpdated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "by", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "lossesDistributed", "type": "uint256" } ], "name": "LossesDistributed", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "uint256", "name": "lossesPerShare", "type": "uint256" } ], "name": "LossesPerShareUpdated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "by", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "lossesRecognized", "type": "uint256" }, { "indexed": false, "internalType": "uint256", "name": "totalLossesRecognized", "type": "uint256" } ], "name": "LossesRecognized", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "account", "type": "address" }, { "indexed": false, "internalType": "int256", "name": "pointsCorrection", "type": "int256" } ], "name": "PointsCorrectionUpdated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "uint256", "name": "pointsPerShare", "type": "uint256" } ], "name": "PointsPerShareUpdated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "poolAdmin", "type": "address" }, { "indexed": false, "internalType": "bool", "name": "allowed", "type": "bool" } ], "name": "PoolAdminSet", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "bool", "name": "isOpen", "type": "bool" } ], "name": "PoolOpenedToPublic", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "enum Pool.State", "name": "state", "type": "uint8" } ], "name": "PoolStateChanged", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "uint256", "name": "newStakingFee", "type": "uint256" } ], "name": "StakingFeeSet", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "liquidityProvider", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "newTotalAllowance", "type": "uint256" } ], "name": "TotalCustodyAllowanceUpdated", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "from", "type": "address" }, { "indexed": true, "internalType": "address", "name": "to", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "Transfer", "type": "event" }, { "inputs": [ { "internalType": "address", "name": "_bPool", "type": "address" }, { "internalType": "address", "name": "_liquidityAsset", "type": "address" }, { "internalType": "address", "name": "_staker", "type": "address" }, { "internalType": "address", "name": "_stakeLocker", "type": "address" } ], "name": "BPTVal", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "DL_FACTORY", "outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_owner", "type": "address" } ], "name": "accumulativeFundsOf", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_owner", "type": "address" } ], "name": "accumulativeLossesOf", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "address", "name": "spender", "type": "address" } ], "name": "allowance", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "allowedLiquidityProviders", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "spender", "type": "address" }, { "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "approve", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "account", "type": "address" } ], "name": "balanceOf", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "cancelWithdraw", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "loan", "type": "address" }, { "internalType": "address", "name": "dlFactory", "type": "address" } ], "name": "claim", "outputs": [ { "internalType": "uint256[7]", "name": "claimInfo", "type": "uint256[7]" } ], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "", "type": "address" }, { "internalType": "address", "name": "", "type": "address" } ], "name": "custodyAllowance", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "deactivate", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "", "type": "address" }, { "internalType": "address", "name": "", "type": "address" } ], "name": "debtLockers", "outputs": [{ "internalType": "address", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "decimals", "outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "spender", "type": "address" }, { "internalType": "uint256", "name": "subtractedValue", "type": "uint256" } ], "name": "decreaseAllowance", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "delegateFee", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amt", "type": "uint256" }], "name": "deposit", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "depositDate", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "finalize", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "loan", "type": "address" }, { "internalType": "address", "name": "dlFactory", "type": "address" }, { "internalType": "uint256", "name": "amt", "type": "uint256" } ], "name": "fundLoan", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "getInitialStakeRequirements", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "bool", "name": "", "type": "bool" }, { "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_bPool", "type": "address" }, { "internalType": "address", "name": "_liquidityAsset", "type": "address" }, { "internalType": "address", "name": "_staker", "type": "address" }, { "internalType": "address", "name": "_stakeLocker", "type": "address" }, { "internalType": "uint256", "name": "_liquidityAssetAmountRequired", "type": "uint256" } ], "name": "getPoolSharesRequired", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" }, { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "spender", "type": "address" }, { "internalType": "uint256", "name": "addedValue", "type": "uint256" } ], "name": "increaseAllowance", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "custodian", "type": "address" }, { "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "increaseCustodyAllowance", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "intendToWithdraw", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "interestBalance", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "interestSum", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "depositAmt", "type": "uint256" } ], "name": "isDepositAllowed", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "isPoolFinalized", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "liquidityAsset", "outputs": [ { "internalType": "contract IERC20", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "liquidityCap", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "liquidityLocker", "outputs": [{ "internalType": "address", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "lockupPeriod", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "lossesBalance", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "name", "outputs": [{ "internalType": "string", "name": "", "type": "string" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "openToPublic", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "poolAdmins", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "poolDelegate", "outputs": [{ "internalType": "address", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "poolLosses", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "poolState", "outputs": [ { "internalType": "enum Pool.State", "name": "", "type": "uint8" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "principalOut", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "token", "type": "address" } ], "name": "reclaimERC20", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_owner", "type": "address" } ], "name": "recognizableLossesOf", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_owner", "type": "address" } ], "name": "recognizedLossesOf", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "account", "type": "address" }, { "internalType": "bool", "name": "status", "type": "bool" } ], "name": "setAllowList", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "newLiquidityCap", "type": "uint256" } ], "name": "setLiquidityCap", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "newLockupPeriod", "type": "uint256" } ], "name": "setLockupPeriod", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "bool", "name": "open", "type": "bool" }], "name": "setOpenToPublic", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "poolAdmin", "type": "address" }, { "internalType": "bool", "name": "allowed", "type": "bool" } ], "name": "setPoolAdmin", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "newStakingFee", "type": "uint256" } ], "name": "setStakingFee", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "stakeAsset", "outputs": [{ "internalType": "address", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "stakeLocker", "outputs": [{ "internalType": "address", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "stakingFee", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "superFactory", "outputs": [{ "internalType": "address", "name": "", "type": "address" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "symbol", "outputs": [{ "internalType": "string", "name": "", "type": "string" }], "stateMutability": "view", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "totalCustodyAllowance", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "totalSupply", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "recipient", "type": "address" }, { "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "transfer", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "from", "type": "address" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "transferByCustodian", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "sender", "type": "address" }, { "internalType": "address", "name": "recipient", "type": "address" }, { "internalType": "uint256", "name": "amount", "type": "uint256" } ], "name": "transferFrom", "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "loan", "type": "address" }, { "internalType": "address", "name": "dlFactory", "type": "address" } ], "name": "triggerDefault", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "updateFundsReceived", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "updateLossesReceived", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "uint256", "name": "amt", "type": "uint256" }], "name": "withdraw", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [{ "internalType": "address", "name": "", "type": "address" }], "name": "withdrawCooldown", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "withdrawFunds", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_owner", "type": "address" } ], "name": "withdrawableFundsOf", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_owner", "type": "address" } ], "name": "withdrawnFundsOf", "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }], "stateMutability": "view", "type": "function" } ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ethers, { BigNumber } from "ethers"; | |
import fs from "fs/promises"; | |
import neatCsv from "neat-csv"; | |
type MavenTx = { | |
Txhash: string; | |
DateTime: string; | |
Method: "Withdraw" | "Deposit" | "Withdraw Funds" | string; | |
}; | |
const maven_txs = await neatCsv<MavenTx>( | |
await fs.readFile("./maven_usdc_tx_log.csv") | |
); | |
const abi = await fs.readFile("./abi.json", "utf8"); | |
// You can remove the arguments and it'll run, but extremely slow. Add some free API keys from Etherscan and Infura to speed things up. | |
const provider = ethers.getDefaultProvider("homestead", { | |
etherscan: | |
"", | |
infura: "", | |
}); | |
const inter = new ethers.utils.Interface(abi); | |
const out_rows = []; | |
const maven_deposit_withdraw_txs = maven_txs.filter( | |
(tx) => tx.Method === "Deposit" || tx.Method === "Withdraw" | |
); | |
for (const maven_tx of maven_deposit_withdraw_txs) { | |
const tx = await provider.getTransaction(maven_tx.Txhash); | |
const decodedInput = inter.parseTransaction({ | |
data: tx.data, | |
value: tx.value, | |
}); | |
out_rows.push([ | |
maven_tx.Txhash, | |
maven_tx.DateTime, | |
(decodedInput.args[0] as BigNumber).toNumber() / 1e6, | |
maven_tx.Method, | |
] as [string, string, number, string]); | |
} | |
fs.writeFile("./maven_txs.csv", "transaction_hash,datetime,amount,type\n"); | |
fs.appendFile( | |
"./maven_txs.csv", | |
out_rows.map((row) => row.join(",")).join("\n") | |
); |
We can't make this file beautiful and searchable because it's too large.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Txhash Blockno UnixTimestamp DateTime From To ContractAddress Value_IN(ETH) Value_OUT(ETH) CurrentValue @ $1094.1/Eth TxnFee(ETH) TxnFee(USD) Historical $Price/Eth Status ErrCode Method | |
0x6e3408bb6b4cd243ae02be6735ae8cd448c39a8924b71a367663c5d65f90fcb8 12772011 1625549000 2021-07-06 05:23:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002023305 2.213698001 2322.63 Finalize | |
0x50959557540e81d03d19b41ddeb37455bc67c37584fd8aead83f37d30644aaae 12778374 1625634506 2021-07-07 05:08:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00225396 2.466057636 2317.12 Set Allow List | |
0xb72dbd0713e643c753ce6a2ce48f7fe16f040df1e5043047718ea831c3072431 12778393 1625634735 2021-07-07 05:12:15 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002648403 2.897617722 2317.12 Set Allow List | |
0x7d49922bf7b9be086c6b9441b844967a99dcaa729e15bc48c7918eb0f32dcbb5 12778397 1625634821 2021-07-07 05:13:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002309817 2.52717078 2317.12 Set Allow List | |
0x263eb780efbf96d6c1b696d9d2fbdcce632c87aa4a333b2f757dad8c3672da45 12778401 1625634873 2021-07-07 05:14:33 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002310309 2.527709077 2317.12 Set Allow List | |
0xf9b915977cf009b4c6bd0cce56fac2aca06f8a63737076fa9537aa3a0af29ffe 12778407 1625634922 2021-07-07 05:15:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002309817 2.52717078 2317.12 Set Allow List | |
0xe56a2d15df490a55ae3aff2cc12c520976aad2156cfea80b6bd08310fc036296 12778410 1625634998 2021-07-07 05:16:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002423007 2.651011959 2317.12 Set Allow List | |
0xa615fb1b49b0e3900c40a6eb9fc4024aefb2bf12c1848a3d370d84fc9edee241 12778418 1625635124 2021-07-07 05:18:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00225348 2.465532468 2317.12 Set Allow List | |
0x535ed2be96e653cbb7b1469a956c2489463cb89dcc14fcd9a71ced150a4c6737 12778423 1625635188 2021-07-07 05:19:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00225396 2.466057636 2317.12 Set Allow List | |
0xc76f08d02c00e49447c0cd7b07234f40fbaf81a2aea31c199fff30ad519e0273 12778434 1625635342 2021-07-07 05:22:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002084913 2.281103313 2317.12 Set Allow List | |
0xf3ce6063d09d2170af429ec560b1abe981800c5845cd7b6196d55641cadb872f 12778437 1625635358 2021-07-07 05:22:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002479356 2.7126634 2317.12 Set Allow List | |
0x064096a61116a827429d4904b10f5d9168639fd1947e3cb0b0ef10cf0f4aaf75 12778446 1625635515 2021-07-07 05:25:15 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002479356 2.7126634 2317.12 Set Allow List | |
0x4457be53982ddfaa4f8258b7040f63b3f7a6b301e22d8084c67234e6e82f03a4 12778457 1625635597 2021-07-07 05:26:37 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00225396 2.466057636 2317.12 Set Allow List | |
0x601aa3f848ccb184a85650b65c64ded994b5d27e55f95ee49ba845b17c0a7e87 12778460 1625635668 2021-07-07 05:27:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00225396 2.466057636 2317.12 Set Allow List | |
0x334c663b701df4c0ea218391de4c94222c75ccf18b65d517c7147e08d3f46fe2 12779259 1625646707 2021-07-07 08:31:47 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00544298 5.955164418 2317.12 Deposit | |
0x2108310bdcda139bffc3ec8f88486d3a898dd8387854f030b6aae5d47dbb5e62 12779378 1625648399 2021-07-07 08:59:59 0xd7f87ccc655f4d771bf518345036a30fd5388366 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004928352 5.392109923 2317.12 Deposit | |
0x929b1bdc091b45df1cc033cd5ef3f4747b22eb5a3e3daed3819c398e5cd17d89 12780161 1625659138 2021-07-07 11:58:58 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00442288 4.839073008 2317.12 Deposit | |
0xbbeb47095a04d5eb05da95bd6fd15bf1f5f79a7153c0963c67fef82a60dd6a86 12780421 1625662708 2021-07-07 12:58:28 0xc31dc3bb5bce3284a15019e8b8aeb212a091284b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00424104 4.640121864 2317.12 Deposit | |
0xfabadcd354579255b2396a027ee42af5bd007459a86e497d51aa03d46015590c 12780908 1625669362 2021-07-07 14:49:22 0xed514f9de8c06e6d1f0883a21ddcfc8f4c8d3bae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005939296 6.498183754 2317.12 Deposit | |
0x4a0de964828fb5b25ca3280797ce0b7423a87f4a6b5af4e3c2842c6f2f6980c4 12780912 1625669406 2021-07-07 14:50:06 0xed514f9de8c06e6d1f0883a21ddcfc8f4c8d3bae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003569086 3.904936993 2317.12 Increase Custody Allowance | |
0x08b26ab433d947627d29f4a856fd6f9a8cf1ebf7526dd4f29eac77df9bb9860a 12781069 1625671186 2021-07-07 15:19:46 0x8e70ca936a2f2d81cbbf1dc84aabe4213c87b8e9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006116792 6.692382127 2317.12 Deposit | |
0x1465e7eade0850ec736987f7252965351a418136ce1aa3e4e4b07c3118100d99 12781074 1625671231 2021-07-07 15:20:31 0x8e70ca936a2f2d81cbbf1dc84aabe4213c87b8e9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00367598 4.021889718 2317.12 Increase Custody Allowance | |
0xfb4d1fe856a25626621bab66c538c4ed8d1ab9003d42ec0c299557bf1aeaf243 12781085 1625671357 2021-07-07 15:22:37 0xb079f40dd951d842f688275100524c09bef9b4e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00622072 6.806089752 2317.12 Deposit | |
0x803144a0695c5f259140edc0972cba8770fade9603e706ec1719a317f3f10a8d 12781303 1625674043 2021-07-07 16:07:23 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004784094 5.234277245 2317.12 Increase Custody Allowance | |
0x830a0ab7dcd76211617c8886e617de88c317a3f8ae0150ee653747db6575eb9a 12781400 1625675327 2021-07-07 16:28:47 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005011116 5.482662016 2317.12 Increase Custody Allowance | |
0x2b41a7e4e242d24016fcfb4746047e1d01b41b5ceca03d99061830c21db134de 12781817 1625680910 2021-07-07 18:01:50 0xa7c394611a3602468ee76533693fd5405b9938d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006644296 7.269524254 2317.12 Deposit | |
0x6e6263e1926ba096cc6f36d9017ed7c8c85f55717a4af412f03ec5793e6b4c3e 12782998 1625696907 2021-07-07 22:28:27 0xa7c394611a3602468ee76533693fd5405b9938d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0024220394 2.649953308 2317.12 Increase Custody Allowance | |
0x86d5970c8142d239b70cb50ca8ba6f69421674a4f07a2012fb27800542aa29d0 12786874 1625749649 2021-07-08 13:07:29 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004806512 5.258804779 2114.51 Deposit | |
0xefba8edb9cd129bc509a454841eac100e4d7180672e4667ed63bcb006b51508c 12787577 1625759175 2021-07-08 15:46:15 0xb079f40dd951d842f688275100524c09bef9b4e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002430016 2.658680506 2114.51 Increase Custody Allowance | |
0x7d46d6a0f4c08b50330e0909c55d25b69f07aacf760b37ed87c8553f0bab6ad7 12788160 1625766854 2021-07-08 17:54:14 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003858048 4.221090317 2114.51 Deposit | |
0xf3bc0c2256bf5b387cf1e85b6099568157ece10718bae69c7ca3de8b159d5085 12788249 1625767907 2021-07-08 18:11:47 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00366504 4.009920264 2114.51 Deposit | |
0x4b28d2dcbb921440d0496032b0fc5998fc2877a8583eb95c919b65113072a419 12788285 1625768284 2021-07-08 18:18:04 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00257232 2.814375312 2114.51 Deposit | |
0xcfb03a57da70576217716f891d4b694fe08270732732fbe561e5c992d2b6be3b 12788319 1625768712 2021-07-08 18:25:12 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002125928 2.325977825 2114.51 Increase Custody Allowance | |
0x99d127bcd006d6e91c783744da591be3116f1c5a5e99007ea41acc4a37c110bc 12788336 1625768914 2021-07-08 18:28:34 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00112725 1.233324225 2114.51 Increase Custody Allowance | |
0x64bb8936b5239b9b2a08bd44b36becb15bcdcd46b56b28c22acb10ca7aa9104e 12791122 1625806244 2021-07-09 04:50:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00424104 4.640121864 2145.67 Deposit | |
0xbcb07f0da0debd7508c659b5c99229d8bde3b5547e7d5cf393b8ba8c79e19214 12791493 1625811031 2021-07-09 06:10:31 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001822512 1.994010379 2145.67 Increase Custody Allowance | |
0x46f4c09438e600a630fc8f5f07eadcc1940efecdda9d2cff9b5ab141bdff2826 12792128 1625819626 2021-07-09 08:33:46 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003286192 3.595422667 2145.67 Deposit | |
0x3e14a49f89a8791da397be3f338dda4f36af60ab3bcd64d8b8fb0192bd0218ee 12792379 1625822871 2021-07-09 09:27:51 0xd7f87ccc655f4d771bf518345036a30fd5388366 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00151876 1.661675316 2145.67 Increase Custody Allowance | |
0xab64ce3fb89975897c3a3e7640bda0ba71f8383cb50cfb9bfe8c94e3b6dd8845 12792448 1625823939 2021-07-09 09:45:39 0xbb17f3baa12194c31f9bfbc245a669cf445bb721 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003251464 3.557426762 2145.67 Deposit | |
0x0a7e9aacb4714946d45bc7dbae705bb39f434aa89b7eec060122302206b9a814 12792467 1625824220 2021-07-09 09:50:20 0xbb17f3baa12194c31f9bfbc245a669cf445bb721 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0014200406 1.55366642 2145.67 Increase Custody Allowance | |
0xf9ac10cdaa55014151e5cad75d0b5204c9b955df5d7ec0d6690676f492f31998 12793722 1625841357 2021-07-09 14:35:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001746819 1.911194668 2145.67 Set Allow List | |
0x8e3cac9daa2b8f12c2ed3888403d15f3bcc068bdecaa6781c6b7c122d1f47633 12793728 1625841394 2021-07-09 14:36:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001746819 1.911194668 2145.67 Set Allow List | |
0x58e093d9be34d64784b5217364ebe7e9d9322e9c07d3ab29125c7f3e5c48455b 12793731 1625841446 2021-07-09 14:37:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00169047 1.849543227 2145.67 Set Allow List | |
0xd3e842c859db079f53b596abe14444725326064f3ecf09f5514670fc9ccd4578 12793734 1625841554 2021-07-09 14:39:14 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00169047 1.849543227 2145.67 Set Allow List | |
0x0374c080f2566f1b00a8df6a504b3d0bc630cc921c49432eb9536b80f84a2ba1 12793738 1625841588 2021-07-09 14:39:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001859517 2.03449755 2145.67 Set Allow List | |
0x07d92119ebfe62b3dbb506be6c07137db9e638d7184d3185ae1badc83e6800d2 12793739 1625841594 2021-07-09 14:39:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001859517 2.03449755 2145.67 Set Allow List | |
0x81503097991893bcd4b3c743250a4b353251fd3c05e17713366b817b6f6f99e5 12793741 1625841639 2021-07-09 14:40:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001803168 1.972846109 2145.67 Set Allow List | |
0xad245c5513b37456d34973a5ddd890c7c27256a7e790740028c448afe981575b 12793743 1625841684 2021-07-09 14:41:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001803168 1.972846109 2145.67 Set Allow List | |
0xf576bd815c2d36e3b6ec91379b81bb0abf4db871150b1ab3eb7d63493ad3dd85 12793746 1625841767 2021-07-09 14:42:47 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001803168 1.972846109 2145.67 Set Allow List | |
0xde5cd359d07b6ce63b3840ec9d36dda48f1505f1b98f688e213e4463ca5a61e7 12793752 1625841806 2021-07-09 14:43:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001915866 2.096148991 2145.67 Set Allow List | |
0x53c9f46c6a2e54dff13661d0ddcf47d96f4e374234ed151cdf1486d39ae7b988 12793756 1625841839 2021-07-09 14:43:59 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001915866 2.096148991 2145.67 Set Allow List | |
0xa2e78ce831893fb3c1c9ce228077236ff01a43a5558afccc0f9952a19187efd3 12793759 1625841888 2021-07-09 14:44:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001859517 2.03449755 2145.67 Set Allow List | |
0xc6614b916e0b93e1dc2110474cd2ed9d7bc650594b10c5c11cc72009afb45b52 12793762 1625841960 2021-07-09 14:46:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001859517 2.03449755 2145.67 Set Allow List | |
0xa112153c434917b8500b104a5ba58325f472fa5fef4d561f9d2f3c1e1bbe363d 12793765 1625842069 2021-07-09 14:47:49 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002309817 2.52717078 2145.67 Set Allow List | |
0xe09f3c4f3b9a566e92f81b99203e7be5f8d66eba430b1bb100523e1fe6b3a7a3 12793768 1625842110 2021-07-09 14:48:30 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002310309 2.527709077 2145.67 Set Allow List | |
0x5abcaf758d8d4bb586bd321e62d423df8ace30db50ced95696297acccc1a4f17 12793773 1625842142 2021-07-09 14:49:02 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002423007 2.651011959 2145.67 Set Allow List | |
0x0f8191283b96774235165cabdd2af15e81b232aa6206f27091397ec0ba19b544 12793780 1625842196 2021-07-09 14:49:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002423007 2.651011959 2145.67 Set Allow List | |
0xa1491fae2811dc7cf74f9361dc6336164e31d03fcb701e22b1a241a57b5d85bd 12793783 1625842242 2021-07-09 14:50:42 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00225396 2.466057636 2145.67 Set Allow List | |
0xb10672b5785137ad88ddf56e5da44edc9a57f6140f4e3976c67d8b5fce3bb0dd 12793788 1625842274 2021-07-09 14:51:14 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00225396 2.466057636 2145.67 Set Allow List | |
0x70a7a2588ab55b2540f064dddf32e1046742b093654589baea9a0cb7273f896b 12793791 1625842321 2021-07-09 14:52:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002423007 2.651011959 2145.67 Set Allow List | |
0xa697a36a1ccaf99896ffe166ee959f7c5cd817c3212cbf1f49739db174de0f42 12793794 1625842372 2021-07-09 14:52:52 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002423007 2.651011959 2145.67 Set Allow List | |
0x22e4fb13bc8f090d9279b67e23d5a55ee9bc128dbdd53b933ea8f616b07c1599 12793799 1625842447 2021-07-09 14:54:07 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002310309 2.527709077 2145.67 Set Allow List | |
0xcf6971b2cc6b0248b1b3ae57c126e5133f7cd9ff6aa81224870bc189cc9d184f 12793801 1625842467 2021-07-09 14:54:27 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002310309 2.527709077 2145.67 Set Allow List | |
0xe8381caabe3d4f39c236c71fef97aadf7574e241f66196f3394151b7d2b38e0b 12793809 1625842615 2021-07-09 14:56:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002310309 2.527709077 2145.67 Set Allow List | |
0x164a5cbebc5658a8000b9292f0738a0ee01893c3b1e8128c08603e9fc0a54468 12793813 1625842642 2021-07-09 14:57:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002310309 2.527709077 2145.67 Set Allow List | |
0x8b5b002b5ffc425ac67e28f69851899ace0a269c2ea9926dab2080a66a7b0eb5 12793815 1625842744 2021-07-09 14:59:04 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002309817 2.52717078 2145.67 Set Allow List | |
0x9584ba29ff7bee28f48614dd23c2d6cd01bc049e7ec77fdf758676cd29017258 12793900 1625843883 2021-07-09 15:18:03 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005690062 6.225496834 2145.67 Deposit | |
0xb3626488719c734e4a308ae49c864693b265999c28b1a4fc8ea51135d000cc05 12793904 1625843956 2021-07-09 15:19:16 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0030565045 3.344121573 2145.67 Increase Custody Allowance | |
0xc0ffa37298d83413815958c069dccc0a42d7e7a3a0b7aeb788ebd7297e43b5b7 12793950 1625844607 2021-07-09 15:30:07 0x9f10c27488119744fd355d4ff6894f23f57a5222 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0050552 5.53089432 2145.67 Deposit | |
0xc9641de85f4ecb2b8be796009aba2a5153001f51c73cf24ab0e3483804ade0de 12793961 1625844701 2021-07-09 15:31:41 0x9f10c27488119744fd355d4ff6894f23f57a5222 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003038 3.3238758 2145.67 Increase Custody Allowance | |
0xc80af45919e6243aeb81f87b2edd613e2a73e21df613dbf92ffcac9ed49a33ee 12794009 1625845358 2021-07-09 15:42:38 0x81ae5e24ac6b220751851b6626ea5dc1cc9d51b1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00438278 4.795199598 2145.67 Deposit | |
0x0965fc554415835b55db92f2837f309beb9d97cbdaef4dc0e9c1e08b935f2b55 12794162 1625847285 2021-07-09 16:14:45 0xad91bae71e4569ec5ff09be170e223cc6b388ab0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004665144 5.10413405 2145.67 Deposit | |
0x9cdd8bcc532a3e445765e04232ca3aac6c415eb7b9d4f83513d9f0c56f7b4b2e 12794164 1625847341 2021-07-09 16:15:41 0xad91bae71e4569ec5ff09be170e223cc6b388ab0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002505954 2.741764271 2145.67 Increase Custody Allowance | |
0xf334650b168363f36f2eb7988c236c7a4b913e29b856b81802d204a6d29241a9 12794176 1625847490 2021-07-09 16:18:10 0x1527dfc52df14067a7c5335fd848773a7e1f611a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003958304 4.330780406 2145.67 Deposit | |
0x480c4aa88884040d51faaaa70f3e567fc2bce5866389e1cca3f9e041d06cc470 12794180 1625847529 2021-07-09 16:18:49 0x1527dfc52df14067a7c5335fd848773a7e1f611a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002126264 2.326345442 2145.67 Increase Custody Allowance | |
0xb406968243ee4e11b652ec7bf0c40cb551f9c973b1247e12e0b2dff18d4484f8 12794212 1625847928 2021-07-09 16:25:28 0x3f363da363efd11925adb2460063ece532587cbf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0031595 3.45680895 2145.67 Deposit | |
0x1bbdf71d27d0b97e2ff1ef609acfd2a092e16c00582c8fae913da426f907df17 12794314 1625849306 2021-07-09 16:48:26 0x3f363da363efd11925adb2460063ece532587cbf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001519 1.6619379 2145.67 Increase Custody Allowance | |
0x2b4174a5ce77c6b4d0515f3c0b44236496957cd0a8d19d4c288c4da247f595c1 12794350 1625849675 2021-07-09 16:54:35 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003596464 3.934891262 2145.67 Deposit | |
0x246bb59e26cba3ee11b97194a8ecc4f50e5a3b8c42c4243c8f10763ef82e94c0 12794353 1625849753 2021-07-09 16:55:53 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002050326 2.243261677 2145.67 Increase Custody Allowance | |
0x19696de239a322492e147be5720965c90ca614bfe4c1f5a2ec4f573d69952f15 12794367 1625849981 2021-07-09 16:59:41 0x2a5d4f800464007ce4a31cbc1e670e70b51810f1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00262694124 2.874136411 2145.67 Deposit | |
0x0d0429239f24091adfd8dc95a4d855b77306393d379fa25d9bbc6554802f8c07 12794719 1625854768 2021-07-09 18:19:28 0xbdca5ccb951cbace4acb7d92713e2a2d3432ac49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002685992 2.938743847 2145.67 Deposit | |
0x31fbfd3ed82c84537f790be1353b68b5a7a958e7eb7169b8999bdf3d56aedcf5 12794851 1625856396 2021-07-09 18:46:36 0x3f60a58dbaafc585bbcd2ab7b3b20e1fa3ff4d93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002034718 2.226184964 2145.67 Deposit | |
0x39fa1045ce983634030f3637ff611a53225fe38e49a9afbe30d7fff12513054e 12794862 1625856575 2021-07-09 18:49:35 0x3f60a58dbaafc585bbcd2ab7b3b20e1fa3ff4d93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001222795 1.33786001 2145.67 Increase Custody Allowance | |
0x14d9039ae3a4db86bbda96fc2f5dbc10338b4250d85210ea1a330490be6e66e2 12795049 1625858989 2021-07-09 19:29:49 0x9dca7ce5ae2eb59e3896f0baf6b6424324a12022 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005055200184 5.530894522 2145.67 Deposit | |
0x7c51a3ecbdb0bc5a2a94b6060e4c7c0df8eb4bd0fcec63349d337f3b16bf6fb9 12795147 1625860298 2021-07-09 19:51:38 0xbdca5ccb951cbace4acb7d92713e2a2d3432ac49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001714496 1.875830074 2145.67 Deposit | |
0xafe440290587d58ab2dafd4c3436bd2fba71c80e993c20f8501aca1892123f4d 12795175 1625860700 2021-07-09 19:58:20 0xbdca5ccb951cbace4acb7d92713e2a2d3432ac49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00113889 1.246059549 2145.67 Increase Custody Allowance | |
0xbc97736ed4e5544309e771e689c337faaa0806edd69ead78b39bff2865f63cf6 12795779 1625868760 2021-07-09 22:12:40 0xcb218f2638185d13758592f87a0a9732a83f29f5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002274840184 2.488902646 2145.67 Deposit | |
0x0f9def25c96c3411cecd62df50ee2b0c79be12cda82fc39a1b5b5e98a7e54f7f 12795854 1625869795 2021-07-09 22:29:55 0xd711f7e1adcea92bbf0b374c229122a9b6d611b6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002148052 2.350183693 2145.67 Deposit | |
0xd477f977318b12e6b8aca0e0b393454e2b13b3ac4275cbf2f1b9422583a8e1a5 12795862 1625869910 2021-07-09 22:31:50 0xd711f7e1adcea92bbf0b374c229122a9b6d611b6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001290742 1.412200822 2145.67 Increase Custody Allowance | |
0xbfda990ad848edd3787151c9e3f86f828f21accbdaba46b9265c626f5cc9df96 12795886 1625870130 2021-07-09 22:35:30 0xcb218f2638185d13758592f87a0a9732a83f29f5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002004266 2.192867431 2145.67 Deposit | |
0xebe9874455d0769a20375197759ef9083222adb32bde63af40a7366f678a342d 12795896 1625870243 2021-07-09 22:37:23 0xcb218f2638185d13758592f87a0a9732a83f29f5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00144305 1.578841005 2145.67 Increase Custody Allowance | |
0xca41cd39723c5dabdf8d0fe2fcbb61307c521fa13fa20d116d8b303f9417c5d9 12796080 1625872610 2021-07-09 23:16:50 0x1a0cb1da3ac95edabdc8e7625b241df2cd9fad1b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00252736 2.765184576 2145.67 Deposit | |
0x9af6a5f27f1750989ad2005a8ada805b40485bf0b7e0a4bdd761028941293969 12796093 1625872853 2021-07-09 23:20:53 0x1a0cb1da3ac95edabdc8e7625b241df2cd9fad1b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00151876 1.661675316 2145.67 Increase Custody Allowance | |
0xf831cc202d1a1b17311c6cbd35cae2a531791d24940652e27b15922b99c4ec91 12796262 1625875202 2021-07-10 00:00:02 0x354d6f97482c3e533bbdd3adf65570b3d172c9ad 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00252736 2.765184576 2110.47 Deposit | |
0x28a19d76d2eeb2de5f21f0fd06ae8669d1e9bf21f72ef3d87187a3f3a6afaf1f 12796293 1625875598 2021-07-10 00:06:38 0x354d6f97482c3e533bbdd3adf65570b3d172c9ad 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001366884 1.495507784 2110.47 Increase Custody Allowance | |
0xda571d9778ef7fe3797ef01b2703b87ab150ded5adea0fbc10e1b46be57fb8e1 12796675 1625880423 2021-07-10 01:27:03 0x36aa7d15a2c4ceb8357aeec2cf628f1d8af7ac1a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00183794 2.010890154 2110.47 Deposit | |
0xdf4f1849f7240827ea1c6a477d50a94bc5d1f767a7e5c0f470890a0a1828c4eb 12796689 1625880578 2021-07-10 01:29:38 0x36aa7d15a2c4ceb8357aeec2cf628f1d8af7ac1a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000987194 1.080088955 2110.47 Increase Custody Allowance | |
0x561d553b3ef5e47d9788569966977d994885bb4a83da15b1372a7581482b6ebc 12797067 1625885357 2021-07-10 02:49:17 0xac727f8bae7d66a5376085768562c30edbd2a1d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001769152 1.935629203 2110.47 Deposit | |
0xc72c3cf17ddf4048f0e1972e769cd7c70518e5408de2fd1167ffb0fcaacf55e3 12797076 1625885449 2021-07-10 02:50:49 0xac727f8bae7d66a5376085768562c30edbd2a1d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001063132 1.163172721 2110.47 Increase Custody Allowance | |
0xaf20c4f0d12228f0315fd54360a6752ef9270c97e514040d3dc308f094f34c50 12798096 1625899210 2021-07-10 06:40:10 0x02ffb9b4bbc29f9a59b20c541d369c5add62a5a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001642784 1.797369974 2110.47 Deposit | |
0x980aaa186f2acf1cee1f57ebc072469bcf76ca66d373b09b294ffae169fe239c 12798102 1625899275 2021-07-10 06:41:15 0x02ffb9b4bbc29f9a59b20c541d369c5add62a5a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000987194 1.080088955 2110.47 Increase Custody Allowance | |
0x5ac01759464c563567c4e6a11a5bff67671f83bad7c7f3a6722372a8492775a6 12799705 1625920757 2021-07-10 12:39:17 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00075962 0.831100242 2110.47 Increase Custody Allowance | |
0x4bd535e1c9d5a66f99ce5ab6e2927e4358055c291612b12b6a751fe5ffa316df 12799974 1625924443 2021-07-10 13:40:43 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001500352 1.641535123 2110.47 Deposit | |
0xcf01ddf8f15c48516393f39fdfe3da3ac477a3d26c60a6dddc0c1b46658b38f8 12799977 1625924486 2021-07-10 13:41:26 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000876498 0.9589764618 2110.47 Increase Custody Allowance | |
0x6fe81b598c17bc51f9cc8063767c89ec171cf55f91afd17c86350b71f7ee9c2f 12800043 1625925385 2021-07-10 13:56:25 0x2adbc63f1a72d33b8050521eca1b57d335bd9dbc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00151656 1.659268296 2110.47 Deposit | |
0x5c6bcdd2c9784cb59266d99ddfad8c23264d5db0fb373ded51253bda6798c6ef 12800053 1625925456 2021-07-10 13:57:36 0x2adbc63f1a72d33b8050521eca1b57d335bd9dbc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000911256 0.9970051896 2110.47 Increase Custody Allowance | |
0x5aa7b099b4bc64973f8319824cd5c157a99ea1bb77674ecaacc6b99cbdfb1f02 12800074 1625925746 2021-07-10 14:02:26 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0026792 2.93131272 2110.47 Deposit | |
0xef943145a4ed00a6496627ce1c20f7b61c76ccd30fdb2f6f4a539a3c9f066c43 12800075 1625925774 2021-07-10 14:02:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000536648 0.5871465768 2110.47 Set Liquidity Cap | |
0x964c5b2244e8b8f27a11f073d7680a1a2d87e3731a5b7cda39623a2ba3987d97 12800076 1625925790 2021-07-10 14:03:10 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000500856 0.5479865496 2110.47 Increase Custody Allowance | |
0xaeab2119160bf0a569ee6c54509ab7bf35b7b45969ea3ee1b15bdfab2ea0fbf4 12800097 1625926024 2021-07-10 14:07:04 0x009fdde3e654cb2495135708dc1590daefb14ea7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0023457 2.56643037 2110.47 Deposit | |
0xdfbfb139e5ad5bb44c282a33a78295c8fd5fc00bc0913f74474c7875bdc946da 12800101 1625926116 2021-07-10 14:08:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00061392 0.671689872 2110.47 Set Open To Public | |
0x1f52d03adc7fe094bd94b1bce958b635f6a3632d18f6a508a012c1a5a006c9b5 12800103 1625926192 2021-07-10 14:09:52 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00372567 4.076255547 2110.47 Deposit | |
0x8088195d4f879f6e7b7c878dee658ce8b09b71306f85ba0023f85ee99c1d10ac 12800105 1625926292 2021-07-10 14:11:32 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00745206 8.153298846 2110.47 Deposit | |
0x61f623bb7ee237af30375b7e828e43e9327fa3af42cb0475725533d0acecddca 12800105 1625926292 2021-07-10 14:11:32 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002980824 3.261319538 2110.47 Deposit | |
0x8f5211b29e0156ee99910ee9e69901b75b234a55336e23b468b3b8e8b6da5b10 12800106 1625926319 2021-07-10 14:11:59 0x9b3611abceb1550b7ff2ebd46cf6ae4319130014 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01141514 12.48930467 2110.47 Error(0) Reverted Deposit | |
0x0ebdcbb02e4711d8819cee20463d3d9c7f1b7ffcab95d4baad04ed4ad1fd2df2 12800106 1625926319 2021-07-10 14:11:59 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001245 1.3621545 2110.47 Error(0) Reverted Deposit | |
0x513b2b197e6f892b691672b43da5a05f536678a835e88aadae5d4e86701d0407 12800107 1625926384 2021-07-10 14:13:04 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001711875 1.872962438 2110.47 Error(0) Reverted Deposit | |
0x2d7d59cbc7be419ff317d950daf22a77f085da557f06addaf0f700c07d7c0292 12800107 1625926384 2021-07-10 14:13:04 0x4d089e2748f43ad8efbc2da858af290c6298c08a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002607969 2.853378883 2110.47 Deposit | |
0x7cb00ec4e50584af797b6756514098bdc6782b9ab3b1e38bb4d5f979fbb4ece8 12800108 1625926408 2021-07-10 14:13:28 0xba0b3e6a81d8f26a46d958a36cd364ec0ee4476d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003340536 3.654880438 2110.47 Deposit | |
0xfaaf36d1129d7c967f6a2c28b18432e4bdcdae8dd5753fb6d80c188c5c009098 12800108 1625926408 2021-07-10 14:13:28 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001290946 1.412424019 2110.47 Increase Custody Allowance | |
0x176210bdc564172498697e6b68664f53e355a6d5015500834a533dfc320ec362 12800108 1625926408 2021-07-10 14:13:28 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00129115 1.412647215 2110.47 Increase Custody Allowance | |
0x8ae02b1c18747e424dfd2b60f189e8592f323da696f0893aa9d86df8fa8e9530 12800111 1625926428 2021-07-10 14:13:48 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00189875 2.077422375 2110.47 Increase Custody Allowance | |
0x3f608ecea7db9a4c81f2afae66bc5549a17a07e56b0985ebd1bb5c1133ecc8fd 12800113 1625926444 2021-07-10 14:14:04 0xd53ea1cd7d20316d77ea633fdf99a06f576ca29e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003546347 3.880058253 2110.47 Deposit | |
0x968ac4d38b26a237fde282ffbd6cb2c4d49b83f47e8480cd0c098503dbef0ef4 12800117 1625926510 2021-07-10 14:15:10 0xd53ea1cd7d20316d77ea633fdf99a06f576ca29e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00599945 6.563998245 2110.47 Deposit | |
0x2ea6b4622ec57e4caffe3c3e437de63340f00f21930719e7136bbea1120db23e 12800117 1625926510 2021-07-10 14:15:10 0xba0b3e6a81d8f26a46d958a36cd364ec0ee4476d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001215008 1.329340253 2110.47 Increase Custody Allowance | |
0x326e32ac5b1851f600bea6182d49db94dcf7dbc09d4a84c02ae12757d98ca87c 12800124 1625926654 2021-07-10 14:17:34 0x009fdde3e654cb2495135708dc1590daefb14ea7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001366884 1.495507784 2110.47 Increase Custody Allowance | |
0x29a52d221280c951a58b3b37b36bd0e766fc00a9e0b199363644c1e57f1f25cf 12800125 1625926674 2021-07-10 14:17:54 0xd53ea1cd7d20316d77ea633fdf99a06f576ca29e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001215008 1.329340253 2110.47 Increase Custody Allowance | |
0x745cfc79b60f65560ad47f5b3161f45e749ffb15e86603071c680990b26408de 12805389 1625998134 2021-07-11 10:08:54 0xc31dc3bb5bce3284a15019e8b8aeb212a091284b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00075938 0.830837658 2140.45 Increase Custody Allowance | |
0xbb337166a1b5256fa5b3b24d4f7521a89687ae2c054410c71ce46b35f7e080e7 12806835 1626017741 2021-07-11 15:35:41 0x4d089e2748f43ad8efbc2da858af290c6298c08a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000911256 0.9970051896 2140.45 Increase Custody Allowance | |
0xd62f6e900a148a5a01ddda85b03f9b859449656c7ae360d445ea3ebc1576292e 12816252 1626144585 2021-07-13 02:49:45 0x6f9bb7e454f5b3eb2310343f0e99269dc2bb8a1d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0034936439 3.822395791 1940.61 Deposit | |
0x86ae2b4df5b95381454473a072afe62764791e6b2b7843fca06f8f9c89e77fc3 12825093 1626264977 2021-07-14 12:16:17 0xd0485ddc7ae77c2a04f15c28ca9ac2c4d8b74369 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004453664203 4.872754005 1994.22 Deposit | |
0x596830628353d59244dfeec34a25862d0813a0a95bd4b10d415545b1c1ef0b05 12829717 1626327583 2021-07-15 05:39:43 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.035431101 38.7651676 1918.17 Fund Loan | |
0x51f56dd246ba4009dfe338b38e14116877cdfde4218ba5e062422634d8af8b86 12829724 1626327711 2021-07-15 05:41:51 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.037559727 41.09409731 1918.17 Fund Loan | |
0xfc66c10d689de183943ce96349c291b94e9905585b7799639d46eba9d4385733 12830233 1626334374 2021-07-15 07:32:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.031083912 34.00890812 1918.17 Fund Loan | |
0x10fa873f984f6ac8ebfb78d3264e568083cd1544e2d1055e931e8dca9ed4045f 12843761 1626518089 2021-07-17 10:34:49 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.028493586 31.17483244 1899.96 Fund Loan | |
0x9dc09dc6cbe6ec04417f2dfa7d0af263f3838c9d736527b534337ec737217b16 12855962 1626683175 2021-07-19 08:26:15 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02590302 28.34049418 1818.6 Fund Loan | |
0x3ddc665746c40253eca41c05c6f0a648204d302961f299a24700933a5efa378d 12926647 1627643770 2021-07-30 11:16:10 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.032379075 35.42594596 2470.76 Fund Loan | |
0x7098a60dc76c0d12a2d8e470bd9d49ace56f75ceb09ec00a368eec1a42e1b68d 12927376 1627653597 2021-07-30 13:59:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001609944 1.76143973 2470.76 Set Liquidity Cap | |
0x8388e9bc1ae6064217d7cfba51b98d5cddf96111327d722d573e5cdde53ea031 12927392 1627653795 2021-07-30 14:03:15 0xc32d7f8b71b6f79c9c2d0df200fc76fd6028d215 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004871195 5.32957445 2470.76 Deposit | |
0x755c0541dea4059782fc80d97a2c66ecf2719f897a21fee130aae8a16c7dc3e5 12927410 1627654017 2021-07-30 14:06:57 0xc32d7f8b71b6f79c9c2d0df200fc76fd6028d215 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004515559 4.940473102 2470.76 Deposit | |
0x6013d8ccde1fd019ce34538b6e80d34e9a2cc2f8b4b9bf2e2f9434e8bdf60f26 12927414 1627654070 2021-07-30 14:07:50 0xc32d7f8b71b6f79c9c2d0df200fc76fd6028d215 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002961582 3.240266866 2470.76 Increase Custody Allowance | |
0xdc58dcf6b989f274c5f19b334d3dac45ba9bec54dc69d05a7b31710e9a4f6dd3 12927430 1627654346 2021-07-30 14:12:26 0x6327600c8234767b78cdb4e79e64852014d4e579 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006124316 6.700614136 2470.76 Deposit | |
0xfdd0a2fb432ac5069bc91d9b2211815bf9f798d557ca533df6094e41c7437e8c 12927722 1627658216 2021-07-30 15:16:56 0x044a9c43e95aa9fd28eea25131a62b602d304f1f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005859182 6.410531026 2470.76 Deposit | |
0x74e656f26a262381423081853f05af5941443516af078748da887c92edc37aa7 12927725 1627658259 2021-07-30 15:17:39 0x044a9c43e95aa9fd28eea25131a62b602d304f1f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002885188 3.156684191 2470.76 Increase Custody Allowance | |
0xc20547810834de2aa7afb14ed0f26ec86aeee877287035688c667b732073c5a8 12929123 1627677302 2021-07-30 20:35:02 0x6327600c8234767b78cdb4e79e64852014d4e579 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002809706 3.074099335 2470.76 Increase Custody Allowance | |
0x2942f5e5d1692e22f6db0751b47c97147aba90b5f3265bac6533f0c8d62080af 12929885 1627687587 2021-07-30 23:26:27 0x96a6505172a24e54a56147cf884bd4c2f315f741 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003477292 3.804505177 2470.76 Deposit | |
0xc6b8d9d3d838960b9da57b67279b44f2fd08cfd73f66b9d61b7f003e0cab3049 12929888 1627687595 2021-07-30 23:26:35 0x96a6505172a24e54a56147cf884bd4c2f315f741 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002126264 2.326345442 2470.76 Increase Custody Allowance | |
0x5e0adde24636a23fc5b53d757c588b40f9fe3dd7fa1ab5512c6bbcaa0f2e66cc 12932646 1627725309 2021-07-31 09:55:09 0x391891af67e29d97e61e30c3036a0874f5da411e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003237969 3.542661883 2531.75 Deposit | |
0xd0563fc45dc694d06323b59077ee448059e46861d67ad23f07adde44abd7e549 12932842 1627728028 2021-07-31 10:40:28 0x391891af67e29d97e61e30c3036a0874f5da411e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003044681 3.331185482 2531.75 Deposit | |
0x4305c7e98f1d63d073cfb09fb56332b7cdf97fea429e32ff59a94d70ef68f017 12932843 1627728097 2021-07-31 10:41:37 0x391891af67e29d97e61e30c3036a0874f5da411e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002202202 2.409429208 2531.75 Increase Custody Allowance | |
0xaf484bd02febeac22caf2a9d9155ed318b8d720d4d138ae323d377fa7041c9d6 12935950 1627770949 2021-07-31 22:35:49 0x79305ba7623f27441e39bfee4fb7218b8224d4c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003601481 3.940380362 2531.75 Deposit | |
0x80eb4331fc1f382b85348bedba656e0d3ab43e606456c50baa316b7353e5b5db 12935956 1627771051 2021-07-31 22:37:31 0x79305ba7623f27441e39bfee4fb7218b8224d4c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002201854 2.409048461 2531.75 Increase Custody Allowance | |
0x2992b27043d93d9d6f537a0fac4e64983d2e70fa5daa843c1e400e99dcba602a 12941720 1627849012 2021-08-01 20:16:52 0xe864166688e95618920e32619753e23175f189ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005092241 5.571420878 2556.41 Deposit | |
0x824c9baef5fa889bac6adc26e29391ece5532e4ffcbdadfd8b738f831102f08d 12941730 1627849147 2021-08-01 20:19:07 0xe864166688e95618920e32619753e23175f189ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00311395 3.406972695 2556.41 Increase Custody Allowance | |
0xb1f237dfbe99c80f61c528e6c89b57876e8d362b1395c8b0021d64fb54595260 12950587 1627970268 2021-08-03 05:57:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.056987172 62.34966489 2508.21 Fund Loan | |
0x7fb28e6720f62d1d026d79ef77e967f1e12e9f398efb68f6a0f07604ce7227bf 12951996 1627989453 2021-08-03 11:17:33 0xe864166688e95618920e32619753e23175f189ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002520028 2.757162635 2508.21 Deposit | |
0xae1e671281b55ad43db3a9cd30d7fccfedd38a19f797095f680b73213c5127e5 12952012 1627989685 2021-08-03 11:21:25 0xe864166688e95618920e32619753e23175f189ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00112725 1.233324225 2508.21 Increase Custody Allowance | |
0x813532deb1b617fa7f4afed909d24f8e9d053f43fb2e73501e1ec11fe692654b 12969108 1628222197 2021-08-06 03:56:37 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004857644 5.3147483 2892.36 Deposit | |
0x72231b2aeacd9bb1d8bbfe7ffcac2837e35f417bec689203446b081653a89656 12969114 1628222262 2021-08-06 03:57:42 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001836472 2.009284015 2892.36 Increase Custody Allowance | |
0x6e199dabdab7956058a1af3ba2c2f1bd77d0acb6a712ba5d6cbc3a9ed73291cb 12976442 1628319633 2021-08-07 07:00:33 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004477270777 4.898581958 3162.43 Deposit | |
0x92a2063b1ff4536e6cca51edbac5dd088717ef83a35f561fa99e2c5de851d6a6 12982972 1628406780 2021-08-08 07:13:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.049216194 53.84743786 3013.75 Fund Loan | |
0x185b57e08f6b34aa03658aae82665b16f11c324971daf698331b9eb7c44acacd 12983078 1628408396 2021-08-08 07:39:56 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005579698145 6.10474774 3013.75 Deposit | |
0xcf4c06627524c610cbad57c98d6cd5c99125cb796d294a32c50ee7e224170cc3 12983084 1628408492 2021-08-08 07:41:32 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002927010413 3.202442093 3013.75 Increase Custody Allowance | |
0xbc6384e8dd4428ca01c88c36887467b82afd4a2196671adcc58af375efc4a726 12983294 1628411414 2021-08-08 08:30:14 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005059915188 5.536053208 3013.75 Deposit | |
0x9fd3acb823db6ac359b00971bec0c97a1f4772cfc88cb53ff36fa3bfaadc3afd 12983306 1628411591 2021-08-08 08:33:11 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002919851624 3.194609662 3013.75 Increase Custody Allowance | |
0x863bd085cb0c01aa2ad42433112b1d00c63beee0c6c64126b9dc0d222591f682 12985129 1628434622 2021-08-08 14:57:02 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00578356 6.327792996 3013.75 Deposit | |
0x0ef92f94c27033390ab962186d66fd77058468a5b87b6a85ed39e949e394aa6d 12985159 1628435071 2021-08-08 15:04:31 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003189396 3.489518164 3013.75 Increase Custody Allowance | |
0x6a55ba50599fbede4bd0d98c0466cf730236a45142a21036475bba795884033a 12988448 1628478953 2021-08-09 03:15:53 0x6f9bb7e454f5b3eb2310343f0e99269dc2bb8a1d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003660341104 4.004779201 3164.94 Deposit | |
0x6a0c427de01a2e6bad89d45fbec2dcaeba4a1a5c3e3b69a70b40b16fcdabc563 12988456 1628479051 2021-08-09 03:17:31 0x6f9bb7e454f5b3eb2310343f0e99269dc2bb8a1d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002580636846 2.823474773 3164.94 Increase Custody Allowance | |
0x7e07ed3b35585fa8e22f400c1b10857997a3d51357e0ca1f1f6ee3613c61e973 12993099 1628540289 2021-08-09 20:18:09 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008386858 9.176061338 3164.94 Deposit | |
0x32be7a5191decc425fd4d42a2498927d1c97d9d7dda0db6acb23f52de03083e2 12993108 1628540546 2021-08-09 20:22:26 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0050127 5.48439507 3164.94 Increase Custody Allowance | |
0x1694910a61dd052c266839f11d795d0107ce202fca11694a8cacf711dead0451 12994138 1628554713 2021-08-10 00:18:33 0x97046649f299f47bf1577d04fe0ee3116eb2ba94 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008381031597 9.16968667 3141.67 Deposit | |
0x880fa210fa7fa0d5a9693d4eaefdd9f4a79ccf61846922ec285eaa516b83344d 12996329 1628584597 2021-08-10 08:36:37 0x0dc874fb5260bd8749e6e98fd95d161b7605774d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007021847 7.682602803 3141.67 Deposit | |
0x0140b6bade1469e519dd7bfe85e06e6b48145c5df3227c923033eb32ee7be1d9 12996461 1628586150 2021-08-10 09:02:30 0x0dc874fb5260bd8749e6e98fd95d161b7605774d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003948776 4.320355822 3141.67 Increase Custody Allowance | |
0x32670e5b10050ecf772007d4dac8b059b6225d0ca3133e1dd8ffc4a13c411b9b 12997045 1628593875 2021-08-10 11:11:15 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0019747 2.16051927 3141.67 Increase Custody Allowance | |
0x7d0f68f8f6e41946acb4579b70c28a22067feec81393317f637c1cffd201d806 12999363 1628623674 2021-08-10 19:27:54 0x97046649f299f47bf1577d04fe0ee3116eb2ba94 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005119732188 5.601498986 3141.67 Increase Custody Allowance | |
0x02e44cb9fabd885bcd5249b3c5cd460ee5875b245e1d57ee734fa8d61db536a6 13003683 1628682392 2021-08-11 11:46:32 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005147000212 5.631332932 3168.24 Deposit | |
0x2349b3772470ff6dff7425cd40effe7e02009426da3dc2d801820b488ae09063 13003769 1628683544 2021-08-11 12:05:44 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003144837166 3.440766343 3168.24 Increase Custody Allowance | |
0xe9369db5cbe8380a7b7c4f2210d67a84ac1c5b94d3241f981caca57679789b97 13009565 1628761188 2021-08-12 09:39:48 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004920919958 5.383978526 3047.29 Deposit | |
0x76d7355db02b29522911b5e49daf5857b986989d0afbe8fbcbd895e62eb8de4c 13010044 1628767240 2021-08-12 11:20:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01701404397 18.61506551 3047.29 Claim | |
0x0e494199dc17b410d3e7b9732e671263fbf32bcbfc85f09d356a65b7a17a04a3 13010051 1628767359 2021-08-12 11:22:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011943096 13.06694133 3047.29 Claim | |
0xf813973dd7bb37a419acdc77e85bf6f7cd8e7e5809e01ee09b0456c8dad10ebc 13010051 1628767359 2021-08-12 11:22:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009753536 10.67134374 3047.29 Claim | |
0xabf0306e070060cb50f4fc953f534aea86e69b22b62ba4c3a40fafbf46062dd4 13010051 1628767359 2021-08-12 11:22:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009753536 10.67134374 3047.29 Claim | |
0xdc3c023c29be11303d4799a09e57e363006f69effa787e22b0992cf11b844d0a 13010051 1628767359 2021-08-12 11:22:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009753536 10.67134374 3047.29 Claim | |
0x1d37a41c780ad775fe88d497cc0480c507b4aced71f762d16b3c012f33b058d2 13010051 1628767359 2021-08-12 11:22:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009753536 10.67134374 3047.29 Claim | |
0x38838309903f73570bc4c55558e067bc8b2af66b878498091aae5632722ec9c3 13010051 1628767359 2021-08-12 11:22:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010523552 11.51381824 3047.29 Claim | |
0xa762cc9bb95c85ccd7a42103a18dc4641ea7510a8b2ddc7e957be231ca10b4e9 13010051 1628767359 2021-08-12 11:22:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010523552 11.51381824 3047.29 Claim | |
0xac18b82a1e40329eee2b7f06f7f5b5bae830c1888bc0a6183b920a9caa46dbd1 13010248 1628769982 2021-08-12 12:06:22 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004594556 5.02690372 3047.29 Deposit | |
0xddf82271cbd99e7b29b25120e45a5156e172cf4e619f389d958e198c4f87c4c8 13010311 1628770753 2021-08-12 12:19:13 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00125214 1.369966374 3047.29 Increase Custody Allowance | |
0x0e9b1739c8a83cfc3cdbcca3ab9963f9854b20c71fcb9d1eebba8b02379c5723 13010810 1628777391 2021-08-12 14:09:51 0xc6e4ad3ccdfc65687d2d60a454a8bddc1f4d6c06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008381746695 9.170469059 3047.29 Deposit | |
0x0d5a8223615d26e1420e71941003b75d47cc5be0fd1cff8b193c6d54a2f5aa6f 13010825 1628777571 2021-08-12 14:12:51 0xc6e4ad3ccdfc65687d2d60a454a8bddc1f4d6c06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003775606514 4.130891087 3047.29 Increase Custody Allowance | |
0xf34e890e064a51a2aedac37d38b762ac9a2d2b054ed5a8b2aff4685c37d030d6 13010963 1628779375 2021-08-12 14:42:55 0xc78bf98a0deb8a85974fb9b7b3a0e2498447c4dd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00904937 9.900915717 3047.29 Deposit | |
0xbdd987491eef742669757fbfc43b098dd263aa43a21e583a5e089866f3d343b2 13010987 1628779648 2021-08-12 14:47:28 0xc78bf98a0deb8a85974fb9b7b3a0e2498447c4dd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00417659 4.569607119 3047.29 Increase Custody Allowance | |
0x4e068135ac387ba3650149b58b78072211ba1514df0588a46ea2232ce77861e0 13011266 1628783477 2021-08-12 15:51:17 0x6bb18d986dbab85fb7c5f8e9ffff3819096c0603 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008391846 9.181518709 3047.29 Deposit | |
0x9b2248ccaf4ca404fc288ec7482db8032fc00063a52597ea369c8ac7faccd8c0 13011359 1628784773 2021-08-12 16:12:53 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008648576 9.462407002 3047.29 Deposit | |
0x37ab2bac37a50d2d246748c9776849b0a298148ee84b1d51a39e4ab68439170f 13011515 1628787005 2021-08-12 16:50:05 0x468f05137394f349f37c5e7d9b35661b6f68c0b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01105330769 12.09342394 3047.29 Deposit | |
0x4772057ccfc8f99a617e4676812c6b1f48a72c3bc3a87531c09339007ac59e09 13012373 1628797946 2021-08-12 19:52:26 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007349709335 8.041316984 3047.29 Deposit | |
0x7d4c928977a23241682fbe38749b1ed45eac2d497bde6385904e5962ee727d62 13012391 1628798158 2021-08-12 19:55:58 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003345433509 3.660238803 3047.29 Increase Custody Allowance | |
0xe01029ce33fb16e2887363f4da31239a822b77f28e8d2d600e07f22cfe63786c 13012608 1628800897 2021-08-12 20:41:37 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006130324627 6.707188174 3047.29 Deposit | |
0x816caa81475b6f3a8513dd9e45024e6a61f9f5da92f8abd5d1a60491bc341dfb 13012624 1628801137 2021-08-12 20:45:37 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0022545 2.46664845 3047.29 Increase Custody Allowance | |
0xda27bd8a98a85b4efc52b14d46ede96ac5e9ec9dcfa31ebc99f591bb15086b00 13012659 1628801586 2021-08-12 20:53:06 0x4f2b82190998a41f905b7d6915430697242c82e5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007814551078 8.549900334 3047.29 Deposit | |
0x1206ff2b35668bbe165a96fd71b211f1b5ef70f4391fea06cf7daed792ba4678 13012666 1628801753 2021-08-12 20:55:53 0x4f2b82190998a41f905b7d6915430697242c82e5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003930303623 4.300145194 3047.29 Increase Custody Allowance | |
0xb26e461a1d4c6316da29714cb07b3b30aa06779a5c046d8ee0a599cc70b19507 13013609 1628814594 2021-08-13 00:29:54 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007222208 7.901817773 3324.26 Withdraw Funds | |
0xb51941f024a8a8acd474d06ca42aa06f280de71e0a46fff3c364106797c3e02f 13016100 1628848373 2021-08-13 09:52:53 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005746026 6.286727047 3324.26 Deposit | |
0x63e33775dd4a4b64bb4955c5f48f7ee650c9bca10bacbe94948dae208b3228f1 13016214 1628849944 2021-08-13 10:19:04 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010307652 11.27760205 3324.26 Claim | |
0x1542fb10d3e12213916f62b29cfca32882587ac14d049c716ab2e209afae056e 13016222 1628850031 2021-08-13 10:20:31 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004189658 4.583904818 3324.26 Deposit | |
0x4d7e141473a2bea593adbdd7f5b5a3fcaf8d99c9b2fdfb644e77c718d9d70146 13016228 1628850193 2021-08-13 10:23:13 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00134162 1.467866442 3324.26 Set Liquidity Cap | |
0x6b518bfd9e0d3179ceb9a8b97a05645bc12aebc8f4b8e2a706c3b9a1a9862877 13016244 1628850372 2021-08-13 10:26:12 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002608124842 2.85354939 3324.26 Increase Custody Allowance | |
0x03621f954078ce7c85a01782316078a673b9dc2a196bc829fdff211128c1bbff 13016408 1628852687 2021-08-13 11:04:47 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004721756685 5.166073989 3324.26 Deposit | |
0x4e92175fadd5be97fe8a2cd6108fecd4124ec84a622a5f7b4d23d998ce904041 13017558 1628867432 2021-08-13 15:10:32 0x468f05137394f349f37c5e7d9b35661b6f68c0b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004033468229 4.41301759 3324.26 Increase Custody Allowance | |
0x8a1a3da46dda88656d53fbd4ec789a227f1b281761141df4c24ed407fce869cc 13017590 1628867791 2021-08-13 15:16:31 0xbb17f3baa12194c31f9bfbc245a669cf445bb721 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006098006465 6.671828873 3324.26 Withdraw Funds | |
0x7d609291a711e12823be0274307b76f801937b6f79f0be1b7e14fee758e7d2ba 13017600 1628867925 2021-08-13 15:18:45 0x3631401a11ba7004d1311e24d177b05ece39b4b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00964505374 10.5526533 3324.26 Deposit | |
0x8ca71335b274f2b219902929080d047194172e391ac84d470acc690bba3e7e48 13017614 1628868125 2021-08-13 15:22:05 0x3631401a11ba7004d1311e24d177b05ece39b4b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00449504206 4.918025517 3324.26 Increase Custody Allowance | |
0xac4182ae98b77d960b56d23b7edf1ef7a892fe0ea1ad8e14977656c7ce767717 13021197 1628916188 2021-08-14 04:43:08 0xc50eaaee441566b4ef4f1e3270d19f24223cddf4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005757356 6.2991232 3266.71 Deposit | |
0xe5f5eb84b917556961e9053ae1e9e1f89249195ac801d3c3ea7ced7b9c0f8cec 13021209 1628916306 2021-08-14 04:45:06 0xc50eaaee441566b4ef4f1e3270d19f24223cddf4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002505954 2.741764271 3266.71 Increase Custody Allowance | |
0xfacce8b5543adff3f44e55212357fe67be18771f0f7482b1b9c12d1eb00263e2 13021439 1628919639 2021-08-14 05:40:39 0xa583f99495077952103235ad50606246d69e829f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007450696 8.151806494 3266.71 Deposit | |
0x80041e40c23bc159b62e45b132af4de94f04440057bfea23f5f3f8ce0ff85acd 13021446 1628919750 2021-08-14 05:42:30 0xa583f99495077952103235ad50606246d69e829f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003235752691 3.540237019 3266.71 Increase Custody Allowance | |
0x2d673741a795e44cc19f80c5875dbdf4f89b5f893095bd36dca16e3aae9c8ec5 13021807 1628924630 2021-08-14 07:03:50 0x3c229864378b3b0adf98ae247ca33986aed8ec1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006528139195 7.142437093 3266.71 Deposit | |
0x7e414ecf6856033193c3d9a7c0f62f4dd25973a02d567bed799ab3d7c2dc40fe 13021818 1628924759 2021-08-14 07:05:59 0x3c229864378b3b0adf98ae247ca33986aed8ec1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003066136355 3.354659786 3266.71 Increase Custody Allowance | |
0x947bc4653f76126f63343b585c3c2a86017f556e08aa962f6f0955a933396b69 13024184 1628956051 2021-08-14 15:47:31 0x907da5639a342f865269a4de908a8ad248937cff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007811538244 8.546603993 3266.71 Deposit | |
0x8c02e1410c39f97ee927d4f2db89e9888a2451c59cf09135b08f9ab21236a720 13024195 1628956198 2021-08-14 15:49:58 0x907da5639a342f865269a4de908a8ad248937cff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0032572254 3.56373031 3266.71 Increase Custody Allowance | |
0x2e57c8674e3e3e6458854eacb6411e98b5beefa544c3eb191cd26b4975445446 13030530 1629040591 2021-08-15 15:16:31 0x87616fa850c87a78f307878f32d808dad8f4d401 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01234095 13.5022334 3311.12 Deposit | |
0xa03fd68af6913593a15d6549f1171c0c525ffcbea8b6d987665319f4893fcda9 13030602 1629041446 2021-08-15 15:30:46 0xf463e5611ace3c1c523be44474b74f925f1353f7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005828917447 6.377418578 3311.12 Deposit | |
0xa43199f93c04c12be9287c17eec5baafb930eebf2c78fb64899b4a11bde0a198 13030618 1629041629 2021-08-15 15:33:49 0xf463e5611ace3c1c523be44474b74f925f1353f7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00250157191 2.736969827 3311.12 Increase Custody Allowance | |
0x51ad566c30a52797a49ff82e5281deca5df42cce1ea3a4d6e7237cbacf2d18ab 13032682 1629069420 2021-08-15 23:17:00 0x09dbc4a902199bbe7f7ec29b3714731786f2e878 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01727202242 18.89731973 3311.12 Deposit | |
0x937b05c5ee6543af5665aedabfe063e50dd2e620f67b2d954d65a4d93ee6d6d5 13032689 1629069483 2021-08-15 23:18:03 0x09dbc4a902199bbe7f7ec29b3714731786f2e878 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006393245541 6.994849946 3311.12 Increase Custody Allowance | |
0x8ea5dc7475bf4fcd83cbed43574dabbd9c0ff00f9953f6430f486e631b292073 13034335 1629091622 2021-08-16 05:27:02 0x87616fa850c87a78f307878f32d808dad8f4d401 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00432915 4.736523015 3147.63 Increase Custody Allowance | |
0x7a215976ccba58b027a037585189fec8c24e13854cf7eb43a1c6d6ad9f2db03c 13035194 1629102342 2021-08-16 08:25:42 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008358432 9.144960451 3147.63 Deposit | |
0x60d4141778b7c62b158dce2ca3bd99a96568f108c5a146d9e7d153ab0a324d57 13035270 1629103400 2021-08-16 08:43:20 0xdc3b2dce95ebd1e7c18eaa37780d10d240146660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006681404999 7.31012521 3147.63 Deposit | |
0xe5c58323e53ea202e15015906928f38a15e5848bbe76619c37c1c68683453838 13035586 1629108030 2021-08-16 10:00:30 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004545369674 4.973088961 3147.63 Deposit | |
0x9fba52775a3f9f8c263cc9e2c7abbf560f1fd54decfd230bb994da936475ce84 13036274 1629116716 2021-08-16 12:25:16 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004839886 5.295319273 3147.63 Deposit | |
0x719ce6fc4e13f0343ba1a3e6bee48f74191eb462153160e7a1f2c33604dfd597 13036293 1629116971 2021-08-16 12:29:31 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00167 1.827147 3147.63 Increase Custody Allowance | |
0x2f347dcb077621941759d275541b1d10b024823bc7838d1594b7f088c38e17c5 13036578 1629121096 2021-08-16 13:38:16 0xc31dc3bb5bce3284a15019e8b8aeb212a091284b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01023696396 11.20026227 3147.63 Deposit | |
0x86a811265a88939b59dce770be72358df3a4445d287c28d233c03f5836da9ba1 13036618 1629121668 2021-08-16 13:47:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0028749 3.14542809 3147.63 Set Liquidity Cap | |
0x703fa72841512b09c4532667cb97f2a29ef5c24fed015144c0172cbd230436e9 13037687 1629136497 2021-08-16 17:54:57 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006827246943 7.46969088 3147.63 Deposit | |
0x73f5d7775d0a99d522c4c51b4d8e7fe26f1b9795078ceeb5260ef94620e4885b 13037694 1629136589 2021-08-16 17:56:29 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002352502231 2.573872691 3147.63 Increase Custody Allowance | |
0x4711edfc3902c00cb8d8da880aae948f1e78729d10d64adbff984e6ffcda8e81 13038533 1629147100 2021-08-16 20:51:40 0xc31dc3bb5bce3284a15019e8b8aeb212a091284b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001681715933 1.839965403 3147.63 Increase Custody Allowance | |
0x3d32362186c97eb88781c3bb704562064f258db1ac85bea3dc294a48f72efd80 13038925 1629152572 2021-08-16 22:22:52 0xcdbb138deb5c7ec5d186698d719fa4f060e4bfc1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004182632482 4.576218199 3147.63 Error(0) Out of gas Deposit | |
0xb00fac2e277ed2385c6d4740cf2fbc126679873de9f8bdc55f5faa3477f4d83a 13039088 1629154676 2021-08-16 22:57:56 0xcdbb138deb5c7ec5d186698d719fa4f060e4bfc1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00670737805 7.338542325 3147.63 Deposit | |
0x9181754b7d7f03792905ca57cbbaa45c5dad5b69666bb9365396083018eb742b 13040138 1629168721 2021-08-17 02:52:01 0xcdbb138deb5c7ec5d186698d719fa4f060e4bfc1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003541631752 3.8748993 3011.96 Increase Custody Allowance | |
0x29abe434f9bb106c3d5bc9ae707bc8f4b202775d5929ef2dc4bd7e057b3f2af4 13041954 1629193087 2021-08-17 09:38:07 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006334448 6.930519557 3011.96 Error(0) Out of gas Claim | |
0x1639a0b14dd8fde914b8e8f2d9a21e247c63bb9bcfa78b2dbd3f560fcd11ea70 13041962 1629193230 2021-08-17 09:40:30 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008951382 9.793707046 3011.96 Claim | |
0xf27c40a4b323b17942c4d2b2a9b8b04faed3f62aaa7c381cdf8b9fb8c26de38e 13042062 1629194643 2021-08-17 10:04:03 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007468524 8.171312108 3011.96 Error(0) Out of gas Claim | |
0x1ea4334cee21a3fb5fef01f8b8ee79ef5001fc5b2a7f37683ed09c98cabc053f 13042079 1629194890 2021-08-17 10:08:10 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01125 12.308625 3011.96 Error(0) Out of gas Claim | |
0x076ac5974d9c9599f876f18febbd0d583dfabf33f22c25a4d9965b6836c73cc3 13042177 1629196273 2021-08-17 10:31:13 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01220643 13.35505506 3011.96 Claim | |
0x94a8e61d61015f690b3853cec7a52f0243eb5ed8d8944f516a82111149ad5517 13042503 1629200434 2021-08-17 11:40:34 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00247940794 2.712720227 3011.96 Increase Custody Allowance | |
0xf9c30bf7a75586bada1d2964dc53467a7e602f95b4dfeb0807e1029cf1c1db2d 13042707 1629203391 2021-08-17 12:29:51 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001780168208 1.947682036 3011.96 Increase Custody Allowance | |
0x31e8d7b2d668d5c5a01935a6e424ef675b7f4758f7a93ee644000780f52e335f 13043175 1629209404 2021-08-17 14:10:04 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002175959609 2.380717409 3011.96 Increase Custody Allowance | |
0xf5a6d692cb8b988eed93fb19aeac7c9d4927cf879dd058fa3c40a0ba2427d8b9 13043574 1629214861 2021-08-17 15:41:01 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.015410486 16.86061273 3011.96 Deposit | |
0xd9da2c457377fd2f27a4ced3919ba7dd153edf91d25ea65092b839a28e94b731 13043582 1629214960 2021-08-17 15:42:40 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006150978 6.72978503 3011.96 Increase Custody Allowance | |
0xf1b9f9a405762402ab056105145dfabb69181961b8a21030bbdabd12621b3e17 13045747 1629242570 2021-08-17 23:22:50 0x9b7a6e6b894e243e994cfaa32ea07d8a60740981 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007789916 8.522947096 3011.96 Deposit | |
0x55f1190c4491e765076274ad5bce7f745c1a7eaa02d2a0cac81bb2ed1d76b3fa 13045754 1629242680 2021-08-17 23:24:40 0x9b7a6e6b894e243e994cfaa32ea07d8a60740981 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003341272 3.655685695 3011.96 Increase Custody Allowance | |
0x8a14227015a9281cd8f331528dbba9c8191369e1ee27b847752617f60c52eb5d 13045757 1629242737 2021-08-17 23:25:37 0xd50520f57b66b7101528c9860d8b2e788ee774a9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006251836 6.840133768 3011.96 Deposit | |
0x05db69b2d777328e8aa334e12e3337ffa0cfc5fdaf6a3a4c104a1ba9b0ebaa07 13045768 1629242882 2021-08-17 23:28:02 0xd50520f57b66b7101528c9860d8b2e788ee774a9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002809262 3.073613554 3011.96 Increase Custody Allowance | |
0x27b8bdb73151de115b2c6ca487cd5bbb17bd9b1f2b6f86e777b517ab8834f9bb 13046938 1629258786 2021-08-18 03:53:06 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002937808 3.214255733 3013.52 Withdraw Funds | |
0xef9cdff1452d688ff56dc59603ab747c7044c6990a39ee299fa14d443aa3567c 13047438 1629265494 2021-08-18 05:44:54 0xad4e7250da56eb33e1a376250b916526c81cf1ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00508002 5.558049882 3013.52 Deposit | |
0x631ff239820134207334282a2ed5851dc9d29129f0cbcfcb89350bba82066ce6 13047494 1629266297 2021-08-18 05:58:17 0xad4e7250da56eb33e1a376250b916526c81cf1ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002429632 2.658260371 3013.52 Increase Custody Allowance | |
0x5ff98595063dfab766a803e174244440d4c7896946f3bd9292b66c74900f8352 13047841 1629270579 2021-08-18 07:09:39 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005028699 5.501899576 3013.52 Withdraw Funds | |
0x1273c4c1cb7851c634451ab3036c88e3a8859f6d0b22843764cdc1575e3f9179 13047843 1629270618 2021-08-18 07:10:18 0xf463e5611ace3c1c523be44474b74f925f1353f7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00330359285 3.614460937 3013.52 Deposit | |
0xb33a80471618f5b1a530fe44844757187d3a055365b52e196b8ae25cbbc38952 13047886 1629271387 2021-08-18 07:23:07 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004697322 5.13934 3013.52 Withdraw Funds | |
0xec8797842a3da40a9fe3f1b8ad979fc7e47e078021157082c4b4cd94426a3d3f 13047992 1629272888 2021-08-18 07:48:08 0xf463e5611ace3c1c523be44474b74f925f1353f7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001226519462 1.341934944 3013.52 Increase Custody Allowance | |
0xec5ab3a347e55e6808a3d0eaf5fdeeac50bcdddd6501b4f84e7e4956aad2104a 13048076 1629274081 2021-08-18 08:08:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001335616 1.461297466 3013.52 Increase Custody Allowance | |
0xe3fb20fb4b40f5220f44778dfebcfa2c30f9edec5526717fb927779f0b20d16a 13048177 1629275602 2021-08-18 08:33:22 0xb4d1340303d89ccc48a19cdbdb5723aeceda933d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006096024 6.669659858 3013.52 Deposit | |
0x7d9015afa43b041efb4c8abb6d96f0fcf92d026a05b34ffc2c0a850f0c255c56 13048247 1629276486 2021-08-18 08:48:06 0xb4d1340303d89ccc48a19cdbdb5723aeceda933d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002505954 2.741764271 3013.52 Increase Custody Allowance | |
0x061ec707f3c853bcb3f10d1363d774bbd37744c517553b672ee43511acc5a3bc 13049428 1629292484 2021-08-18 13:14:44 0xc3c14f31c8db2417d1695fa6c8bebe8f2804677e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006527598752 7.141845795 3013.52 Deposit | |
0x25eceffbea5b1944c87b61f9a1e574aeb645e497d0c797f770ccc7deeb5db27f 13049442 1629292687 2021-08-18 13:18:07 0xc3c14f31c8db2417d1695fa6c8bebe8f2804677e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002871543273 3.141755495 3013.52 Increase Custody Allowance | |
0xebda04190d7a484872e6ca2e4467a9242366c088d043589c0d946e3f90bc7a7a 13050420 1629306059 2021-08-18 17:00:59 0x81ae5e24ac6b220751851b6626ea5dc1cc9d51b1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004119023905 4.506624054 3013.52 Increase Custody Allowance | |
0x502acfafed6143b2be290db3f9c65282b519baac74c381badf0f64f8dd2648f4 13050619 1629308563 2021-08-18 17:42:43 0x1debd6c16b92c1d5c93237d9d65dbc5e5eb3e02f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006330170718 6.925839783 3013.52 Deposit | |
0x4a6655f0525c66f58e453565bab6e70f1ce865be4ab82bd08569458642b9dbd2 13050824 1629311364 2021-08-18 18:29:24 0x56871442f1c717bef8ad1b315c3e5df811a2e7f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.015748062 17.22995463 3013.52 Deposit | |
0xc4a59ed0fc1cd0edbe1a20cd364c379c3f6ddfc6349a29cc0a640a71322b9ae1 13050881 1629311946 2021-08-18 18:39:06 0x56871442f1c717bef8ad1b315c3e5df811a2e7f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002438373683 2.667824647 3013.52 Increase Custody Allowance | |
0xe7f18b8aa8953fb8fd101050194fc96ac7e3e212219c100f46302e5e2762c0a1 13051060 1629314440 2021-08-18 19:20:40 0x60963e2a899797ff6c0259abcba37bcdfdfbaff2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0084667 9.26341647 3013.52 Deposit | |
0x7c26a69809ff991bd8ffae9fb31dbb257d28acbca47ce528175ac64fdde916ef 13051073 1629314562 2021-08-18 19:22:42 0x60963e2a899797ff6c0259abcba37bcdfdfbaff2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003838486077 4.199687617 3013.52 Increase Custody Allowance | |
0x25ab8bbd5c722378dc137314598599c9cf4d6de8edb3741e2d9ebc83ec48540a 13052333 1629331773 2021-08-19 00:09:33 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005924088 6.481544681 3184.74 Deposit | |
0x5529eaa46dc55fc751fff3578727c4ab822b282db2e291d9278f0150651e907c 13052379 1629332270 2021-08-19 00:17:50 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002126936 2.327080678 3184.74 Increase Custody Allowance | |
0x4f2c11979acd902ba9bbc26b3a3659f3f4bd7df06fa322f4d08e2ad43ffc3c04 13054155 1629355580 2021-08-19 06:46:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00172494 1.887256854 3184.74 Set Liquidity Cap | |
0xde5bcf8bfc1147df6ebb74998bd14fa2c7c165e01e00b7dcbf522575d9239983 13054560 1629360901 2021-08-19 08:15:01 0x1debd6c16b92c1d5c93237d9d65dbc5e5eb3e02f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002654854311 2.904676101 3184.74 Increase Custody Allowance | |
0x6a63378b1ae6152c736ee6fb96b39d247a91a7f709ffb340f19dc6f6f656fd27 13055712 1629376426 2021-08-19 12:33:46 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002717904 2.973658766 3184.74 Deposit | |
0xadf26dda3bc6e221a9859c2be5a27b8e410ddf4c4cc33116be758ba4e1ab8c1a 13055729 1629376602 2021-08-19 12:36:42 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00096025 1.050609525 3184.74 Increase Custody Allowance | |
0x8928fe6851278f179846bd6c94068b62baf2ae7cbaa096f045b5759895c79388 13057153 1629395390 2021-08-19 17:49:50 0x9e545574c59115bd78869d815df4d53a70d83fb4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005674795451 6.208793703 3184.74 Deposit | |
0x389916ff31a41173b5a21298cf306fb5d640adc02f3d298241cdd68eb279262b 13057647 1629401847 2021-08-19 19:37:27 0x0b18628bf6d046e79e14026f02325d81a214d8ee 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009561337626 10.4610595 3184.74 Deposit | |
0x5203647c428e289bd7fd47fee8b804d92f46da4cccb64ccf61fb4b0adf01f928 13057947 1629405433 2021-08-19 20:37:13 0x52131aeaf3c6f0d59d81cc00ed5436c1c686a174 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006088894291 6.661859244 3184.74 Deposit | |
0xc95a6123983737a875ddea0472148b7700acaf699af0f46d5504a2dde7121f95 13057961 1629405527 2021-08-19 20:38:47 0x52131aeaf3c6f0d59d81cc00ed5436c1c686a174 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002240022731 2.45080887 3184.74 Increase Custody Allowance | |
0xbf9d790114d6e085de893c4475b311dffd4c028134148d83a0300bf279188002 13058528 1629413281 2021-08-19 22:48:01 0xd46c81245a0582891c2249daf2d68925977cf2a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006604026 7.225464847 3184.74 Deposit | |
0x35f7166c5e10f2606538a887bdc5bf60b0871f096a4cce38a125a76754f06b7c 13058572 1629413730 2021-08-19 22:55:30 0xd46c81245a0582891c2249daf2d68925977cf2a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002126264 2.326345442 3184.74 Increase Custody Allowance | |
0x86299ec9da74098ea3bb60846cc4e534f58c64fe0a50317d5b7ffc583ea327d1 13059902 1629432344 2021-08-20 04:05:44 0x0091ba2b0ce0d1b279a661a2de11701a3cda57c7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006876619161 7.523709025 3286.5 Deposit | |
0xca811d2a4717431e51a9a166e1b9cd181217cc359825e6d1fea9c83dedbd541b 13059912 1629432472 2021-08-20 04:07:52 0x0091ba2b0ce0d1b279a661a2de11701a3cda57c7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003061629119 3.349728419 3286.5 Increase Custody Allowance | |
0xc9b443485f336b0c95b7275842b26741da9a25814e80036d9b690d6cba8783a8 13060065 1629434548 2021-08-20 04:42:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011606256 12.69840469 3286.5 Error(0) Out of gas Fund Loan | |
0x476f98b0e696a83186b0092bd3cb0807bd9151b30e799b49de5e85e34521662e 13060069 1629434681 2021-08-20 04:44:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0144745 15.83655045 3286.5 Error(0) Out of gas Fund Loan | |
0xbac4c62a4ef7bd9ad4df82969d1a9bb3b23c4f9a18c413ca9b73511c0f186e47 13060077 1629434728 2021-08-20 04:45:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0192438 21.05464158 3286.5 Error(0) Out of gas Fund Loan | |
0xf6cdba3c1b6b2bd7e164d4579542db0e0ecc20d8c1820210b56f97eb7d5df16e 13060079 1629434760 2021-08-20 04:46:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03828752 41.89037563 3286.5 Error(0) Out of gas Fund Loan | |
0x3623f52053112ff5a7ec4b211ceda7ca15e8ebb03f2b29d2a375fd7525b55749 13060088 1629434955 2021-08-20 04:49:15 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06475815 70.85189192 3286.5 Fund Loan | |
0xe8b1b7d924113807fa5590b33eb733465ccae11b6a230d5e1dd180ef5e7dc81c 13065374 1629504728 2021-08-21 00:12:08 0x5a089c72cf4de3211bc9bb9e06c5076e37c2e76c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005371034305 5.876448633 3226.59 Deposit | |
0xa3638c66c2f39ce0a2eab89426e2d7b85724332157191c243768c9fcb31c5779 13065747 1629509647 2021-08-21 01:34:07 0x5a089c72cf4de3211bc9bb9e06c5076e37c2e76c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001770020165 1.936579063 3226.59 Increase Custody Allowance | |
0xdda7769e94475541531c127d3d02a77c6d893d97ad0675bacdf9e689170e7049 13067069 1629527568 2021-08-21 06:32:48 0x96f4da61ee795f9f4a5cf0daadcc336adc73232a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004402684 4.816976564 3226.59 Deposit | |
0xc9c025566986969e420fd102823f22313947abbe2a9a93b9005a5d320444ec15 13067073 1629527641 2021-08-21 06:34:01 0x96f4da61ee795f9f4a5cf0daadcc336adc73232a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001670636 1.827842848 3226.59 Increase Custody Allowance | |
0x7ed3e21a221a66480a17a928bc9222bdeff3f2aeff622f493989daf646bd42fd 13070209 1629569818 2021-08-21 18:16:58 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.062167824 68.01781624 3226.59 Fund Loan | |
0x63f32ffed91a54e3f824cd7c2496913087dda49e51ad89353447da073e3897f6 13074275 1629624607 2021-08-22 09:30:07 0x99999738d82a31d6a12b1bc789c5b0c09168afd1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002786678714 3.048905181 3241.65 Deposit | |
0x2a5e73b6e7d0d313b7bf897db36362903c958322ccba0ec511238766ad63daaf 13074286 1629624791 2021-08-22 09:33:11 0x99999738d82a31d6a12b1bc789c5b0c09168afd1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00205169543 2.24475997 3241.65 Increase Custody Allowance | |
0xc330699250455cc893a2e10126005afbee670a2875361f21b8c7c833ae1273b6 13074388 1629626072 2021-08-22 09:54:32 0xa093284c707e207c36e3fef9e0b6325fd9d0e33b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003455466 3.780625351 3241.65 Deposit | |
0x153bd8fc77a94356bd3e7dd14e9fc84559ef2853aaaf72a99120939284e80c4f 13074403 1629626301 2021-08-22 09:58:21 0xa093284c707e207c36e3fef9e0b6325fd9d0e33b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0016709 1.82813169 3241.65 Increase Custody Allowance | |
0x028c88b54fcc314b4817ac933ee489da1791f9e2ce60e547e103e060278971c6 13075693 1629643082 2021-08-22 14:38:02 0x9b3611abceb1550b7ff2ebd46cf6ae4319130014 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0093858226 10.26902851 3241.65 Deposit | |
0xeb606ec2b46082caeefac229a1651be8c3eeb882311ecb4af561c9cb2493cbe9 13077780 1629670384 2021-08-22 22:13:04 0xea93c16b2ed1cd73e6f9d5b5a92c36e504e8dc72 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009378438 10.26094902 3241.65 Deposit | |
0x7440913a80b832027d9b9d37dcd1dcb24b5809966221f85cf971606853851060 13078942 1629685880 2021-08-23 02:31:20 0xe519f4cd2803ba53a40e6377e82406e548418660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006096024 6.669659858 3322.71 Deposit | |
0x57ea7759f2df64d17deb1fc4d442bef0d4398631a2c4bbe81658449bea08ca84 13078951 1629685987 2021-08-23 02:33:07 0xe519f4cd2803ba53a40e6377e82406e548418660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002505954 2.741764271 3322.71 Increase Custody Allowance | |
0x2b9d90de321eb524a5927040793ef80c2e89942a8f5538465578ffc803f59a04 13080577 1629708656 2021-08-23 08:50:56 0xdc3b2dce95ebd1e7c18eaa37780d10d240146660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002505954 2.741764271 3322.71 Increase Custody Allowance | |
0x8324a7abaeb9b8436127128168d20d46105dc78ed3c88c6eab607e0e34fc99bd 13081656 1629722984 2021-08-23 12:49:44 0x1debd6c16b92c1d5c93237d9d65dbc5e5eb3e02f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004315536362 4.721628334 3322.71 Deposit | |
0x6beb2d09c8266c1deb2e8ebf1178ed6637906eba7e5ffeb1c1d4d15825fea567 13081667 1629723112 2021-08-23 12:51:52 0x1debd6c16b92c1d5c93237d9d65dbc5e5eb3e02f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001540956692 1.685960717 3322.71 Increase Custody Allowance | |
0xf61de45f84f163554cc8385a354f08d556c7c6d878c8962ad74487bb195c1d6b 13081978 1629727423 2021-08-23 14:03:43 0x9768478aa52ccdc900e3473a5119c8f94016cb48 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01085291782 11.87417738 3322.71 Deposit | |
0x4c0f47ef6531fa24e9ec31bbbac9410b62ac69f4ce98dd62d0935fbf292ac4e0 13081982 1629727447 2021-08-23 14:04:07 0x9768478aa52ccdc900e3473a5119c8f94016cb48 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004480668081 4.902298948 3322.71 Increase Custody Allowance | |
0x4824ce8d6244cd52ccf38d459568c6999a655635f79c0f6b4309dcee65a984cb 13086648 1629789484 2021-08-24 07:18:04 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007334967043 8.025187441 3172.57 Deposit | |
0xe47d13ce8bb2b9d578baf9f1444f1bae23e939a0366cc54d34384881c5e7e32e 13086654 1629789578 2021-08-24 07:19:38 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002482981913 2.716630511 3172.57 Increase Custody Allowance | |
0x13d713f3abfa61b6b5674201c89aeed0d05fa066ce3bdbcde70e7aa1fc6fc46e 13088764 1629817864 2021-08-24 15:11:04 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007493347 8.198470953 3172.57 Withdraw Funds | |
0x76261f8c316136f6fabd8cd85546d76e66472bf7aa057190573e864b11b40bbb 13089344 1629824899 2021-08-24 17:08:19 0x9b3611abceb1550b7ff2ebd46cf6ae4319130014 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00607408 6.645650928 3172.57 Increase Custody Allowance | |
0x9eafce5f20069497ad09ed6da30df6ab39511840e5965a09cee8f3d4faae6781 13090824 1629844881 2021-08-24 22:41:21 0x3d035f3d088e6140ebc40276abfee5066db849d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01210785697 13.24720632 3172.57 Deposit | |
0xc3ee7d1d3249687e26e9ffefa2f27880cb941dd838a04aea89abdc712220e5ac 13093238 1629876966 2021-08-25 07:36:06 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004670655204 5.110163859 3228.86 Increase Custody Allowance | |
0x50769faf4e332e710529a5b0d84c0ce2f78aa0e3ceaab92e54941a92aae044cc 13100993 1629981208 2021-08-26 12:33:28 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007700728 8.425366505 3093.62 Deposit | |
0xb91ab68259041de7b71421739ba970fe6cc3bdcff17b854ca36d6a879b9c2afa 13101007 1629981328 2021-08-26 12:35:28 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003046874 3.333584843 3093.62 Increase Custody Allowance | |
0x8cf7b0e0354c6d49d32ab72cb42cdec7cb517287c84d56266e660c564581a1ac 13101235 1629984325 2021-08-26 13:25:25 0x7702d9af72e914dd619892e626220696e185da44 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01273932244 13.93809269 3093.62 Deposit | |
0x4f2efd112f2860bda739b365473bd67d567e6d62db35d1905d41b34ff4cf6606 13101256 1629984579 2021-08-26 13:29:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.086775921 94.94153517 3093.62 Fund Loan | |
0xa30116ec4be3a3cfdcd01f527a49e6cc8fcb729648843d37c33f542c0e89c946 13101438 1629986658 2021-08-26 14:04:18 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00459672 5.029271352 3093.62 Set Lockup Period | |
0x2f916bb10dbcc6d2ab67a9024a9bbffe72de796b2b5cba08491547a58c957b7c 13101491 1629987339 2021-08-26 14:15:39 0x7702d9af72e914dd619892e626220696e185da44 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006204551576 6.788399879 3093.62 Increase Custody Allowance | |
0x29480ae411e39754286223a27dc5df9e45716a5ec8958bb79b49b05c280dd0ad 13101555 1629988119 2021-08-26 14:28:39 0x6979039759ea5f6ad1d86261ad3f33d4cec83e8a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.014901392 16.30361299 3093.62 Deposit | |
0x638ddeee1e59879261ae5ac35d0c1a4a6ee43149f10fbc1555d170c23f4d1d87 13101584 1629988528 2021-08-26 14:35:28 0x6979039759ea5f6ad1d86261ad3f33d4cec83e8a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006150978 6.72978503 3093.62 Increase Custody Allowance | |
0x23bd028aca66adc93a6a203e4fe5a3b2d11a367743c600f1bc9213db369fa294 13103172 1630009566 2021-08-26 20:26:06 0x9f82226aae1f6900047da20c30dc836587157e03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.014562724 15.93307633 3093.62 Deposit | |
0x9ef3e0a61bb784f26529d47413cd1ac08bc93240d5382a083c57088ae9104352 13103227 1630010352 2021-08-26 20:39:12 0x9f82226aae1f6900047da20c30dc836587157e03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006758482 7.394455156 3093.62 Increase Custody Allowance | |
0x44b08df543b3c0d727cd682ed0fcdcd7448c5567ea7f2d956b21341f32aed928 13103260 1630010802 2021-08-26 20:46:42 0x3d035f3d088e6140ebc40276abfee5066db849d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007510220624 8.216932384 3093.62 Increase Custody Allowance | |
0xf1bcd89f108d6808d36ea8d96166b5a27b7909d45aa0f8d54cfbe36d30078654 13106579 1630054872 2021-08-27 09:01:12 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008427141263 9.220135256 3275.87 Deposit | |
0x88db6c2e6a1ca90020c2ae05599ae564584fe07f637f1924c58317254839f93b 13106584 1630054946 2021-08-27 09:02:26 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004357668484 4.767725088 3275.87 Increase Custody Allowance | |
0x70a8881627673c0ce19c1833569b1d5bfbc42cc3c18c331302a19513ddc6ab98 13106865 1630058818 2021-08-27 10:06:58 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01316368 14.40238229 3275.87 Deposit | |
0x6d17152694758cb62c480da2440e8c36a62f73fec5be971d729ee82edd7c1f2c 13106873 1630058922 2021-08-27 10:08:42 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0057722 6.31536402 3275.87 Increase Custody Allowance | |
0x8081d71c017e4726dd9b5c55fbd3694165397542e79b359dd88191cb36bbfa85 13106889 1630059118 2021-08-27 10:11:58 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010329374 11.30136809 3275.87 Deposit | |
0xe9b3c4d4d6e3f5f15588ca49f58f1043fd8c01cf3a86ca059afc1350ad41daf7 13106985 1630060497 2021-08-27 10:34:57 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004024714 4.403439587 3275.87 Increase Custody Allowance | |
0xa10faad247059167ffbfc1d4da6eac6b10d770bb595dc933bbfcdfdd40013699 13109371 1630092958 2021-08-27 19:35:58 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.017664504 19.32673383 3275.87 Deposit | |
0x87e5662ca1c0b3bec2a7ede544d55a9491bdc47da5d7d6e4cc245b7c7cd39324 13109376 1630093090 2021-08-27 19:38:10 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008311173484 9.093254909 3275.87 Increase Custody Allowance | |
0x88ba842046268adc25d974663b55e906ca486b384aeac81675924947bdf6b121 13110291 1630105157 2021-08-27 22:59:17 0xb333bee90bffeb69ea3d8d7418ebb485d2a7795a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01069549 11.70193561 3275.87 Deposit | |
0xe1e1ec0b6bbd881857437d57d8dbce7d17ad185239605021b6ca70b1eeebb2b8 13110369 1630106332 2021-08-27 23:18:52 0xb333bee90bffeb69ea3d8d7418ebb485d2a7795a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00797475 8.725173975 3275.87 Increase Custody Allowance | |
0x75c2d33f09a6f920e1d9df7292ca2daf275992bb940736101d1adcfa48db601b 13111705 1630124549 2021-08-28 04:22:29 0xc1c589dc0922399b966f515d4b6436707d679974 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01051762872 11.50733758 3246.78 Deposit | |
0x88b1ec83159071eea0119b108bdb8cca799595f3d573436802ffbfa693a95762 13111715 1630124705 2021-08-28 04:25:05 0xc1c589dc0922399b966f515d4b6436707d679974 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005230405754 5.722586936 3246.78 Increase Custody Allowance | |
0x5fa2fdb22b4411f37c84881ded278b4327fdf7056e4e11970520f417cb58e3ca 13112176 1630130878 2021-08-28 06:07:58 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011176044 12.22770974 3246.78 Deposit | |
0xfa0c7ba7ec58b1445e7c7b47157ab3ccf34248a7aca5ca029985a12fa579d8d2 13112193 1630131048 2021-08-28 06:10:48 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005163784 5.649696074 3246.78 Increase Custody Allowance | |
0xf08ddbf82c7ba42fba509cb5cd8f20433dbcddf0e703542edda3e08ae65a9ad8 13115071 1630169128 2021-08-28 16:45:28 0xf6853c77a2452576eae5af424975a101ffc47308 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009448127153 10.33719592 3246.78 Deposit | |
0x47885d39740778ca3d25e4914f79c9f567a2f1684d6b764a8aea83849197b1b9 13115084 1630169293 2021-08-28 16:48:13 0xf6853c77a2452576eae5af424975a101ffc47308 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004223436811 4.620862214 3246.78 Increase Custody Allowance | |
0x228b3f599b7796b210ffe3c06bb5d61a2d835d491a1e94ad75bcd58f8856eec2 13115782 1630178636 2021-08-28 19:23:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.021157812 23.14876211 3246.78 Claim | |
0x14d5eb8e9f7ef686a4afe2c41c29f79f838d3a92e6a8c397d38a5aef78d318a7 13115782 1630178636 2021-08-28 19:23:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020790432 22.74681165 3246.78 Claim | |
0x845183442c0e410caa13f37ca8bec1d723ce3fb86f4e0ff35b7f480cd1a153f6 13115782 1630178636 2021-08-28 19:23:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.021047104 23.02763649 3246.78 Claim | |
0x6adee13b2a224df3d9fb742e4b9b68699d5c341f2413404c96d2dc5fd006ac8f 13115782 1630178636 2021-08-28 19:23:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.022073792 24.15093583 3246.78 Claim | |
0x36a37a286737704f3e9917696dda0e2e91a3d26c5bec495cb58ffade43d77f1b 13118727 1630217911 2021-08-29 06:18:31 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006568268 7.186342019 3225.3 Deposit | |
0xd74b4d6c9ad6fc206146706c65bdd1b8a7bf728bcca5524943ebfebccd410216 13118736 1630218006 2021-08-29 06:20:06 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00212925 2.329612425 3225.3 Increase Custody Allowance | |
0xced31c43879e191ba0053369d1473f0afec1874d4baa4682179dd6462bad1547 13119747 1630231707 2021-08-29 10:08:27 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0066230538 7.246283163 3225.3 Deposit | |
0xf2536e5942a335294b0b1ac97c721958e7b92d4979837675bc19db5c786c2660 13122579 1630269572 2021-08-29 20:39:32 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003104892 3.397062337 3225.3 Set Liquidity Cap | |
0x211fedaeafe296f81c49e1cb15d503fb9dde35d118dfe346af9ceeaed680a71d 13123940 1630287590 2021-08-30 01:39:50 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007960512 8.709596179 3228.46 Withdraw Funds | |
0x2d07cd6719d29fd8424ff75b89803295fb1b52b1847436ba7777554725559279 13126601 1630323147 2021-08-30 11:32:27 0x9f10c27488119744fd355d4ff6894f23f57a5222 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0065173 7.13057793 3228.46 Deposit | |
0x89de5c9c66e4f3a1240aacbe6e35970f991dd9a7053059b4f7abc9cda153e2c8 13126617 1630323293 2021-08-30 11:34:53 0x9f10c27488119744fd355d4ff6894f23f57a5222 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00196225 2.146897725 3228.46 Increase Custody Allowance | |
0x0f98e836505ee2df9dc03e78b3ffdb4f9571dde94fd1a1c42a5185d9b80dae1f 13127908 1630340086 2021-08-30 16:14:46 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.017469032 19.11286791 3228.46 Deposit | |
0xf3d311e13982583e15bf688ef7cf5a7d2b6f84e53da9e5244c0fcb1e646f1504 13127911 1630340130 2021-08-30 16:15:30 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006010272 6.575838595 3228.46 Increase Custody Allowance | |
0x89d1e750a4e449c9823193c56957f75b64f361b638410852b9a86f62439ccaba 13129284 1630358539 2021-08-30 21:22:19 0x449e0b5564e0d141b3bc3829e74ffa0ea8c08ad5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01486130534 16.25975417 3228.46 Deposit | |
0xf6a688c3c7c50e6614b257a0c6273302a4eddd683e167f98802727365c4ffb4e 13129394 1630360059 2021-08-30 21:47:39 0x61db3d87aefb6e5d03fd0b4cdcfcbe04f516491f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01956684117 21.40808093 3228.46 Deposit | |
0x577314ec0de6769ed07fe5be24370b2d8235af59833de59b00a26d3b84c3bb0a 13129435 1630360682 2021-08-30 21:58:02 0x61db3d87aefb6e5d03fd0b4cdcfcbe04f516491f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00771439364 8.440318082 3228.46 Increase Custody Allowance | |
0x948c968db7b3b76e27730370c4d67036f4cfdbd5523d6da729e20182572246eb 13132874 1630407066 2021-08-31 10:51:06 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002881578 3.15273449 3435.17 Increase Custody Allowance | |
0x48f60da2ef2a3bb2bd847d5cc0924f73bf89511ad5b7954e68e937a8e0986a45 13133553 1630416339 2021-08-31 13:25:39 0x5ae36d7acd459302876b2d1c312d5c2b0507b794 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.013377386 14.63619802 3435.17 Deposit | |
0x8d701c7e16c217efcc7ba3d1c1f0226aa184e6365145be96bd617aad3da28e9c 13133558 1630416396 2021-08-31 13:26:36 0x5ae36d7acd459302876b2d1c312d5c2b0507b794 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006150978 6.72978503 3435.17 Increase Custody Allowance | |
0x8be7affb774e3481383279c339411156d873cdddd54130512215162b70c847a3 13133620 1630417036 2021-08-31 13:37:16 0xd1d255f610c732c9c60583540e49db844736f616 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01101778008 12.05455319 3435.17 Deposit | |
0x759309b4354320ea32ae057358c28cedba3260debc29d0b5bcb217d6ace9180c 13133653 1630417530 2021-08-31 13:45:30 0xd1d255f610c732c9c60583540e49db844736f616 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006984350419 7.641577793 3435.17 Increase Custody Allowance | |
0x43133dbcd2cdbc4013a046c66e12e253956601d4cfb47add322ea3f711e9ed42 13134013 1630422584 2021-08-31 15:09:44 0x205c1b018a55fe97ad2140b900023f845f4635ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.035210276 38.52356297 3435.17 Deposit | |
0x440c4d2f0b1da2161b74381c793a2bf212203d39b97f41698d4ab54197d4a666 13134021 1630422639 2021-08-31 15:10:39 0x205c1b018a55fe97ad2140b900023f845f4635ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.013137274 14.37349148 3435.17 Increase Custody Allowance | |
0x8aef636f8d883aa2ac6e989c129cccfdf998882ee2fd20a82c6bf2b0d1d42040 13135650 1630444008 2021-08-31 21:06:48 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011470262 12.54961365 3435.17 Increase Custody Allowance | |
0x13db71f47a4346e88d8a688be7d06ef09894d822e4d7f3342b51c9084142f526 13136039 1630449166 2021-08-31 22:32:46 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01230251 13.46017619 3435.17 Withdraw Funds | |
0xc90477890f2c3c313303abe1e0fd4715194236a0fe00df796e39cd8975fadd9e 13136205 1630451450 2021-08-31 23:10:50 0x9b7a6e6b894e243e994cfaa32ea07d8a60740981 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02419943 26.47659636 3435.17 Deposit | |
0x0dceeaf3fd924a5eef8ef65824a628809fef06c86074e6b426af6f96f4adfe10 13136231 1630451755 2021-08-31 23:15:55 0x9b7a6e6b894e243e994cfaa32ea07d8a60740981 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006218962 6.804166324 3435.17 Increase Custody Allowance | |
0xcae5c13001bdb5be0e5b297ae00f604a6a5bf878ec890c72ba47ea4520da8c45 13138184 1630477756 2021-09-01 06:29:16 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011600794 12.69242872 3829.18 Deposit | |
0x45effd2df10e4b9f777a57301a237e5f7d8af23c95792951a16c556f02862850 13138190 1630477808 2021-09-01 06:30:08 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003507 3.8370087 3829.18 Increase Custody Allowance | |
0x6bdb97acd8529e6054fb9b521e069909b8aea3e32b513c6a10e595e2a2871003 13139575 1630496209 2021-09-01 11:36:49 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020886558 22.85198311 3829.18 Claim | |
0xdd3e9d3dcd8718ac9b47f663cbe6c1339b83fe32c81b20b295be86646e2ff5ea 13142663 1630537850 2021-09-01 23:10:50 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01558093617 17.04710226 3829.18 Deposit | |
0xb20dada674173b3c364c430cb14e8c15b2a48cb8a077ded8f43fec5d8cf5f223 13144387 1630560148 2021-09-02 05:22:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002606576 2.851854802 3787.7 Set Liquidity Cap | |
0x25a225d0cca7bf1164cc248ff090e965793c4d7ae1be92be1702e519caeea8d9 13146114 1630583539 2021-09-02 11:52:19 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007495156 8.20045018 3787.7 Withdraw Funds | |
0x260d4f974d4862f8b268aa969f6296a04350f1644f64a7bca6ff1e4c8e1658f3 13146551 1630589667 2021-09-02 13:34:27 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011437846 12.51414731 3787.7 Deposit | |
0x28dc55860a3baceeae334bb7ec25f443dbccc9020138380e3ff06b7d27044f44 13146577 1630589904 2021-09-02 13:38:24 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00329825 3.608615325 3787.7 Increase Custody Allowance | |
0xdf0f1b9540e19fde34261e71ee9e33e240d0c29dbe6bf6f853d3fc5ac3e638db 13151004 1630649176 2021-09-03 06:06:16 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.098432388 107.6948757 3939.79 Fund Loan | |
0xc98dc6373767ac875ff9be76876b144903ed80f31e152b9436f747828c936988 13151203 1630651376 2021-09-03 06:42:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.119154996 130.3674811 3939.79 Fund Loan | |
0x15d39ad7e2ac80afdcff0f3f8353fddbdc9f4308d7c5b10429796206f345825a 13151359 1630653502 2021-09-03 07:18:22 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.017441876 19.08315653 3939.79 Deposit | |
0xddd73615bcf19b59e7f7e09a55f36ac962991511c93d1819bafefe5c5cd05b6e 13151363 1630653559 2021-09-03 07:19:19 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00751905 8.226592605 3939.79 Increase Custody Allowance | |
0xec77cc03b8bb0ce34511aacf3f394dcb93711ee6753d92420c64c9607ce8b25a 13151513 1630655621 2021-09-03 07:53:41 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007186005284 7.862208381 3939.79 Increase Custody Allowance | |
0x650c0388d7648c067e0a39de37946ef45deed943684aa7491a46a89c41c33431 13151924 1630661250 2021-09-03 09:27:30 0xdf19da854b4f07717a1de126806f35ecb6bfbc6c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02026573752 22.17274342 3939.79 Deposit | |
0xf212da266607a74f41f9bfcdbc7d8ef49c9e4b61004bea033209d0870b5d0b16 13152501 1630668893 2021-09-03 11:34:53 0xdf19da854b4f07717a1de126806f35ecb6bfbc6c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01705815997 18.66333282 3939.79 Increase Custody Allowance | |
0x55cfa67f4acd711f87d1dde2a32f39f8d6427b5680ab90fb2900ca193b04ce4c 13171726 1630925522 2021-09-06 10:52:02 0xd7f87ccc655f4d771bf518345036a30fd5388366 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008499916 9.299758096 3928.4 Withdraw Funds | |
0x2f846a1fae8973e9bf3dcc55a5e17b1060e4751ec90f9ee22a11f7a8c65e1666 13177112 1630997263 2021-09-07 06:47:43 0x9f10c27488119744fd355d4ff6894f23f57a5222 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009285188 10.15892419 3433.48 Deposit | |
0x330fcfac35425b1efbac58a516c19371f58d0b7fa5979a94bf92c04567a3abe9 13177125 1630997427 2021-09-07 06:50:27 0x9f10c27488119744fd355d4ff6894f23f57a5222 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003505992 3.835905847 3433.48 Increase Custody Allowance | |
0x942bd58e801aba51e2b6dbedd700749932046c97cef4d885a16f79e46759e8f9 13178254 1631012466 2021-09-07 11:01:06 0xd1271a1a2da13a607e29ec0b75639c9612c5f74d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011682766 12.78211428 3433.48 Deposit | |
0xa7ea21e1bc92cfc7fd7ec13c2c388fa16f2895575788d58ae5b97ab2420f395a 13178290 1631012977 2021-09-07 11:09:37 0xd1271a1a2da13a607e29ec0b75639c9612c5f74d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00531566 5.815863606 3433.48 Increase Custody Allowance | |
0x879ba470728c56fa233a58537a2e35b39832b5439b58c3b21c82e9c5fc80ddd8 13179083 1631023868 2021-09-07 14:11:08 0xa7c394611a3602468ee76533693fd5405b9938d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0168443782 18.42943418 3433.48 Withdraw Funds | |
0x701010171d0a38c6a8c6b01f726d63394e89118f76bf18a4b97c46442be0ee03 13180249 1631039166 2021-09-07 18:26:06 0x9dca7ce5ae2eb59e3896f0baf6b6424324a12022 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01577630146 17.26085143 3433.48 Increase Custody Allowance | |
0x7d7469231d4a19b24eb2c5bee72a6b5b884b4a96430f8b1ec458393503da2dd1 13187356 1631134034 2021-09-08 20:47:14 0xdbb23bc0a753eed82d29618d313bb4a13e952be0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02907908071 31.81542221 3499.69 Deposit | |
0x6d9c812e1cc216482822e452e9070d786ae6bddc2ab35d40dd7d0bd1cae62b38 13196322 1631254245 2021-09-10 06:10:45 0x5853ed4f26a3fcea565b3fbc698bb19cdf6deb85 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.018794742 20.56332722 3209.41 Deposit | |
0x64de72d2b04873ecfea7dac3d92e6e3534acd561e8ec04a840caa9e9b8166ee0 13196907 1631262081 2021-09-10 08:21:21 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.10361304 113.3630271 3209.41 Fund Loan | |
0xc534d71745b693f126c0f06535375839b577edc01aaef756425d36e1d61de87c 13196957 1631262762 2021-09-10 08:32:42 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02310048 25.27423517 3209.41 Claim | |
0x0c971ad1db5f1aeb8a1f09c915c0120d4f5b31738407f28fdb539c9aecc62bb9 13196960 1631262770 2021-09-10 08:32:50 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.022843808 24.99341033 3209.41 Claim | |
0x0e6746f1eb1ad5c4cec98f646ff21cdf83f128dd817d4fd3da32fcb3b4d406a0 13196960 1631262770 2021-09-10 08:32:50 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.022330464 24.43176066 3209.41 Claim | |
0xb6504b6282e19f505b5fac1593d5fcc2a0f38031c636edb7c0310ff5a3a34e52 13196962 1631262837 2021-09-10 08:33:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02305659 25.22621512 3209.41 Claim | |
0xa4123326cb15caf13b643198df5d301238dc8594387ab677900060abe449e9c6 13196974 1631262988 2021-09-10 08:36:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020840628 22.80173109 3209.41 Claim | |
0x9d82d2e82ef87b4451ea5621126347c9787f0fa7ae5c93f80e943cb203ffa733 13196974 1631262988 2021-09-10 08:36:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.021094782 23.07980099 3209.41 Claim | |
0x839a089b5a752a07ba2c2d55db045e24f2840896c98e7c42a8437bda6a3f0c83 13203487 1631350525 2021-09-11 08:55:25 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006935816112 7.588476408 3266.43 Withdraw Funds | |
0x5944bdd64e84596ab14ce714610199c1b4337f598f8c78061a03d64e09f80c94 13213860 1631488249 2021-09-12 23:10:49 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006395964807 6.997825096 3405.32 Withdraw Funds | |
0x00e6e6da714932bd0861075692678f6be6025b70e8c7305c3bf93d5ff0fed8d6 13214201 1631492830 2021-09-13 00:27:10 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008128032 8.892879811 3285.4 Deposit | |
0x74319c9458c9787a0d062ce85ad3c2e9fdd1fcb56291eb33e1ea5cc2ab0a504d 13214240 1631493336 2021-09-13 00:35:36 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004024714 4.403439587 3285.4 Increase Custody Allowance | |
0x5e0e4fa64016d26e279e109751a3551b19d67f8785011020b5f7e1e8199fef89 13219315 1631561993 2021-09-13 19:39:53 0x61fab999bead5c1d34e5884bd0c74c3623e65ef8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008846587169 9.679051022 3285.4 Deposit | |
0x03b9f0387d84c030236aac448dccd48e7c86f44039492f439d6fda4212cb4cf5 13219323 1631562100 2021-09-13 19:41:40 0x61fab999bead5c1d34e5884bd0c74c3623e65ef8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004330244963 4.737721014 3285.4 Increase Custody Allowance | |
0x80b1863a79cc5c06404ee97615a29f733e0370df72fb817a6c8a76fe0ae70128 13224590 1631632388 2021-09-14 15:13:08 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01156934876 12.65802447 3436.05 Deposit | |
0x26d23f3072575e5b0e3a63cc7d7298ae88ac8a2da36afecdf714447ea4dfc2a6 13224746 1631634535 2021-09-14 15:48:55 0x7e8c520cb0b1cedcc009113cb339f7f8247a3630 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01343131945 14.69520662 3436.05 Error(0) Out of gas Deposit | |
0x0af4f4e19c116bc41ce4e3900c339c6c80facd80430e86ce82870159092ca5ee 13227255 1631667692 2021-09-15 01:01:32 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004586588 5.018185931 3615.22 Withdraw Funds | |
0x7aa19a63fee4115b651804c8dff9ac42b53f7fd1d783cf7e647179f7ac2f2cf9 13228878 1631690182 2021-09-15 07:16:22 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004459519272 4.879160035 3615.22 Increase Custody Allowance | |
0xb5ce4bfb3e2de73c9d2f41943b0baabc95504d814503c50c13331193183d8d01 13231174 1631720298 2021-09-15 15:38:18 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.013724316 15.01577414 3615.22 Claim | |
0x5f82ef0f4638156e5528286bd7ba6491f0b12dde680f719ccc791b2be52554e3 13231692 1631727329 2021-09-15 17:35:29 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010736736 11.74706286 3615.22 Withdraw Funds | |
0x69466441f05a25514cebb9c8c7da8a30a7cf1e1a8bb816137ad8f85e66a353ea 13232438 1631737224 2021-09-15 20:20:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012961854 14.18156446 3615.22 Claim | |
0x7016ccdf239bf5a63047376f8d4dddefd1334bf079de8d02fd448443b58958e4 13232438 1631737224 2021-09-15 20:20:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.013216008 14.45963435 3615.22 Claim | |
0xdd82646cb77c5cfe12e2d30eadad65ed0ff861bfc3f867cd4410445f55348516 13233360 1631749795 2021-09-15 23:49:55 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007381506 8.076105715 3615.22 Withdraw Funds | |
0x1cc17116719a70394d8a1657cb224d5b18bafb073959608136d8327be6193efa 13234250 1631761801 2021-09-16 03:10:01 0xdbb23bc0a753eed82d29618d313bb4a13e952be0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004341684177 4.750236658 3569.26 Increase Custody Allowance | |
0x50bb36fc96c191abb3378fd8e2b83be4d99e0fa85f8d7515d026600f29f0591a 13239643 1631833668 2021-09-16 23:07:48 0xf097c7f3b2203692427e4545b79613bd3cff66ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012192912 13.34026502 3569.26 Deposit | |
0x72d4b1787cbf37dfe25a0bf6923d1c3938a15bbab5e419ea33f1e16f23cb28c4 13239743 1631834860 2021-09-16 23:27:40 0xf097c7f3b2203692427e4545b79613bd3cff66ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004024714 4.403439587 3569.26 Increase Custody Allowance | |
0x17c2648f9c3a63be2f44ef24d35aadf9a4a54cd91cbd174661576573c81ac6a5 13242317 1631869664 2021-09-17 09:07:44 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005908716066 6.464726248 3398.82 Withdraw Funds | |
0x10f3c3762796f84100055a488f52bc5f480f36308f7d2f83eca25856d802cf04 13248659 1631954875 2021-09-18 08:47:55 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003980256095 4.354798193 3435.76 Withdraw Funds | |
0xed2bfa6dfc6ae846f18e9add3cd98c75ee0ba3036732febd7aa693003da1a677 13251427 1631991332 2021-09-18 18:55:32 0xa7c394611a3602468ee76533693fd5405b9938d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004664943907 5.103915129 3435.76 Withdraw Funds | |
0x7c775b40444164e9f9d16bd2ec605c593bffe8c0d9fd2a53e8dce3025710d4ba 13257362 1632070646 2021-09-19 16:57:26 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008022734408 8.777673715 3328.85 Deposit | |
0xd965578fffffdf169652e86b1cfd20230c7b6ef7d738f182676ab7884ba34425 13257441 1632071597 2021-09-19 17:13:17 0xcef64d127c94544e312be9dcacaf83fe42154072 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008483592 9.281898007 3328.85 Error(0) Out of gas Deposit | |
0x911e8a28b082ae3dca9c0f1d8287247a146e571556c926b4c8c2ebc86672b4cf 13257456 1632071707 2021-09-19 17:15:07 0xcef64d127c94544e312be9dcacaf83fe42154072 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006746386 7.381220923 3328.85 Deposit | |
0x0b56d5c3e549410ae24d73f7bccd97a205c6b1dd8b7901ec3411b57d9c7ef781 13257488 1632072089 2021-09-19 17:21:29 0xcef64d127c94544e312be9dcacaf83fe42154072 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002961114 3.239754827 3328.85 Increase Custody Allowance | |
0x56b0f201b4c1bf73147ca825cf236fdce7db518b4dff64ee4577a2fef9e6ef08 13265830 1632183305 2021-09-21 00:15:05 0x68c196c0933e809e24d7b7265a68ed6eda24d086 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0237756238 26.01290999 2760.2 Deposit | |
0x83b5b095b184a7ab0789f21f71d14f3c23ab7594c19ad9901bb725063241e54e 13265839 1632183409 2021-09-21 00:16:49 0x68c196c0933e809e24d7b7265a68ed6eda24d086 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01154339949 12.62963338 2760.2 Increase Custody Allowance | |
0xd58b15a76ee6caf6013f8ae6fa0dab13d8207e5b5f2de7a87c3d60046c842a34 13272625 1632273953 2021-09-22 01:25:53 0x553bff333348548cfabf3b4fcb49ef5f2c28c10a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01255299947 13.73423672 3078.88 Deposit | |
0x3f18771151db0841b52b0f070d9556bcc2198ece8bd2f2e869b7b036fd838ef3 13274329 1632296897 2021-09-22 07:48:17 0xab0f88d49a4c80fbada18715c7233373078e6cd9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009050860918 9.902546931 3078.88 Deposit | |
0xf9a786ad7d1aec9e65281417e774e16764162e4e6fdb10d5bb3b6a174f5e1c2e 13274359 1632297274 2021-09-22 07:54:34 0xab0f88d49a4c80fbada18715c7233373078e6cd9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004778011231 5.227622088 3078.88 Increase Custody Allowance | |
0xdf49b3802252b39c571c69bfae39c5a13fb44f8e00c579880b3de1c5a286666e 13275007 1632305957 2021-09-22 10:19:17 0x7e5f578d0e4c43ae5c06a19bfb43a539a8908c87 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006216336302 6.801293548 3078.88 Deposit | |
0xceafe3da9394245ea4e0f259c5ac29959e8683c564936d7e279a8e777cc807cc 13275137 1632307824 2021-09-22 10:50:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001630076442 1.783466635 3078.88 Set Liquidity Cap | |
0x956635716ddffae13fd612bba75f65b1c9035161fc1bb3fd65247880b04f509b 13275151 1632307992 2021-09-22 10:53:12 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01061228594 11.61090205 3078.88 Claim | |
0xf64c681b7324549576eb5d663fa5034da281d7a99a7bd9be21580649426caa64 13275152 1632308025 2021-09-22 10:53:45 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01181319804 12.92481997 3078.88 Claim | |
0x23bd372a7fc7909d305995e2273287144f8969dac759c65d9efdf8cb408ef2ee 13275262 1632309575 2021-09-22 11:19:35 0x98b2180e96cb483162e2aab070e38a0b03c34c7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007217639421 7.89681929 3078.88 Deposit | |
0x9af982242de8754645d32fa1384055682044d43a2d50e66dd3c7c2d86b3de8cf 13275659 1632314974 2021-09-22 12:49:34 0x8c12674ddd8444cb53259b9b75e6363352a7c6bd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007560547704 8.271995243 3078.88 Deposit | |
0x0c80f8a323dbd2f6cc6f3db5017a0269074b6e38bed471d6712dcf3ef956b958 13275694 1632315309 2021-09-22 12:55:09 0x8c12674ddd8444cb53259b9b75e6363352a7c6bd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002430214867 2.658898086 3078.88 Increase Custody Allowance | |
0xbaee336cceb58346251de3bbb2243e4c4a184611440bb141b756b1df19e942a8 13277883 1632344527 2021-09-22 21:02:07 0x60d4a56a3acbfe48375ce7984cdf68dabf176f71 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008537392631 9.340761278 3078.88 Deposit | |
0xbd77944352e35c19e2a24a6c527c45581175e7deb3edcba282403c356fe4da4f 13277892 1632344654 2021-09-22 21:04:14 0x60d4a56a3acbfe48375ce7984cdf68dabf176f71 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00419884217 4.593953218 3078.88 Error(0) Reverted Deposit | |
0x275e03ea11ec612367974f529789f52473bbc05f9f7bffaed2867d7bbb6943c3 13277954 1632345581 2021-09-22 21:19:41 0x60d4a56a3acbfe48375ce7984cdf68dabf176f71 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005014327649 5.486175881 3078.88 Increase Custody Allowance | |
0x5a595448bf5f85a18d73549bbc3318d84c83dcdf84906485219106977409e419 13279127 1632361431 2021-09-23 01:43:51 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006277962224 6.868718469 3154.62 Withdraw Funds | |
0x8cc1f19c5bc22790671d0fe96ec5c1c8254240d92ebca7ea1ef8a03d5d025eb2 13280414 1632379062 2021-09-23 06:37:42 0x3d035f3d088e6140ebc40276abfee5066db849d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004853263852 5.309955981 3154.62 Deposit | |
0x6fc067ee276d67e17ade04a16f41e67d863b6c3be1de31e74755e56df1a93d17 13280422 1632379184 2021-09-23 06:39:44 0x3d035f3d088e6140ebc40276abfee5066db849d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00201911858 2.209117639 3154.62 Increase Custody Allowance | |
0xe3607220b91f3ba379557a319e14ebb3de49c191c16d31f79be9deddc302d52f 13284037 1632427651 2021-09-23 20:07:31 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009625454071 10.5312093 3154.62 Withdraw Funds | |
0xf19f3872827a5933d6416cc366f32f80907843a34bfbc2720cf218bb11139a52 13287274 1632470245 2021-09-24 07:57:25 0x70978f453c9ac86817bb4ae2fe3fb985f3aa5c0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00740457 8.101340037 2930.86 Deposit | |
0xa50f55b46fc4257e31e1629bbdbedc889c8715bd9a32971193d5877ef3124724 13287299 1632470608 2021-09-24 08:03:28 0x70978f453c9ac86817bb4ae2fe3fb985f3aa5c0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0053165 5.81678265 2930.86 Increase Custody Allowance | |
0x3798ce96f24c44f1ae8003e046922cd91924504df06ee8c93d8863486b10541c 13291830 1632531599 2021-09-25 00:59:59 0x7d96a6f41fd31c7624f7069415be58b5e3576d34 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010530176 11.52106556 2925.34 Deposit | |
0x75d142ea7cde0e1ceaea4ce4affb819afa5840a735da6abe8bc114e7acdc66f9 13291833 1632531663 2021-09-25 01:01:03 0x7d96a6f41fd31c7624f7069415be58b5e3576d34 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004860032 5.317361011 2925.34 Increase Custody Allowance | |
0x6c564a14e0f470deba93e06d9c84c8e401266794b37e5f6a15b7f15801899293 13293199 1632549940 2021-09-25 06:05:40 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00291404983 3.188261919 2925.34 Increase Custody Allowance | |
0x584aa268c408556f9d7b7b22745089a0163da3972edfab75ccc9434cd1531f86 13293867 1632558465 2021-09-25 08:27:45 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003175191559 3.473977084 2925.34 Withdraw Funds | |
0xcb7bbd91dd92147348e7a0940a43cdbd94b000b293782c43b38126bc17f93d45 13294374 1632564831 2021-09-25 10:13:51 0x387544f796a05528c9d05403836262dfa84a2e41 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005720276824 6.258554874 2925.34 Deposit | |
0x2410756365cbf65f002939ca46978ffe5cd368549ebb698961d97abd90ed02fb 13294553 1632567295 2021-09-25 10:54:55 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003263784621 3.570906754 2925.34 Deposit | |
0xf897a115cbd068b5b05d0c3473554135fd5598b758d0f178cc677290ac48bf36 13294562 1632567464 2021-09-25 10:57:44 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001493159552 1.633665865 2925.34 Increase Custody Allowance | |
0x615578a6761f361e7dd1b6cef1ed22b843cd6a0bfb616400ad0b57b3cdbe7ad1 13295430 1632579180 2021-09-25 14:13:00 0x22129cf6f9e71421f14d3e7898d16aca4a7bccbd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007969317114 8.719229855 2925.34 Deposit | |
0xb23eee75d845807018bebf1eca032309ec5c47bf1593c8212d0ef4609ced305a 13296299 1632590675 2021-09-25 17:24:35 0x22129cf6f9e71421f14d3e7898d16aca4a7bccbd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003519421307 3.850598852 2925.34 Increase Custody Allowance | |
0x932d8aed205d8e971d50f286d34979f456d3fde6f80c7427d12ec49f5432d1fd 13297304 1632603948 2021-09-25 21:05:48 0xccded884158e192492e1d2e522cd573c4a9903c9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006171725037 6.752484362 2925.34 Deposit | |
0x8227178a32b8ff83e76e8c2b05c50b023faa14c45e411f7c40e2bcb1f5dafaab 13297323 1632604211 2021-09-25 21:10:11 0xccded884158e192492e1d2e522cd573c4a9903c9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002764036367 3.024132189 2925.34 Increase Custody Allowance | |
0x959429bbbf7a90da10b15430759869626a046b3eaebfc71c27efffd370663a71 13300403 1632645635 2021-09-26 08:40:35 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008864793235 9.698970279 3064.21 Withdraw Funds | |
0x265c970a064bde4beb1cc8b9a31a067a6da05c61e8ae3237e00ab2a26448a32d 13303770 1632690859 2021-09-26 21:14:19 0x72866e0fb4a66bc5e15e15e763b447b77ac30d59 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01049693222 11.48469355 3064.21 Deposit | |
0xd65a15de85354e664b4a5758027a75d6c9e554f9e740e7b8572f6c2d6a358ceb 13304142 1632695739 2021-09-26 22:35:39 0x25b21ea6479ffe2269d53b49cd9c401ac825edf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008936506911 9.777432211 3064.21 Deposit | |
0x08c76d0f1d207f13872484f79f610a3fd55e363c2f5aaded58ff47fcac783183 13307624 1632743537 2021-09-27 11:52:17 0x72866e0fb4a66bc5e15e15e763b447b77ac30d59 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004831129061 5.285738306 2927.73 Increase Custody Allowance | |
0x8eb025322079eb4201ec8380175cc648e087bd9b60faa5da9b7c68a295d8a14e 13308248 1632752082 2021-09-27 14:14:42 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00615992 6.739568472 2927.73 Withdraw Funds | |
0xe554ee7918c003337b17598874c962c979b44ad0ca98df134c4c2adf970a2e12 13312791 1632811845 2021-09-28 06:50:45 0xbb17f3baa12194c31f9bfbc245a669cf445bb721 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00758309983 8.296669524 2807.44 Withdraw Funds | |
0x6caa801a52879e37a41ad4c56ae256fd6b3fa0898bf8af5b451c9fed7e318b4e 13314884 1632840864 2021-09-28 14:54:24 0x75301b375de52686750b0de1766838719e08db75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01501413479 16.42696487 2807.44 Deposit | |
0xf6af39c61274152ff0acd01976f199b8ffb3a5c46391e1ee826471441b1350b7 13314922 1632841554 2021-09-28 15:05:54 0x75301b375de52686750b0de1766838719e08db75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009514260066 10.40955194 2807.44 Increase Custody Allowance | |
0x74d86180beeef4deba62af8f5370dce7d8ca5e300b052aa6c167c4afafa7681d 13317077 1632870037 2021-09-28 23:00:37 0xbb17f3baa12194c31f9bfbc245a669cf445bb721 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00245806787 2.689372057 2807.44 Intend To Withdraw | |
0xb4e27247ef1922414420d46f2ba070a2c109a11a02526165fa497aea086ce25b 13317296 1632872927 2021-09-28 23:48:47 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00860966829 9.419838076 2807.44 Withdraw Funds | |
0xd126c621b53dbaec17b6257e5402ccc3947445f105423c4dfcf7f2a59be6cba4 13320363 1632914641 2021-09-29 11:24:01 0x5a59938832e5a6cf505b1934cc7f32e29ee326d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008724028828 9.544959941 2850.87 Deposit | |
0x3813e363030b927cd833a743e1aa625a42e2293964022d576516b0a597abb768 13320745 1632919532 2021-09-29 12:45:32 0x5a59938832e5a6cf505b1934cc7f32e29ee326d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003057619703 3.345341717 2850.87 Increase Custody Allowance | |
0xe30bfbbe684313e7e39477170228943c3f1227cf34c8bf628e6b507e00f2dd48 13321046 1632923800 2021-09-29 13:56:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01685658889 18.44279391 2850.87 Claim | |
0xd769b45acb61849ad1ddb462b8bc5c4ce872becdef086abc47fa36f45cbda115 13321050 1632923842 2021-09-29 13:57:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01535288881 16.79759565 2850.87 Claim | |
0x3dabedad707e8d9bba687287d4732645d9ed032b82913b191a43f7dc7b02b5f7 13321050 1632923842 2021-09-29 13:57:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01638586252 17.92777218 2850.87 Claim | |
0x3c4af08c3fb06ea37ed1c6a9f4d9a206efb61567a662eecf1ab8cee461179ff5 13321050 1632923842 2021-09-29 13:57:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01638586252 17.92777218 2850.87 Claim | |
0x229ebeed0679f5659c5c22b084bcdddfe4e570ab1ede9dfbbe73d61774fdcd2e 13321130 1632924851 2021-09-29 14:14:11 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.09699727906 106.124723 2850.87 Fund Loan | |
0x72602a1b971439241915b7c1d260c1de3bd7723ee99e5f837b4140ac1d0d2a76 13321628 1632931410 2021-09-29 16:03:30 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01951959854 21.35639277 2850.87 Deposit | |
0xc8386413991d0fcfb3e08af15ab85cb1e0e7811c965852134ef50dce06190bb7 13325804 1632987434 2021-09-30 07:37:14 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006481512631 7.09142297 3000.83 Withdraw Funds | |
0xfa4758259fc93d4caa226cc80773b4afbb74c2399709119b2ffc9f45fb29b89b 13325815 1632987506 2021-09-30 07:38:26 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004457830802 4.87731268 3000.83 Withdraw Funds | |
0xd88c8fe7ec6653aa444d9ea9d39d936a9bfc5a037f3fd13799f6750ba234b4b9 13326922 1633002643 2021-09-30 11:50:43 0xc32d7f8b71b6f79c9c2d0df200fc76fd6028d215 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006500206939 7.111876412 3000.83 Withdraw Funds | |
0xf005cdeaa0b3e7c3642cc4d62cda74877b7570be723388fda38bcc34c6a78628 13327279 1633007797 2021-09-30 13:16:37 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008042922325 8.799761316 3000.83 Increase Custody Allowance | |
0x81db82dc18502683b5cc400eab9dfab642aff7c9bbb0fdd2249793bcb031c553 13329856 1633042951 2021-09-30 23:02:31 0x4baad650a6e58c4d3be40358657bac526927b53d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01701785119 18.61923099 3000.83 Deposit | |
0x062cc1f3e6758e9f2cd828b4c01ef6f4d83400a446b541f73596f6093a196d89 13329877 1633043137 2021-09-30 23:05:37 0x4baad650a6e58c4d3be40358657bac526927b53d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0050553917 5.531104059 3000.83 Increase Custody Allowance | |
0x433131f5ac402cb851e114e0fe5428917388be5e2471db766270ac39ff401fae 13332305 1633076098 2021-10-01 08:14:58 0x8fe7b143b2c67739e9c933da0a48142b14c4415d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.013716054 15.00673468 3310.63 Deposit | |
0x6f59c5642230a39b33a4f2014322eeb548303c0aed175130223b645a9ba8263b 13332342 1633076527 2021-10-01 08:22:07 0x8fe7b143b2c67739e9c933da0a48142b14c4415d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004784094 5.234277245 3310.63 Increase Custody Allowance | |
0x79282611b2d28ade39e52cd661ba1ab14a3a2b52c460010ea820055981a56016 13334501 1633104917 2021-10-01 16:15:17 0xcb218f2638185d13758592f87a0a9732a83f29f5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006290587164 6.882531416 3310.63 Intend To Withdraw | |
0x5818d7683dd246927411a7371997c9522addca7475c388e22cfa1cea8473fc15 13336198 1633127948 2021-10-01 22:39:08 0x9b7a6e6b894e243e994cfaa32ea07d8a60740981 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01274866711 13.94831668 3310.63 Withdraw Funds | |
0xf4d1a2f300c30262918d30dfc77c9cba90bb01ee512fa278e34e1dd0eef951f6 13338327 1633157064 2021-10-02 06:44:24 0x1f87f31f087362b263aa209f475ab59a50cdf45b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01125275755 12.31164204 3389.48 Deposit | |
0x4ffc7a6b36325a3a0e80a238490cec6ad34c8ccb92aa4ad3129f12d23360cd27 13338336 1633157252 2021-10-02 06:47:32 0x1f87f31f087362b263aa209f475ab59a50cdf45b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005351612357 5.85519908 3389.48 Increase Custody Allowance | |
0x5b4dc20e982a9fb0b67ee7115822cf5d8b2617a35d5e5633376df167cbd9cbb4 13339319 1633170490 2021-10-02 10:28:10 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004548864 4.976912102 3389.48 Withdraw Funds | |
0xe68cffe481b8df186422687c355d187ae53f0bf7ccc74d8e5c40d4e3b9291712 13341107 1633194701 2021-10-02 17:11:41 0xa7c394611a3602468ee76533693fd5405b9938d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008562375419 9.368094946 3389.48 Withdraw Funds | |
0x22d665931fee0a4c7ca1bb419c55a90461f7d603427b593d912e9e48b7364d0c 13349224 1633304194 2021-10-03 23:36:34 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009652038 10.56029478 3420.14 Deposit | |
0xdcb1a6b1a49c20db643280069c12fab0d52e9b06954b0f99a2686ddd9bea6cbb 13349230 1633304290 2021-10-03 23:38:10 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003720374 4.070461193 3420.14 Increase Custody Allowance | |
0xdb2492489f9ca1df129cbaaaa9a455ea09346c132a20ec8a12b996583aea71fb 13355271 1633386189 2021-10-04 22:23:09 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010643996 11.64559602 3384.5 Deposit | |
0x010dc017f4e235277a637847a05e8271583deb5884af6285ad423687b92ec9ab 13355276 1633386252 2021-10-04 22:24:12 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003588436 3.926107828 3384.5 Increase Custody Allowance | |
0xe2aac774a8f6e08c0c214cc71ae56c069aa6800f9c54125b157c542e3142f622 13356306 1633400178 2021-10-05 02:16:18 0x73579341011738a4ad9cfce427954f3dc5d49dbe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012668194 13.86027106 3516.09 Deposit | |
0xe1c92b32f4768e1986eab47923b559ed8a63ab551d6f47c714fec78795acdc7b 13356326 1633400489 2021-10-05 02:21:29 0x73579341011738a4ad9cfce427954f3dc5d49dbe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008731984211 9.553663925 3516.09 Increase Custody Allowance | |
0x7d1c209d0b888abf9131a374498848f07eb4b6c02d9f2a7aebf20942eb461d95 13357804 1633420086 2021-10-05 07:48:06 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002897692158 3.17036499 3516.09 Intend To Withdraw | |
0xcb2f6954980ead7da9ceb352471c3d2b822efa6aa60d7ec4af35342d64bfbe68 13357818 1633420268 2021-10-05 07:51:08 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006570366252 7.188637717 3516.09 Withdraw Funds | |
0x2ceef8a066227ed4b15fc171214dea46191e2e3a1da36c671d502f3823fb76d7 13361382 1633468351 2021-10-05 21:12:31 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01709303575 18.70149042 3516.09 Deposit | |
0xc5279fe8a5459db7437a4ec16b0ab8c8ef5ac822e40677cebe4cde6e343ced8a 13361389 1633468453 2021-10-05 21:14:13 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006036924927 6.604999563 3516.09 Increase Custody Allowance | |
0x3f52f71bf16492414eb7d8b768e7139548b869cdbd4916d9de0a1a00dee35c3d 13364302 1633507966 2021-10-06 08:12:46 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01903599156 20.82727837 3576.08 Deposit | |
0xdd69b4b1a47225ea4afd8fff2d395be8cd4a1ad7bfd38afdac24638edfc8f583 13364327 1633508443 2021-10-06 08:20:43 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006143932591 6.722076648 3576.08 Increase Custody Allowance | |
0xfba7c9d891d3b50942f5f9c06b91b17e5093a1adbd6ef9b57c835b7b2e5853fe 13365749 1633527857 2021-10-06 13:44:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03323486028 36.36226063 3576.08 Claim | |
0x3f63fb23315d74abcd4b22f5b1184db11e378dc3a8cff4c2a4a3861e15499c64 13365749 1633527857 2021-10-06 13:44:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03144822955 34.40750795 3576.08 Claim | |
0x2b281e08045d82fa4d7f12898689d64d837e2ef1b54e11d985c908c41f683d97 13369856 1633583224 2021-10-07 05:07:04 0xd1efed7d784634fc9a3237999487fc6315e0321a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01823753511 19.95368717 3588.2 Deposit | |
0xcfda94427fc69f38592f3763b57549092ee650f8c00da46e3e1fd95140e07de6 13370012 1633585418 2021-10-07 05:43:38 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02205756456 24.13318139 3588.2 Withdraw Funds | |
0xbd5ed33ba8a3b53f36ce4ca33027a85398bce992d966706733782839fbb8ad7f 13370076 1633586283 2021-10-07 05:58:03 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01138061585 12.4515318 3588.2 Withdraw Funds | |
0x4d4ab1a78b3559f344ce2618cfe82d0c50c69181465d9cb6a8a2777f2fcb600d 13371817 1633609545 2021-10-07 12:25:45 0xe3b206a0ed144cb558ade4699f3aa322b8d5d08e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01581042811 17.29818939 3588.2 Deposit | |
0xe253eced56efd113c0cbf74d7fd3a19e52858c156cb6ce805cf07981d398fb5f 13371832 1633609748 2021-10-07 12:29:08 0xe3b206a0ed144cb558ade4699f3aa322b8d5d08e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007522001703 8.229822063 3588.2 Increase Custody Allowance | |
0x3377724ee5b90174ac1d0ba3467b18b9469332b3b4ff16643040ad05aa7978eb 13372221 1633615517 2021-10-07 14:05:17 0xa7c394611a3602468ee76533693fd5405b9938d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006813362994 7.454500452 3588.2 Intend To Withdraw | |
0x32ad0efe789ddf23cd19b9473d08bbe843865725906fe8e0abef9bd7c4f3e01f 13375145 1633654917 2021-10-08 01:01:57 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01147151441 12.55098392 3562.84 Withdraw Funds | |
0x8dc7a09bfac20739bcd722ff54b85b8f147f9d3a6dd1e5337a14c124b2ca38a9 13375151 1633654976 2021-10-08 01:02:56 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004452207126 4.871159816 3562.84 Withdraw Funds | |
0x47035cb7da799cb3eb9cdacc5520eec3c27eb1af4e3af046bad36c87e4604be7 13375598 1633660986 2021-10-08 02:43:06 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.018372739 20.10161374 3562.84 Deposit | |
0xac24ac0a9b480454087e681f12f56f12ac6bc08750d638fb83993ebdd4acad51 13376927 1633679175 2021-10-08 07:46:15 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02973733672 32.53562011 3562.84 Claim | |
0x185e4d9771a4619fca865b27347ea3e5f68fa6af5473063a4bc2750102f97f7d 13376927 1633679175 2021-10-08 07:46:15 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02973733672 32.53562011 3562.84 Claim | |
0x0b8b6cfac8155d73f87727cdc48b78184aa56e5690275393d8b6c7e39889d32f 13376930 1633679204 2021-10-08 07:46:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02791231262 30.53886123 3562.84 Claim | |
0x8da8c2847d2c855a2ad084b92acf8883ae22e98482932ed6fefaac65cd684330 13377088 1633681212 2021-10-08 08:20:12 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01429525302 15.64043633 3562.84 Withdraw Funds | |
0xda146ee50a0a4f2482ce59cce772ed3065acb2f6680cc92385c9bfc0a1a05f1e 13377234 1633683208 2021-10-08 08:53:28 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008724371195 9.545334525 3562.84 Withdraw Funds | |
0xac13b2703469612f4f92abeb1959fa40add32f77e2cba60d3bf2a1cf11294ddb 13377439 1633685653 2021-10-08 09:34:13 0x4f4f002651e5962b9dd2a6ea9188fe5c38f09b29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01646414837 18.01342473 3562.84 Deposit | |
0x61271775ea260008248dc45b0934155a72d985a061860c8f5d8e757f10519da9 13377447 1633685750 2021-10-08 09:35:50 0x4f4f002651e5962b9dd2a6ea9188fe5c38f09b29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006562504349 7.180036008 3562.84 Increase Custody Allowance | |
0xe7d6de0962ce5cb86094efe51767990884d4c43425bf471bff8547e6f3e51f63 13377880 1633691874 2021-10-08 11:17:54 0x354d6f97482c3e533bbdd3adf65570b3d172c9ad 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005074873774 5.552419397 3562.84 Intend To Withdraw | |
0xe11aa8e2064e2392a5bf3278810a5622d770633deea5e8d3eeb5f9291dbe929a 13379137 1633708766 2021-10-08 15:59:26 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007594880998 8.3095593 3562.84 Error(0) Reverted Transfer | |
0xf26a820a88194d35d947ed85596d0bc835b33ed7cff9ada700485b77665028ee 13381230 1633736950 2021-10-08 23:49:10 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0061054152 6.67993477 3562.84 Increase Custody Allowance | |
0x723ed0d1817a924d7b74b23d65afe90f5eb705ec3a64b55f4c8a899f9f8484d7 13381590 1633741846 2021-10-09 01:10:46 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01741154385 19.04997013 3576.4 Deposit | |
0xbf0285f6fcb28c8b4f8702ef0b163ebed8006cf7cc05002fa7c9bbcf8a3d1236 13381604 1633742022 2021-10-09 01:13:42 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01371982511 15.01086065 3576.4 Increase Custody Allowance | |
0x3a23b72c1656bfef05d9335af3e9375633c1007d75bb7eb6c168b16c111436b8 13381811 1633745086 2021-10-09 02:04:46 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006204047888 6.787848794 3576.4 Increase Custody Allowance | |
0x421d9cd58a0002b6f2ef5553c6c8d16bbbb9a376b32d54b26891e8db4f13e04f 13383422 1633767500 2021-10-09 08:18:20 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006536635593 7.151733003 3576.4 Withdraw Funds | |
0x7def5cc05d4b563af04ed19a297fdf7cb9dddf2a68797b31d311dbc245829f5b 13384374 1633780183 2021-10-09 11:49:43 0x7702d9af72e914dd619892e626220696e185da44 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007238427492 7.919563519 3576.4 Deposit | |
0x167066fe6876a5cdeb0066d5c5364a7fbe1641a38ff671c94beaace9279d0338 13384377 1633780302 2021-10-09 11:51:42 0x7702d9af72e914dd619892e626220696e185da44 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003360258349 3.67645866 3576.4 Increase Custody Allowance | |
0x8531c046ce605b78ce34807392818f927328760c8f38fabbe82b393e076e0e3f 13385259 1633792266 2021-10-09 15:11:06 0xbb17f3baa12194c31f9bfbc245a669cf445bb721 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01647422081 18.02444499 3576.4 Withdraw | |
0x7057c226c35065a107337278d351348f0d05a9914b75f71ccc83a4dc864272d0 13388347 1633834105 2021-10-10 02:48:25 0x06ad5f1df17d278473136786353695b0749d8c9e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00931337 10.18975812 3416.49 Deposit | |
0x119afa903d862068664b2a4032958a9da081d2c333d089fd9ec0f7559591133a 13388374 1633834435 2021-10-10 02:53:55 0x06ad5f1df17d278473136786353695b0749d8c9e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003872226 4.236602467 3416.49 Increase Custody Allowance | |
0x361e66babaa6d59d718d24289011c760696d2bc46f6356aa34affc5b5718b42b 13389705 1633852531 2021-10-10 07:55:31 0x6ab53794466383ca012dddc228d981dcbf40e3a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01017234692 11.12956476 3416.49 Deposit | |
0xad5e6af4fbb616718310796dd5ef7558b1a8f383ca88ef5e17cc2fc986053b7e 13389712 1633852655 2021-10-10 07:57:35 0x6ab53794466383ca012dddc228d981dcbf40e3a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005579828656 6.104890533 3416.49 Increase Custody Allowance | |
0x1fea3f436f0686c3441aaa52ebafa245289daed592fd46adf6cbb9f454f9b455 13389769 1633853460 2021-10-10 08:11:00 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006187366823 6.769598041 3416.49 Withdraw Funds | |
0xb8ceed2a5e6b385380a92e189ec56ac286f1459106132bb8b25fcf1aaab07748 13390566 1633864420 2021-10-10 11:13:40 0x35f17621387c2ed8c3e90064c2175a682bdb32bb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009990706 10.93083143 3416.49 Deposit | |
0x55ed529397f82999f182f4d0771a1ead9a79e833e98e696e17e760937af45805 13390590 1633864887 2021-10-10 11:21:27 0x35f17621387c2ed8c3e90064c2175a682bdb32bb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004632218 5.068109714 3416.49 Increase Custody Allowance | |
0xf04b0e48d93450f287ac24c0e95b73bd7496731ad365594059d7af77143a2df4 13391479 1633876668 2021-10-10 14:37:48 0x87bd9a25daf00d6c10bc6f4cbb8d760891306ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011514712 12.5982464 3416.49 Deposit | |
0x7edb83203338e570c5fd2493687a790e227e2e3275d39f4a55b2c865146b82ea 13394007 1633910591 2021-10-11 00:03:11 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007649632318 8.36946272 3544.14 Deposit | |
0x9f417d3cf8b1990117c249257d5c1e24a6853139b846f6a30a3b132466370a7a 13394017 1633910649 2021-10-11 00:04:09 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00288639659 3.158006509 3544.14 Increase Custody Allowance | |
0xd6f145a4247f62ab1778ed1696abdc63aad76baddcb44cad7cbbc78071498e1b 13394294 1633914594 2021-10-11 01:09:54 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006918064 7.569053822 3544.14 Withdraw Funds | |
0xeec5523c1c5305cccb2755db8bb87b5368a783edcd7d5c49581cb2e59dba88d1 13394304 1633914751 2021-10-11 01:12:31 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008040466 8.797073851 3544.14 Deposit | |
0x9a687df4414472f17709e446258cb69675d6b768e843ff95eef113f58b8be0c4 13394312 1633914843 2021-10-11 01:14:03 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0027555 3.01479255 3544.14 Increase Custody Allowance | |
0x2510f61ca6e309935cf58d30f8875fa9c6f6ce01700bea54efe7d0ed8c70dc4d 13395564 1633931539 2021-10-11 05:52:19 0x5ce4104c395665e68d5b09949002070aa31ffe7b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0169013689 18.49178772 3544.14 Deposit | |
0x0d3258026f3875c829714f072328298baca02a71a72e8a669452d57db14e31c3 13395574 1633931676 2021-10-11 05:54:36 0x5ce4104c395665e68d5b09949002070aa31ffe7b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008345716612 9.131048545 3544.14 Increase Custody Allowance | |
0xbdad4a2ac104392bea22808adb89ac8d4b17daad3fba9a81b9f5f8165ad9c84d 13396269 1633941133 2021-10-11 08:32:13 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003264049751 3.571196832 3544.14 Set Liquidity Cap | |
0x8986cfc78b614888cef59145695990c5e98ae10973a56391687a3ad5d3540e4a 13396626 1633946322 2021-10-11 09:58:42 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003769494122 4.124203519 3544.14 Intend To Withdraw | |
0xb3055b692d11c3e1620b200fb4d5decccb65a684a0ac767ffb016593aeb30393 13396636 1633946443 2021-10-11 10:00:43 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00902587 9.875204367 3544.14 Withdraw Funds | |
0x413dea18a5cfc93d44c106bf76412163042e4361725a0c1ce886375ace881c72 13396640 1633946478 2021-10-11 10:01:18 0x3f363da363efd11925adb2460063ece532587cbf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00283152 3.097966032 3544.14 Intend To Withdraw | |
0x668dbb2c2b5dd36769596024e8ea004fb934fffae125fd41eaf2a64771374f67 13397280 1633955119 2021-10-11 12:25:19 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1075149888 117.6321492 3544.14 Fund Loan | |
0xcdf40cd4a38b32dbd2a7ae00929f177c1387e5267091a61f6842cbe276df42dd 13397590 1633959494 2021-10-11 13:38:14 0x8c12674ddd8444cb53259b9b75e6363352a7c6bd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009888201042 10.81868076 3544.14 Deposit | |
0xe7a53eda671d8ae541d985df83705603cb74a21501d9fc91b4503faf49f59836 13397602 1633959676 2021-10-11 13:41:16 0x8c12674ddd8444cb53259b9b75e6363352a7c6bd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003819122244 4.178501647 3544.14 Increase Custody Allowance | |
0x701ad30f1560a94807ffc833f5c001bbfc21c227403d71e1f7a227036ed35854 13398592 1633972610 2021-10-11 17:16:50 0xcb218f2638185d13758592f87a0a9732a83f29f5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01534923093 16.79359357 3544.14 Withdraw Funds | |
0xd451dd9d9591e3c58b5bad00d3287bac0065e94ccf3756b82e9b9947ed8b296d 13398603 1633972732 2021-10-11 17:18:52 0xcb218f2638185d13758592f87a0a9732a83f29f5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01609102735 17.60519303 3544.14 Withdraw | |
0xf8579f4f5f9fe58c6bf3a68abf0f1cbf6521ee9fc3a7985056b67a664392040f 13398700 1633974354 2021-10-11 17:45:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03397097132 37.16763972 3544.14 Claim | |
0x02ea4455e29cd4192a4198dd8ba024a449bf0da462efc2102531871597bd2946 13398700 1633974354 2021-10-11 17:45:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03668854844 40.14094085 3544.14 Claim | |
0x9005a09d294adab3a9bf49dac2a36ee6b8b71beaecc4787fcf183d10e32cbdd3 13399091 1633979658 2021-10-11 19:14:18 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01759700083 19.25287861 3544.14 Deposit | |
0x82d704bd18f4987a55481aacd4a8e465f91cb72424ea40672e1c4b9d1e505da5 13399100 1633979843 2021-10-11 19:17:23 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009760374214 10.67882543 3544.14 Increase Custody Allowance | |
0x845e4da27aee1aefd1bf3127dfdea37e1f8b7c211c29d8a31a1e2d69d9972277 13399156 1633980585 2021-10-11 19:29:45 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0110941725 12.13813413 3544.14 Deposit | |
0x954142121a147ba857f1e58da0f21719c700554fe0dec2d8dac675a1ce428707 13399160 1633980623 2021-10-11 19:30:23 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003750225047 4.103121224 3544.14 Increase Custody Allowance | |
0x26b0cf05b5aecea4f4f83a282d96ab311cc6319278fe014b8350753595bf5e2a 13399504 1633985371 2021-10-11 20:49:31 0xd3b475df4ec2959d4e984eb58f68184bed59339f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.018593698 20.34336498 3544.14 Deposit | |
0xe9634c2c762f093f999e3e9d2fe9c45c80a12f32e332d2f17cda9366acc783d4 13399637 1633987417 2021-10-11 21:23:37 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0213113071 23.3167011 3544.14 Withdraw Funds | |
0x2f8ce7d2f46bbfb2cd524e429db329bf799bdac78b9683ecfa8cc668a64d1bb9 13402249 1634022521 2021-10-12 07:08:41 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008980032598 9.825053665 3490.61 Deposit | |
0x8aa0b0f08f1521f6fb87f90150800aa2b5fc9dd927e48e922ba3edddf47b68d0 13402261 1634022767 2021-10-12 07:12:47 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003886030188 4.251705629 3490.61 Increase Custody Allowance | |
0xc21ad1923be246a364d43fa53036ad72a1a4509e81d0151acdc982b2bce35dcf 13403275 1634037183 2021-10-12 11:13:03 0xe7fb225efea23bf8b17345f1f3bb941c098efeeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01036846319 11.34413557 3490.61 Deposit | |
0xa5eee7173ff13db10416618ad47191fb5c0c030586ea5c9a1959e6380b21ddce 13403280 1634037226 2021-10-12 11:13:46 0xe7fb225efea23bf8b17345f1f3bb941c098efeeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004555931335 4.984644474 3490.61 Increase Custody Allowance | |
0xbe4cd2dae228c0bb5373b32b59ba0d6f36cdb3f21d7f43ffafc4aa03111bd46a 13403421 1634039211 2021-10-12 11:46:51 0xe7fb225efea23bf8b17345f1f3bb941c098efeeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004210197162 4.606376715 3490.61 Increase Custody Allowance | |
0x4c184ddb4f2df7ec2adb56fd0affb1d460fa810dcc194c30db1feef45bdf91a4 13403425 1634039266 2021-10-12 11:47:46 0xe7fb225efea23bf8b17345f1f3bb941c098efeeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005731824629 6.271189326 3490.61 Deposit | |
0x7d04fda56a610743d36d18a0c4781fdf26c5450564d60e1448d61a1067128626 13403708 1634042669 2021-10-12 12:44:29 0xc78bca0d880b645b3296627ee44649b2049f0fda 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01100671 12.04244141 3490.61 Deposit | |
0x21ca91e9b424ec4e13f41b1f04ffdfe0a4adc1eda56bb96699f92b0212982526 13405224 1634062751 2021-10-12 18:19:11 0xd3b475df4ec2959d4e984eb58f68184bed59339f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00994945 10.88569325 3490.61 Increase Custody Allowance | |
0x6af20e1e20777524b167a9408876d00f3d866a23fe1d403e9a7d33813a79109f 13405567 1634067349 2021-10-12 19:35:49 0xd3b475df4ec2959d4e984eb58f68184bed59339f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010305386 11.27512282 3490.61 Deposit | |
0x2b2104d54cf620675471bc39d153c25a042969959324258e6d2774d10b333cc7 13405584 1634067590 2021-10-12 19:39:50 0xd3b475df4ec2959d4e984eb58f68184bed59339f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00346525 3.791330025 3490.61 Increase Custody Allowance | |
0xd48040e3e2308cc9683a0aa88660129e2ed5b9c3364b0afb35c81c8b8f441118 13405825 1634070643 2021-10-12 20:30:43 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.08313888754 90.96225686 3490.61 Fund Loan | |
0x4ca186c8f404b7717746bfd06f8d0bb607e9f1f6190d80f599e1ca5f50149ef0 13406695 1634082704 2021-10-12 23:51:44 0xb335c459fa462ae5b950fb572a0588707b89f633 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009501564157 10.39566134 3490.61 Deposit | |
0x1af4dc4c1f11393a7a9433197bda94314f62f818e37d1a74505780457c4538ae 13406707 1634082853 2021-10-12 23:54:13 0xb335c459fa462ae5b950fb572a0588707b89f633 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005348610565 5.85191482 3490.61 Increase Custody Allowance | |
0x86c093e5a2b6e3aad8478b2749e17bc37e4c72ae34aef058bc7639439553a959 13408011 1634100505 2021-10-13 04:48:25 0x5853ed4f26a3fcea565b3fbc698bb19cdf6deb85 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004706668 5.149565459 3607.55 Increase Custody Allowance | |
0x02928744f359be422501fc1e6173fc85e68d29527941c3a6bb7443a4d799a133 13408628 1634108858 2021-10-13 07:07:38 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01457133992 15.942503 3607.55 Deposit | |
0x018f59ec5c7ea343cda6319ab9abd0ec49597726b01a3ec5e221d12b68ef2685 13408632 1634108963 2021-10-13 07:09:23 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007421933061 8.120336962 3607.55 Increase Custody Allowance | |
0xfb9e2fe05b7af4bad91c29da64322471da080531b4a112df534b9636e30064a3 13409575 1634122195 2021-10-13 10:49:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01810287568 19.80635628 3607.55 Claim | |
0x6484d4972309d33afcbcca58355c63ffb6e7e2326ced3e10c75e4ea27be75714 13409576 1634122210 2021-10-13 10:50:10 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.08465596308 92.6220892 3607.55 Fund Loan | |
0xfc5e7d54d215c62e0fe67b17231349d3ce49ead204c528c962407b8bdb6c4161 13409653 1634123269 2021-10-13 11:07:49 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007268286542 7.952232305 3607.55 Deposit | |
0xab56598721c5c075cf21ac7e50fee49350a066f2c842d4454a4fda1a539b667d 13409664 1634123381 2021-10-13 11:09:41 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002457220262 2.688444689 3607.55 Increase Custody Allowance | |
0x270da56b140ff76fe2daad9a178bf87bf0e8e1b691dd4e34f0cb73abb12f4f46 13411496 1634149029 2021-10-13 18:17:09 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1452407134 158.9078645 3607.55 Fund Loan | |
0x690b53634ae07aae1535c6eaea998f2d777ad90b6e9186b2e91c835e1fb86f2e 13411660 1634151374 2021-10-13 18:56:14 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00664788712 7.273453298 3607.55 Increase Custody Allowance | |
0x76d3214662cf62625f02792688bb1b39d92819123e7e5b5bf1830cd8666d47f5 13411852 1634153569 2021-10-13 19:32:49 0x05f13dbaaa5a5fe2fb27a60c431535c0190dfd3e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01582391486 17.31294524 3607.55 Deposit | |
0x0fdc014d1f94e97c28aa05ae5a3b3662a663c0e8058a06224c8eabd10e0f1f9a 13411857 1634153675 2021-10-13 19:34:35 0x05f13dbaaa5a5fe2fb27a60c431535c0190dfd3e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009274621701 10.1473636 3607.55 Increase Custody Allowance | |
0x8415c99cab9c7badea21e9a515b000f57847b1c89c5ea50f10ddd52814cf39f1 13412259 1634158744 2021-10-13 20:59:04 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01126083196 12.32047625 3607.55 Deposit | |
0xc58ebd5a356f0eff0fdeb9cb3557f5a0fd71b60059852cf13cfae2f718e4de38 13412266 1634158912 2021-10-13 21:01:52 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005022228755 5.494820481 3607.55 Increase Custody Allowance | |
0x3abe33cbda462e3c1a5ff41660261ec4947bb67f92501b57cb1503115fe794e4 13413260 1634172268 2021-10-14 00:44:28 0x190a031ccbd45abcf1b751cdbc20646ffc2bbda9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01417899621 15.51323976 3791.23 Deposit | |
0xe8b2b878283ddc43223e461431ebbc689b8b595b8e9043a889fddc10c4259e42 13414167 1634184910 2021-10-14 04:15:10 0xa88bc7966406de71353f7fbe31de4d6172eca4f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01740375388 19.04144712 3791.23 Deposit | |
0x24da91daa6063a3ce2114c9edbdb571ede87b0825f728cb3ca554bfec9d8a6af 13414177 1634185017 2021-10-14 04:16:57 0xa88bc7966406de71353f7fbe31de4d6172eca4f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007651355775 8.371348353 3791.23 Increase Custody Allowance | |
0x416497a5b65482656143abde7b24e0408c875bd0202a17b478cc8493b941821c 13414500 1634189626 2021-10-14 05:33:46 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01047685014 11.46272173 3791.23 Deposit | |
0x8e0cb69f6271a4cfd592f45fbe9160bd7bc7c2d0da4307c83c990f1dc856ca95 13414510 1634189715 2021-10-14 05:35:15 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002942323859 3.219196534 3791.23 Increase Custody Allowance | |
0x2b09a4fa545fc20fba2eae09b94ca30b7cf40aa21fc43843664cb5f086edf67a 13414582 1634190724 2021-10-14 05:52:04 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005344788774 5.847733398 3791.23 Increase Custody Allowance | |
0x82f1614f7ef787bb6788fed794275763c35f5e6c200be6bc90e0dd45d603a93a 13414956 1634195842 2021-10-14 07:17:22 0xd3327412485081111ef69ac484511d7879a671fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01354672 14.82146635 3791.23 Deposit | |
0x79a476d9337fb30e6f8208900e54fbf8b9f41b561438ebbc0fd8adf420d65c93 13415016 1634196601 2021-10-14 07:30:01 0xd3327412485081111ef69ac484511d7879a671fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005163784 5.649696074 3791.23 Increase Custody Allowance | |
0xcfd6376e02929ff529659d8a357250c67e7366ef07acff6c5434f5af076df667 13415107 1634197661 2021-10-14 07:47:41 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009118777191 9.976854124 3791.23 Deposit | |
0x47876a8e2d94749bf948f8c51f85773b49ba64fae09b85ecc9de0f253bcfd5b7 13415115 1634197848 2021-10-14 07:50:48 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00363001019 3.971594149 3791.23 Increase Custody Allowance | |
0x6b372bc6a6e3f6aa5f0c922618006ed45a3940f67c6cde079ed01b61c7994c90 13415396 1634202004 2021-10-14 09:00:04 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008408558748 9.199804127 3791.23 Deposit | |
0xf66234a013efb9995b552e15438fd07830b81452831700ebeb3cc401cfc3c166 13415751 1634206813 2021-10-14 10:20:13 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003665921159 4.01088434 3791.23 Increase Custody Allowance | |
0xeb40814dbb7de44625ca0458b7026f537cebc1dc867ce2493b5d0d96992bdbc0 13416524 1634217411 2021-10-14 13:16:51 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02009946228 21.99082168 3791.23 Deposit | |
0xc9f3a7857e5d4f62efedc11322cd9bf15433bc53dc451b6f4f3053d0b0eb6676 13416533 1634217491 2021-10-14 13:18:11 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006559337919 7.176571617 3791.23 Increase Custody Allowance | |
0x926a680c5cb72a2602a705a792c262a8f291575fb5ccf2b1deb58d33ff53b46c 13417604 1634231490 2021-10-14 17:11:30 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02939132663 32.15705047 3791.23 Deposit | |
0x16329f1365133bb22edaf79ffa8bda7541282456eaa3407933a475e7feddec54 13417608 1634231574 2021-10-14 17:12:54 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01914766067 20.94945554 3791.23 Increase Custody Allowance | |
0x8e70a798b56fb9c77e39307bea2983af84e6554f6eb5a4a86701b03f6a042a49 13418031 1634237744 2021-10-14 18:55:44 0xc0819e1e01204bcb9cb5a0a3be826afedad6edef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02750820673 30.09672898 3791.23 Deposit | |
0xbf1d749f693ffa17ebd3ab837d0e5046647055ac09405c30907ff5ac1761841a 13418038 1634237841 2021-10-14 18:57:21 0xc0819e1e01204bcb9cb5a0a3be826afedad6edef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01142401019 12.49900954 3791.23 Increase Custody Allowance | |
0x868c5aa49a2df0d31c87262442a56c0b70fb6e4f3d1fda9dff0ea1659ac37eb6 13421577 1634286318 2021-10-15 08:25:18 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02292145626 25.07836529 3868.16 Deposit | |
0xe5dbfd72be851dad8e4ddb09db406aa0c21fa169a857abef55199730757d0044 13421587 1634286422 2021-10-15 08:27:02 0x7ab92301188fe96b8381b7349663e1c54ac74718 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01707643158 18.68332379 3868.16 Deposit | |
0xe6a5b3c82978e0b8323d972ae9d88ad8add8a8dd05b480e1c7346db8eea71171 13421598 1634286559 2021-10-15 08:29:19 0x7ab92301188fe96b8381b7349663e1c54ac74718 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008659751447 9.474634058 3868.16 Increase Custody Allowance | |
0x07151d9d0e5836d44d88c014e949fc2ba3bb72ccbc72f498a08dbc21eb5c6056 13422335 1634296811 2021-10-15 11:20:11 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009221505073 10.0892487 3868.16 Deposit | |
0xf483907371e7dbcbc60487a4f5f7bf276eeeb71d996d26357c6b24cf96d835b6 13422342 1634296905 2021-10-15 11:21:45 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00418387106 4.577573327 3868.16 Increase Custody Allowance | |
0xb9f62da7677260f3df47636fc82a2ec41643ab6ad727741cea5967cdacb98378 13428705 1634382980 2021-10-16 11:16:20 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008144346 8.910728959 3829.61 Deposit | |
0x530757e69209b6ff8da05dd18fbea116183a5009ad381095d4ede537bf816c6d 13428714 1634383061 2021-10-16 11:17:41 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002587756 2.83126384 3829.61 Increase Custody Allowance | |
0x92e9b596268eab74c187ed3e9301ab67f46f3b882f14dd12fcafde474fb22191 13429284 1634390722 2021-10-16 13:25:22 0x3991adbdf461d6817734555efdc8ef056fefbf21 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.013208052 14.45092969 3829.61 Deposit | |
0x7e443780f786e56d8c2c0a17b378fa5c83899811aae9f7ad0754da95ca797fbf 13429494 1634393608 2021-10-16 14:13:28 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01857674884 20.32482091 3829.61 Deposit | |
0xc8b392883172a5744e79092edaf3754781251b92a769f43a9ec10f8c19a59ad3 13429498 1634393638 2021-10-16 14:13:58 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007153756743 7.826925253 3829.61 Increase Custody Allowance | |
0xe6e3853a8f9e3f36c452298fc4ff9f7035e6a27dc51864e3ec4ab133c2497bee 13429600 1634395032 2021-10-16 14:37:12 0x3991adbdf461d6817734555efdc8ef056fefbf21 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006378792 6.979036327 3829.61 Increase Custody Allowance | |
0xf9ff922c6f2f375069622933862c344192047e3c3080c531e289ceaf0d04311f 13430221 1634402980 2021-10-16 16:49:40 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01567873206 17.15410074 3829.61 Deposit | |
0x3af71d6abc111c02a0f03ecf1296aff63e6081d97b34c6e8b5ade7938b52c829 13430236 1634403193 2021-10-16 16:53:13 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007438833618 8.138827861 3829.61 Increase Custody Allowance | |
0x9db25f6373589dcc457951dd353bbd5395f8f60eb8852d32cdfdc31769b9c23c 13430551 1634407363 2021-10-16 18:02:43 0x2fc2f705110a7f46ce85f701d7217ef1018f01a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01690178768 18.4922459 3829.61 Deposit | |
0x8c3a09a198c12830ef453e8837d6f4f410a47cb83ff6e3df7a5c2e4ce56a2ba7 13432944 1634439985 2021-10-17 03:06:25 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00906988988 9.923366518 3846.66 Deposit | |
0xe2665630fb8a8c91afab4f10e65c11df2084a4b8040648dfbda1c52967477e83 13433016 1634440876 2021-10-17 03:21:16 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004558613862 4.987579427 3846.66 Increase Custody Allowance | |
0x335f47ba5e088508c014b661add065a2224f93684908851e6dd43aba706a5da1 13434159 1634456482 2021-10-17 07:41:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01304960243 14.27757002 3846.66 Claim | |
0x5df841bf5905fe3a3b93819d5cf82c18c1e96df1d7dd72eac4f5afcfc4649bb9 13434159 1634456482 2021-10-17 07:41:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01423316195 15.57250249 3846.66 Claim | |
0x45a7e908697e4dd7280933d7434262e1d03642f493dd00ed01e106741b4d2c64 13434161 1634456560 2021-10-17 07:42:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01641195792 17.95632316 3846.66 Claim | |
0x1bf40f16a9e63fc1971012c9eea37df671a07461dfdd80af2f091d68206e3a22 13434161 1634456560 2021-10-17 07:42:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01657455741 18.13422326 3846.66 Claim | |
0x0e899903a243d160404b00ec2172f68f9529c6aa79463fd90bbe9951c066cad9 13434161 1634456560 2021-10-17 07:42:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01657455741 18.13422326 3846.66 Claim | |
0xab32520d59372b97da41fb7761cca9aae52af884daa9cdb81c0d5368e8b7e622 13434165 1634456629 2021-10-17 07:43:49 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0164780362 18.0286194 3846.66 Claim | |
0xc3943d87f52bcc5f305c62fdc7496eaccda033cb6a4ce5982a699fc0af07d35d 13435638 1634476510 2021-10-17 13:15:10 0x657a97770251bd5e372dfef3441e039abc43c60d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0129985808 14.22174726 3846.66 Deposit | |
0x9c90d25f9c4133ef7621538b3aa921e4db3e774301f74bdcef62e228c67a364b 13437136 1634496527 2021-10-17 18:48:47 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007700369495 8.424974264 3846.66 Deposit | |
0x9ca6c03739f6ba37b5edee79a9fd20ce1942cc51cd57f457913e92f0724b2cd8 13437142 1634496597 2021-10-17 18:49:57 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002984145827 3.264953949 3846.66 Increase Custody Allowance | |
0x3b25079e2eb0f8f74fa00e4b66f62f7cb6a05123947435f115204b5ed740a718 13437423 1634500248 2021-10-17 19:50:48 0xe94629793d7cd090bb863f185c29f4316eee0590 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01158720863 12.67756496 3846.66 Deposit | |
0x3f15fce66165399d83ba61c75f3a0c92abcf5fac400d2af3bad81efafd8b6e13 13437435 1634500441 2021-10-17 19:54:01 0xe94629793d7cd090bb863f185c29f4316eee0590 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005379451647 5.885658046 3846.66 Increase Custody Allowance | |
0x32af214d44c4c24aca6a4670da73aae2d64d609b2b4d8e9832f4a5d980ebd7af 13440978 1634548767 2021-10-18 09:19:27 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006714365165 7.346186927 3746.14 Deposit | |
0x00428fe784ae76fda23d04ad460500567bac9e8563a7821e41884d1a03713060 13440986 1634548855 2021-10-18 09:20:55 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00201528408 2.204922311 3746.14 Increase Custody Allowance | |
0x98cf4296669c2b460a171ef9017de87a61194cc1e25c654cdf64c01b45c6555d 13441360 1634553838 2021-10-18 10:43:58 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003537858243 3.870770704 3746.14 Increase Custody Allowance | |
0xd36847de90422b0ec57ad508d6a8a895a346e6c4160435e244bf93bcf47dc525 13441416 1634554651 2021-10-18 10:57:31 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00931337 10.18975812 3746.14 Deposit | |
0xc8557420c2bf8eb45726703bdfe0447984d27e5f1d8942e2cf536ebecb41ea98 13441452 1634555039 2021-10-18 11:03:59 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005436384 5.947947734 3746.14 Deposit | |
0xab99f6686d39bf41875bb09b29cbf883d66fff17bd4a6af88b28ca320256e857 13441459 1634555153 2021-10-18 11:05:53 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003874062 4.238611234 3746.14 Increase Custody Allowance | |
0x5bed90b75e0bc1f82ae88bb4741735d71fadcb1b820f6c2675e4fd39e59386cd 13442337 1634567111 2021-10-18 14:25:11 0x354d6f97482c3e533bbdd3adf65570b3d172c9ad 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01473760613 16.12441487 3746.14 Withdraw | |
0xe272119c7a1b69d85b3d02b1bcee9617f07e60cf1f8a83e689946fac5aea07bc 13442475 1634568834 2021-10-18 14:53:54 0x18c1ff758ae2c5f6b59e06e4e0cc7d6578d3d50c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01723290845 18.85452514 3746.14 Deposit | |
0x5d9cf3e9ed54955bf0c9a48dfec547daaa958c6ddc13192622dcbb6103619f32 13442952 1634575308 2021-10-18 16:41:48 0x9f82226aae1f6900047da20c30dc836587157e03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01096228 11.99383055 3746.14 Withdraw Funds | |
0xb49544a5ccb50cee7a21aebe6fb8be0a111993d2d41443a12984dfd28a94e4c2 13442988 1634575896 2021-10-18 16:51:36 0xa7c394611a3602468ee76533693fd5405b9938d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01866561436 20.42204867 3746.14 Withdraw | |
0x62cfac554169e97d09796ce0dfc1f9c0aa15b2d1e48d4b9ef976e72c9efbfa35 13447544 1634637461 2021-10-19 09:57:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05021161611 54.93652918 3877.45 Fund Loan | |
0xfef247c6b01552a2c2677cd7f4f086432720276077cc24e5d626f67ec199dce5 13450373 1634675711 2021-10-19 20:35:11 0x991b9d51e5526d497a576df82eaa4bea51ead16e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01442733532 15.78494758 3877.45 Deposit | |
0x82c749bbe9953b7c064f363f49328852a20c8f7d29a29bd76d59dfa19ccdeb3a 13450378 1634675804 2021-10-19 20:36:44 0x991b9d51e5526d497a576df82eaa4bea51ead16e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008093397653 8.854986372 3877.45 Increase Custody Allowance | |
0x53d7d5653cba4345969c123a63a99f88aa92b76316fceef12d4532ec51a2e8f7 13450573 1634678737 2021-10-19 21:25:37 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01313384832 14.36974345 3877.45 Withdraw Funds | |
0x9b59bc6b412bfafb379541498a3f772bcb11f99d84e2b3908b96f6ee424f92f2 13454554 1634732308 2021-10-20 12:18:28 0xb4522eb2ca49963de9c3dc69023cbe6d53489c98 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008472002412 9.269217839 4162.49 Deposit | |
0x38d0cdb6b35de7be72fd939c5c7cf28779e35c39ca4b89659a642ba30b12f247 13454565 1634732490 2021-10-20 12:21:30 0xb4522eb2ca49963de9c3dc69023cbe6d53489c98 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00212518304 2.325162764 4162.49 Error(0) Out of gas Transfer | |
0x9be067ab63be026c562904353b640411734a139414b253cec9af16d285a9afc9 13454865 1634736545 2021-10-20 13:29:05 0xb4522eb2ca49963de9c3dc69023cbe6d53489c98 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003093410568 3.384500502 4162.49 Error(0) Reverted Transfer | |
0x94c4e49bd6b7da7126abb4516eb5d01a5a4bfffbde199a8581506d3f24d3e4f0 13454904 1634737010 2021-10-20 13:36:50 0xb4522eb2ca49963de9c3dc69023cbe6d53489c98 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005587123705 6.112872046 4162.49 Increase Custody Allowance | |
0x7b26ec43631406fcf349831f6eeaa385006176318620f4e1e27830a31323c87e 13456697 1634761558 2021-10-20 20:25:58 0x2c5710910bde7b17ea4b2bb403fae341fdfc6746 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02011620295 22.00913765 4162.49 Deposit | |
0xc392b1acb28f90622d678f2a9377654e9e20baea6c00050eb631774c03b1db52 13456762 1634762720 2021-10-20 20:45:20 0x2c5710910bde7b17ea4b2bb403fae341fdfc6746 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007354034182 8.046048799 4162.49 Increase Custody Allowance | |
0x84cf2afeef5e50ef9ecf9e300a3e5386401e16a2b824f5c75e22558566d4e0ef 13456768 1634762835 2021-10-20 20:47:15 0x2c5710910bde7b17ea4b2bb403fae341fdfc6746 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003516160901 3.847031642 4162.49 Error(0) Reverted Increase Custody Allowance | |
0x573c73884c33dbc9d9c638ba5c94c9a54757a49f9ff161e85bf980784e5dda5b 13457588 1634773659 2021-10-20 23:47:39 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01194701464 13.07122872 4162.49 Deposit | |
0xa5ed772473c3f40d3dcc5eab05477706f860639b8e4018ac45bddde2dddce9dd 13457593 1634773739 2021-10-20 23:48:59 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003972031104 4.345799231 4162.49 Increase Custody Allowance | |
0xaf68f4c43cf09d557fc0f53cfc4dd927697886256c934e51f0f57648c21c95a2 13460557 1634813670 2021-10-21 10:54:30 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008132619478 8.897898971 4062.76 Withdraw Funds | |
0x397369247e958e4b018d9d84861b824e7e96db1859d213265b825ea8ca64b343 13464923 1634871171 2021-10-22 02:52:51 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006242798061 6.830245358 3971.95 Increase Custody Allowance | |
0x3451f4a13614d4d46e319941caafb664c4e8da2a785c2eb29ed72762c92e7bf8 13465251 1634875713 2021-10-22 04:08:33 0xd3fe68d8b606205eddce2d9a6e5839e82ecb24eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01354672 14.82146635 3971.95 Deposit | |
0xf32cf839f2c7ffa33df48a0b8e3131700de2882b7a86111b5762cde39a010073 13465270 1634876075 2021-10-22 04:14:35 0xd3fe68d8b606205eddce2d9a6e5839e82ecb24eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005998154 6.562580291 3971.95 Increase Custody Allowance | |
0xecd2cdee18c9e756c42173c6c932112b90725dee5548f2b1eb2bc725e90c4b2b 13465929 1634885537 2021-10-22 06:52:17 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00487517663 5.333930751 3971.95 Increase Custody Allowance | |
0xe1c37344cd5fa8bc220f91bb01b1e29b9847811f6a3d0be3a441f977d3ac0638 13466117 1634887961 2021-10-22 07:32:41 0x3f363da363efd11925adb2460063ece532587cbf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01069143966 11.69750413 3971.95 Withdraw | |
0x7a3607dda8148499f54277a7662bdf4fbc19f6dfcf51acf05b32cd5ee1560f78 13466488 1634892978 2021-10-22 08:56:18 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004263585769 4.66478919 3971.95 Increase Custody Allowance | |
0xa2f0d94a21c3bd03b57ac0b6262361f3316090bf87b3c9f14a94f7938f9df3c4 13470632 1634948374 2021-10-23 00:19:34 0xad91bae71e4569ec5ff09be170e223cc6b388ab0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003208345661 3.510250988 4168.96 Intend To Withdraw | |
0xbcd37a6e9ff15b28c8f66edf5521b934cc14568af7214808068022b4b596a981 13471807 1634964820 2021-10-23 04:53:40 0xd3fe68d8b606205eddce2d9a6e5839e82ecb24eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00493519 5.399591379 4168.96 Increase Custody Allowance | |
0x0a494ced922ff5f6c40662bb8c8c0ec7255e71a4cef9a91f7566d59c6f6f8839 13472772 1634978761 2021-10-23 08:46:01 0xc3c29d099207380e2a2fcffe0de30111fe16b6d9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00983766363 10.76338778 4168.96 Deposit | |
0xf2db5af7965b974c7d80edafd30de263b5fa62e054e2b7263fd7b790e3dded9b 13472780 1634978866 2021-10-23 08:47:46 0xc3c29d099207380e2a2fcffe0de30111fe16b6d9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004008201387 4.385373137 4168.96 Increase Custody Allowance | |
0x9f8d9c074bcba62309cc7083d13215e9dc754f8dae88175e3f761a13adb27ab4 13472952 1634981143 2021-10-23 09:25:43 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006701447878 7.332054123 4168.96 Withdraw Funds | |
0xfc1c556f72ad742201d9c0472dc9b28cc7ecf1c6b53b735c494077e90f562804 13473480 1634988545 2021-10-23 11:29:05 0x196589d9220a38bb798527b0b946a3dc44bcad73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006668500137 7.296006 4168.96 Deposit | |
0x655d8e87728adb40f80251d06eb0d7fbd12650ffd871c5f6a0c7f85d7d569084 13474294 1634999199 2021-10-23 14:26:39 0x190a031ccbd45abcf1b751cdbc20646ffc2bbda9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004543721134 4.971285293 4168.96 Increase Custody Allowance | |
0x02b81f615b9fdb98cab42a523a745ea461f7bd16f9ce95b57865bfff2ab7ee2e 13474899 1635007006 2021-10-23 16:36:46 0x82886ad5e67d5142d44ed1449c2e41b988bfc0ab 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01049377522 11.48123946 4168.96 Deposit | |
0x15d7cf8bf92c32fa6ad352f17022c4c7a3e01d3db0694e8d2c136452bbc75738 13474904 1635007118 2021-10-23 16:38:38 0x82886ad5e67d5142d44ed1449c2e41b988bfc0ab 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005528227322 6.048433513 4168.96 Increase Custody Allowance | |
0x381b216802fb5e53b1bdc336b2701d957862384e92043843acb88d8d6f0ce0c4 13475462 1635014078 2021-10-23 18:34:38 0x196589d9220a38bb798527b0b946a3dc44bcad73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003039246061 3.325239116 4168.96 Increase Custody Allowance | |
0x695b08bd487b6bc77b35f43e57a38401bca005faeb6855747ba474d9e0fe6c07 13476941 1635034448 2021-10-24 00:14:08 0xaec854ab2648d959b11ddc7ec8abfbbd70256255 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01057605114 11.57125756 4082.08 Deposit | |
0xd11b3e0f3ece18ebeaa56e0b0eed806b771f77a98eae39eeaf5cb1e7a1daf0d5 13476961 1635034705 2021-10-24 00:18:25 0xaec854ab2648d959b11ddc7ec8abfbbd70256255 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004652515918 5.090317666 4082.08 Increase Custody Allowance | |
0x01af3d15fde0770a84a4a97ba95894c775a9bca3db741a0993b102c1a44be7dc 13479063 1635063410 2021-10-24 08:16:50 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005063321532 5.539780088 4082.08 Withdraw Funds | |
0xb8f6ed745959a85cec1cbff3eeb876f86a7583a523ce5cd1953a12e7285288d1 13479676 1635071934 2021-10-24 10:38:54 0x364462cee8e0a66306b706a43dc5bef2ff4e8be8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01104676912 12.0862701 4082.08 Deposit | |
0x96eb9f5ca85c68804c4256c41011771b26796f747acb51e2989a7293820f63c2 13479679 1635071972 2021-10-24 10:39:32 0x364462cee8e0a66306b706a43dc5bef2ff4e8be8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004490482606 4.913037019 4082.08 Increase Custody Allowance | |
0x1b26433fd266afa23b1827e6e4c498a1324b08f9723d17e1dc2376d6d1d46065 13481644 1635098478 2021-10-24 18:01:18 0xfa9b56c9ef453b739f5ac244a080a1c6ba6a5dcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01890950437 20.68888873 4082.08 Deposit | |
0x78914247e9162ace6590ac154b27e7bb16ba390698f95b35506bf3a29babbf7b 13481664 1635098725 2021-10-24 18:05:25 0xfa9b56c9ef453b739f5ac244a080a1c6ba6a5dcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01256930218 13.75207351 4082.08 Increase Custody Allowance | |
0x413b1bd590f2a59e74f5f0c36a59ddd0182387a93e426072ebf077378cc79f6b 13485575 1635151226 2021-10-25 08:40:26 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005780848 6.324825797 4220.26 Withdraw Funds | |
0x25dcd212e6f620286baa74bbae48cce9527d3ef6867f63921f4ef885f8d14733 13487335 1635174721 2021-10-25 15:12:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1171853505 128.212492 4220.26 Fund Loan | |
0x32602cb728a291b5e3741bf5a534383f5160b48dd743ccafa3a86ed2ddd31082 13487338 1635174776 2021-10-25 15:12:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02376550242 26.0018362 4220.26 Claim | |
0x4a6d2adb86d0be74307818acff603f77a75427f8caf972f2d7520f611520510a 13487340 1635174780 2021-10-25 15:13:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02310894444 25.28349611 4220.26 Claim | |
0x38056f3fe541a90e56083c0b517a2cbf973d509f3718cb884f654c593887b4a0 13487344 1635174846 2021-10-25 15:14:06 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0207408183 22.6925293 4220.26 Claim | |
0xc04d433aaaa80a9f3bd8cfd1b22e5f26aac728797bd0b75b57c0bd7088c67eb4 13487344 1635174846 2021-10-25 15:14:06 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0207408183 22.6925293 4220.26 Claim | |
0xd696bda69e5a9ffc3b292aae7162dc1a2ee2a4ceac1659768c31af8535989530 13488565 1635191324 2021-10-25 19:48:44 0xd05471d614a7b0d1fcda75c40dfb61cb4af2758d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02652104905 29.01667977 4220.26 Deposit | |
0x869cb923660448cff932dae0a90af55e8cf36343403bfac441b635a088d79cae 13488593 1635191711 2021-10-25 19:55:11 0xd05471d614a7b0d1fcda75c40dfb61cb4af2758d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009039503434 9.890120707 4220.26 Increase Custody Allowance | |
0x5cc98cbcc261ef63a759e60aeff8c671584736752ba7e32ddf1ccde5278dd117 13489994 1635210585 2021-10-26 01:09:45 0x18c1ff758ae2c5f6b59e06e4e0cc7d6578d3d50c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009299193847 10.17424799 4129.95 Increase Custody Allowance | |
0x4031fa5b199f7549417fe2eb93299a049de2a8a921648612073f0236278c59c7 13490738 1635220625 2021-10-26 03:57:05 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01144109847 12.51770583 4129.95 Withdraw Funds | |
0xc28a3a93174f0f0b82cff7da481ebb3d597fba792cc4c5fa14995c5a7a9ed0eb 13491485 1635231201 2021-10-26 06:53:21 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01043782782 11.42002742 4129.95 Deposit | |
0x5e342f0f25bba6614442559f9a912188a763c6c925c29dfc5a208e2d59fe7ff4 13491497 1635231421 2021-10-26 06:57:01 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00390935639 4.277226827 4129.95 Increase Custody Allowance | |
0xcabbb41b5775a028c77b083e2b09f9d144618b10a8b531671124a140e4cfa61e 13491500 1635231448 2021-10-26 06:57:28 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003019236004 3.303346111 4129.95 Error(0) Reverted Increase Custody Allowance | |
0xd91046db49aeac47b66b08f7ff1c698c118a5feff73c93a796491e18d41a56e0 13492435 1635243909 2021-10-26 10:25:09 0xe4af5b75bce58135378e25dbf99ffba53c96e7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0132317841 14.47689499 4129.95 Deposit | |
0x09140dc620f1d19b26bce8dd12b3491039b594c9ce7a3d93284edf963065f108 13492453 1635244170 2021-10-26 10:29:30 0xe4af5b75bce58135378e25dbf99ffba53c96e7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0066386707 7.263369613 4129.95 Increase Custody Allowance | |
0xf51794ffe41d17c8e838117af61a2bd0a42d31cd07d8a5651b5ddaa81dfb3bc2 13492667 1635246960 2021-10-26 11:16:00 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01405265756 15.37501264 4129.95 Deposit | |
0x49cab0609a38f1a676b7f4843e46fd235d1fa950f8b00d7f20d41507b345b881 13492674 1635247068 2021-10-26 11:17:48 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007106880151 7.775637573 4129.95 Increase Custody Allowance | |
0x9a9b718b330415fb2c90b53092d3e65f5e782c75374279c63f422414d4510ffa 13493365 1635256229 2021-10-26 13:50:29 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02857194623 31.26056637 4129.95 Claim | |
0x7a7e4036c5074ddac839de4a49a0be00fea50e810ce6e604e0bf734e0650f622 13493371 1635256328 2021-10-26 13:52:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02971350615 32.50954708 4129.95 Claim | |
0x9100122d2c695a41fe22a09575e7a012903d54682824b667662ffaae08d6b330 13493371 1635256328 2021-10-26 13:52:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02811617543 30.76190754 4129.95 Claim | |
0xd5bb1d143005bc9a1d2626f6b0d2c49fe139535940e2abf8f43ca50002f25d13 13501076 1635360619 2021-10-27 18:50:19 0xf10b99017a1e5d26b05fa91d923c150e701b05a8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03456420662 37.81669847 3924.31 Deposit | |
0x5a538e94c258723a6e5cdf6de5013911732d3c48a541f227da2fc68077396d13 13501092 1635360926 2021-10-27 18:55:26 0xf10b99017a1e5d26b05fa91d923c150e701b05a8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01710284068 18.71221799 3924.31 Increase Custody Allowance | |
0xf2f3e35b471f57a3d7c7cd11ca986e840d814ca05f2013746cc63d0ee73898e7 13501375 1635364588 2021-10-27 19:56:28 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.026891666 29.42217177 3924.31 Deposit | |
0xe53ca1be36bc36245671b16ee81b423606676e2d2153c8b0367483260767a2cf 13503443 1635393463 2021-10-28 03:57:43 0xd7181d038545144aff736c975e00a79dd7838771 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02419974715 26.47694336 4288.22 Deposit | |
0x0f637e21ed70eedcdffac6d96472901711309be03faacde98379f81311378d01 13503447 1635393525 2021-10-28 03:58:45 0xd7181d038545144aff736c975e00a79dd7838771 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01406586859 15.38946683 4288.22 Increase Custody Allowance | |
0x06945974233970975d0df0f57593052cd390fcd642f41bda0d7ddac9b4d6e71d 13503613 1635395894 2021-10-28 04:38:14 0x4c4b17543e24106201b3f7c888918c5a478bdb3b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03042845737 33.29177521 4288.22 Deposit | |
0xf2e38d286723578cf623db2ec9c3ec7992039bbb743bcc4167ebe2228b9604bf 13503661 1635396452 2021-10-28 04:47:32 0x4c4b17543e24106201b3f7c888918c5a478bdb3b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01096534852 11.99718782 4288.22 Increase Custody Allowance | |
0x54280646c58d22178f26c64a123ddc78f8f3a96ffd9220c30c74e295ae7fe6a2 13505468 1635420784 2021-10-28 11:33:04 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1973535211 215.9244874 4288.22 Fund Loan | |
0x30860bef55752efed48a60a9456a9a1b814fe83a12dbae74eedc4b8d72a0b8fe 13505474 1635420885 2021-10-28 11:34:45 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.2006943967 219.5797395 4288.22 Fund Loan | |
0xe0c335aff79d74e972d20fd3ba2e43dd4e9ca716018606ff96691a05401921d1 13508029 1635455496 2021-10-28 21:11:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.08747924866 95.71104596 4288.22 Claim | |
0x27f36c4192e7180d5b15b27a8fe87d6462452012f2196fa6d2df6a387f401f36 13508033 1635455563 2021-10-28 21:12:43 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.08131338686 88.96497656 4288.22 Claim | |
0x945d65b9100baf72123a245314fbc30afc597a5cce9a3c14f7018807c7e5f6de 13508034 1635455576 2021-10-28 21:12:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07983822901 87.35100636 4288.22 Claim | |
0x519cf16af11c3c360bd5052bcc2cf672c8f11894a8e5191f58d6bce183ae4358 13508043 1635455699 2021-10-28 21:14:59 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009966034702 10.90383857 4288.22 Set Liquidity Cap | |
0xeaa97f97cbb2dfa857d92c2a418912af5c663792592ecc1eb6b9ade01fc2fd14 13509486 1635474626 2021-10-29 02:30:26 0x12b5c9191e186658841f2431943c47278f68e075 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0271781874 29.73565483 4417.4 Deposit | |
0x5c1ffc3e900581a4672169750c814b81dc6004b87c667bd60041e3ab06d028e8 13509507 1635474881 2021-10-29 02:34:41 0x12b5c9191e186658841f2431943c47278f68e075 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01726578179 18.89049186 4417.4 Increase Custody Allowance | |
0x024d5b8750f684eb78e1a57c41c8f1b24f127810f6e4181df08473f407d01fae 13510298 1635485755 2021-10-29 05:35:55 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02045674501 22.38172471 4417.4 Withdraw Funds | |
0xadf28b199e8f4ea88e3b871c38828efc86855a6331cb5526ea75ba9133eb8016 13512484 1635516171 2021-10-29 14:02:51 0x391891af67e29d97e61e30c3036a0874f5da411e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01092286694 11.95070872 4417.4 Intend To Withdraw | |
0x176975c2d7221c2df7d8fda6014d395945ed988eeb02f096d307d08d0061c121 13516067 1635563492 2021-10-30 03:11:32 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0109708384 12.00319429 4323.94 Withdraw Funds | |
0x2ea8215da96a7b7afb009bae532421b17afca795e8c766fc12d328ffce566897 13519804 1635615083 2021-10-30 17:31:23 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02258518416 24.71044999 4323.94 Deposit | |
0x1c1fc4c216f7e9764cec06619aacd1c16b8a53f4cfebd4ab15a8b91b7f737ee0 13519813 1635615179 2021-10-30 17:32:59 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009720234824 10.63490892 4323.94 Increase Custody Allowance | |
0x921266696fb2e5d6a164d331781687991432fc995688f1281f9d3a4973083c0a 13524103 1635673887 2021-10-31 09:51:27 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01086361946 11.88588605 4290.1 Withdraw Funds | |
0x91684bdfcaf28713365d4f0fcec4bb50130275772483ece2c73fd7ff4b911b44 13525868 1635697542 2021-10-31 16:25:42 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01273383983 13.93209416 4290.1 Withdraw Funds | |
0x497d50705a1387f6aa18523cc90f98a7f06741f1b2afaf75fc435e78ba9e9b5e 13533902 1635806131 2021-11-01 22:35:31 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.018010748 19.70555939 4322.79 Withdraw Funds | |
0x2a7d39175441b8ab3ddbb67c456f7b3d2433213edf3985a7bb61f5e2920deead 13536552 1635842509 2021-11-02 08:41:49 0x397a4fd6cb0f6c9509521b6f3a9f3541fc5664f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02437594393 26.66972026 4593.15 Deposit | |
0x97c3f9b7ee7a253682897612bf2a67f17aefba971b775c69bad8603a4bfb321a 13536555 1635842579 2021-11-02 08:42:59 0x397a4fd6cb0f6c9509521b6f3a9f3541fc5664f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01026157656 11.22719092 4593.15 Increase Custody Allowance | |
0x5ba588208ac3672ffa88a221729b0efbbbb7c2818a2c284b4d176ca94e97bd0c 13537020 1635849270 2021-11-02 10:34:30 0xc32d7f8b71b6f79c9c2d0df200fc76fd6028d215 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01271861293 13.9154344 4593.15 Withdraw Funds | |
0x31b1d1a0967e8194b593cea2c083e0dec024ccd2d834f18d4114adb350224dfb 13537039 1635849570 2021-11-02 10:39:30 0xc32d7f8b71b6f79c9c2d0df200fc76fd6028d215 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006346377844 6.943571999 4593.15 Intend To Withdraw | |
0x09b4bb2dde57ac919ab9e17afc83b78e669146d9d9735990aad02c27eb53ccb9 13537170 1635851231 2021-11-02 11:07:11 0xad91bae71e4569ec5ff09be170e223cc6b388ab0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02509851686 27.46028729 4593.15 Withdraw | |
0x775ceccc162f402bb92ec9adb8b003ac6966668429b09280b58b54dda3bc8f90 13537876 1635860959 2021-11-02 13:49:19 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0300795734 32.91006125 4593.15 Deposit | |
0x21aa802074190391364b69097e0263988b132fa023699f0da4dc2b96efc79025 13537941 1635861834 2021-11-02 14:03:54 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01195573788 13.08077281 4593.15 Increase Custody Allowance | |
0x4c07146d250a8087590b923855791a2b9b4b10dfd66cebedf7f4d2532f63b37b 13538409 1635868115 2021-11-02 15:48:35 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02180220746 23.85379519 4593.15 Deposit | |
0xde2dee5a52a78388f2cf4e5c7cacea42cad759ae0d795519ac1f323aeda417b9 13538420 1635868193 2021-11-02 15:49:53 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006592032397 7.212342645 4593.15 Increase Custody Allowance | |
0x5699ad1fbc18faaeaa448c7ccff76f8789bb5fae700f7e3167754ac8822e4988 13542855 1635928472 2021-11-03 08:34:32 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003319331795 3.631680917 4604.4 Intend To Withdraw | |
0x08c334223901215cf24811d1ae42b6ae628d728d0a361fa0f305d2e12de5a9ac 13542880 1635928806 2021-11-03 08:40:06 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008704091071 9.52314604 4604.4 Increase Custody Allowance | |
0xcf3d35c879863577220c3e70cecf56be9d19b908fab65c50f5451bb6f29008fb 13544145 1635946525 2021-11-03 13:35:25 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02547733891 27.8747565 4604.4 Deposit | |
0xd0518598faf87bb3c5d637ad8aefb79756d69885d32032674a6bf4a6b23033ef 13544194 1635947193 2021-11-03 13:46:33 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00696078992 7.615800251 4604.4 Increase Custody Allowance | |
0x3a3c07a314a211081e6ea73d1baf2d249ea422d68ae89c12d12b22f4339cc359 13552166 1636055363 2021-11-04 19:49:23 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0130828548 14.31395144 4536.99 Deposit | |
0xb375af81d3de7bce163713359521fdf6964e6a2a04d91f0266ecd6f9c714671e 13552169 1636055390 2021-11-04 19:49:50 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004942913192 5.408041323 4536.99 Increase Custody Allowance | |
0xc71b23532f7161eb642c77126d936b56fdd5a45f165599429fe36c1de800e07b 13552255 1636056591 2021-11-04 20:09:51 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01562318265 17.09332413 4536.99 Deposit | |
0xaaa514dd6151439ee6bedbbc2db992e3ca83d870914e884c65569139d015fd30 13552262 1636056649 2021-11-04 20:10:49 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004877715956 5.336709028 4536.99 Increase Custody Allowance | |
0x633b4b7cca6d68f2a9853c6d5f714dfe0a3e734d8625bf575ed3dd3493f28ea6 13554519 1636087249 2021-11-05 04:40:49 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011568508 12.6571046 4480.09 Deposit | |
0x9f81ec49d0ed863697f9cfcf5e2a3d2f7cae01ffbbdf79626fd5af0a95215c07 13554529 1636087399 2021-11-05 04:43:19 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004175 4.5678675 4480.09 Increase Custody Allowance | |
0x868c210e32f1edcc7270262fe3d280f63d2e3e2101fa67856eaba0e266055113 13555614 1636102157 2021-11-05 08:49:17 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01534963102 16.7940313 4480.09 Deposit | |
0xb8d12c18332c5e7d081b0dc374974f26bc8e708b7db54d15196942ee0a26197e 13556561 1636114969 2021-11-05 12:22:49 0xc78bca0d880b645b3296627ee44649b2049f0fda 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008049428 8.806879175 4480.09 Increase Custody Allowance | |
0xdfd624bbdcda7843a083da1a97a2ad585d664c94e19363e49f55d77a197b0bf0 13557617 1636129081 2021-11-05 16:18:01 0x391a1f7eaf6b8021e9f5830c9065de0d57178665 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02890969768 31.63010023 4480.09 Deposit | |
0x3e87f545049676fb14af33e2381f9b198e712f61453cf11f45fe83920113fe68 13557630 1636129191 2021-11-05 16:19:51 0x391a1f7eaf6b8021e9f5830c9065de0d57178665 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0107346706 11.74480311 4480.09 Increase Custody Allowance | |
0x22f21b6a6ddc20f017dab6d2569a11aeb0fe8f75695fec9d0ec0edbcd89d1f67 13558780 1636144593 2021-11-05 20:36:33 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005143928 5.627971625 4480.09 Intend To Withdraw | |
0xe599a5dd8ae33c77fa60f6b6f43ef90e5124a207b8baae2c9b8203324889f5ff 13558788 1636144706 2021-11-05 20:38:26 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011656464 12.75333726 4480.09 Withdraw Funds | |
0x85b6b20189c533c3865d8572c4f586d10ac85d968b1923513c2960456df18154 13559174 1636149666 2021-11-05 22:01:06 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1440224697 157.5749841 4480.09 Fund Loan | |
0xe7c0ff621adf06c9d8f3e0d8c0a72e72118dee0a4166fd32839448134554f3f1 13562540 1636195742 2021-11-06 10:49:02 0x72c2fc6963cd8e7577ce3a125afd1153c88ed7b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01153271407 12.61794246 4521.41 Deposit | |
0xba04291d56c7c5b57697e9a986932f48bb0b95d51b92821bf2102f9f7e9a76e3 13562544 1636195800 2021-11-06 10:50:00 0x72c2fc6963cd8e7577ce3a125afd1153c88ed7b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005919647704 6.476686553 4521.41 Increase Custody Allowance | |
0x0f6bc1bacb3bc7b27356df01982c6d54f0698e98ca5fc2b1d0f717b5fa5b0a1e 13562995 1636202212 2021-11-06 12:36:52 0xa093284c707e207c36e3fef9e0b6325fd9d0e33b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009889911467 10.82055214 4521.41 Deposit | |
0x62bc53df8c752e523c349dfbc62bdd8b0573a628cd97c016c21d9369eaa626cd 13563013 1636202424 2021-11-06 12:40:24 0xa093284c707e207c36e3fef9e0b6325fd9d0e33b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003474435354 3.801379721 4521.41 Increase Custody Allowance | |
0x887c18e66866a55544af1334071eed4b443045fbf2f1b5932fdcfe049002107b 13564602 1636223629 2021-11-06 18:33:49 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01411644483 15.44480229 4521.41 Deposit | |
0x3bd99208dd5c7a084a1590701edb8029ce47b0f30faddb7ffee30693f4c8f5c9 13564611 1636223732 2021-11-06 18:35:32 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004377043745 4.788923562 4521.41 Increase Custody Allowance | |
0x8f44420878fc98911b39592ce3c7d2d5293586b39541694b791ee116e8bb1638 13565057 1636229983 2021-11-06 20:19:43 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01218320478 13.32964434 4521.41 Deposit | |
0xf4963bf9d798c94a4e55c89a9c58318344e3a5363e042cd81dc4b51225813046 13565064 1636230066 2021-11-06 20:21:06 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004325287696 4.732297268 4521.41 Increase Custody Allowance | |
0x1028a5896627667a84c5b277b0bb02218cf439a8e7dc329c4740f1304f100162 13569170 1636285406 2021-11-07 11:43:26 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008830957457 9.661950553 4617.13 Withdraw Funds | |
0x281125f3e8011d192fb3db0868b06a166bc26b92d8b11ad48210b3f014b2682b 13570211 1636299621 2021-11-07 15:40:21 0xd7f87ccc655f4d771bf518345036a30fd5388366 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005236797731 5.729580397 4617.13 Intend To Withdraw | |
0x69d10c9f8c000af429a7871ca8071fc5e890a50d0bfa67efca334f35d3f0d2f8 13570220 1636299777 2021-11-07 15:42:57 0xd7f87ccc655f4d771bf518345036a30fd5388366 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008287178653 9.067002164 4617.13 Increase Custody Allowance | |
0xb7e5a28d92ca0aadeed074f982dd39788ad9cfd82690074bfd746f4deca4ba51 13570784 1636307371 2021-11-07 17:49:31 0x97046649f299f47bf1577d04fe0ee3116eb2ba94 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005667306101 6.200599605 4617.13 Intend To Withdraw | |
0xcd7bda74bccbdbf52a1226f65ee7af2be42fd49977514703b78ba20a75eed26b 13571285 1636313722 2021-11-07 19:35:22 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01807386121 19.77461154 4617.13 Deposit | |
0xb4d9ca1da241e6a2610034d604511d94d7d13f172af0376d579912b62a9b5576 13571299 1636313949 2021-11-07 19:39:09 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008861299125 9.695147373 4617.13 Increase Custody Allowance | |
0x096a25d2ec7081b9ca6e587cf913ca19412bac025d54209a563f8ea0640b8461 13571415 1636315287 2021-11-07 20:01:27 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010150924 11.10612595 4617.13 Deposit | |
0xcd038fec7e35d6218fdf5c817ace0eac601124aaebd533c05a4c74c03e92821e 13571422 1636315361 2021-11-07 20:02:41 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003631206 3.972902485 4617.13 Increase Custody Allowance | |
0xa1d5cf7d4ea7ae090524d0a55b32e427b0aa7c4e24d9ebe818601a3c0adf6885 13572021 1636323131 2021-11-07 22:12:11 0x7736bb1e1d8224b72cf40048d1102eb68b30b6e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.021505418 23.52907783 4617.13 Deposit | |
0x2b3e396055dd66786cd9c62eb80985b7db38700fba9543f1e8145aff0022a150 13574239 1636353071 2021-11-08 06:31:11 0x7736bb1e1d8224b72cf40048d1102eb68b30b6e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005619412 6.148198669 4810.97 Increase Custody Allowance | |
0xdb2d4e503642d7be1b858900f25473ab0dc9be7d9982056be3f474e72ceeddbd 13576847 1636388942 2021-11-08 16:29:02 0x391891af67e29d97e61e30c3036a0874f5da411e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02535587873 27.74186692 4810.97 Withdraw | |
0x59ea024cb472a7bc19c8c0123976061be56ab4b25b1ec694ceee06ffdb77f782 13581463 1636451365 2021-11-09 09:49:25 0xd1e1c014323347ed36db2dd10d687e0c6b16189f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01821222684 19.92599739 4732.07 Deposit | |
0xf317de5ec9dfc6effe3d7bb367780e06efabb290ea1f5f05be5b207bb09df3b0 13581475 1636451506 2021-11-09 09:51:46 0xd1e1c014323347ed36db2dd10d687e0c6b16189f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008754699024 9.578516202 4732.07 Increase Custody Allowance | |
0xb1b343b081ca79a9de0e54423fa76876f5ac4879c96bbc733e434b49f94faef5 13581694 1636454700 2021-11-09 10:45:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04433876875 48.51104689 4732.07 Claim | |
0xfd7420199d61be760a80ffc6eae4bcc2b54b2c8b83061ce8bb25268c6ddeba72 13581694 1636454700 2021-11-09 10:45:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04433876875 48.51104689 4732.07 Claim | |
0xc5880f976c3943fe2235737fd4136e336a0d0a2e284a635c56853f9f679c56d1 13581696 1636454726 2021-11-09 10:45:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04317593932 47.23879521 4732.07 Claim | |
0xa27673f6b5d6c0a044d784294c2ae0177d14c3001010def9056593f1246ee21d 13581696 1636454726 2021-11-09 10:45:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03958564125 43.31065009 4732.07 Claim | |
0x5edb30d63fc2daa1878b7cdafcccd50bcbeb88f3726777a907c19a41a9a93f7b 13581707 1636454841 2021-11-09 10:47:21 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03610486467 39.50233244 4732.07 Claim | |
0xae8f91b02b31f245e2e7e6d997037678060e5d91109d870f68999da17935eefd 13581707 1636454841 2021-11-09 10:47:21 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03598551291 39.37174968 4732.07 Claim | |
0x51cbe41931c86624db2bd2ad5837e9eafd81e33af88cf42ae0fdfec5f02023ab 13581709 1636454881 2021-11-09 10:48:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03765006185 41.19293267 4732.07 Claim | |
0x0b22cbf13a3069a8d644421634206e4d5097deb80a9fe3c18e136a8ac3dc0bb7 13581710 1636454899 2021-11-09 10:48:19 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03460914053 37.86586065 4732.07 Claim | |
0x81e0135239c1ce9c3e5e752998760e604ad6243a4ac122f8f46505f4b8c78653 13582096 1636460141 2021-11-09 12:15:41 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005066323878 5.543064955 4732.07 Increase Custody Allowance | |
0xe408e0393d5285882dd4ee146b663c5a7c10e9a23ed166e77c7fd96d5a57f5c1 13583066 1636473390 2021-11-09 15:56:30 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1877087953 205.3721929 4732.07 Fund Loan | |
0x78ba66de03feb4746e64fe455918cbc2f73d80dcf28e4509568a487db652a322 13583460 1636478497 2021-11-09 17:21:37 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03089880484 33.80638238 4732.07 Deposit | |
0x700c95eed7cd3bb1dc97c1c381a80cd50e45224b8c317f2848ea9f6b1fea62de 13583485 1636478811 2021-11-09 17:26:51 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01941191238 21.23857334 4732.07 Deposit | |
0x899b0ef93e9b2b2a347823844a0b738197cd7ce3bcdd57bd9ac3f51813655fb7 13583500 1636479041 2021-11-09 17:30:41 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01300300829 14.22659137 4732.07 Error(0) Reverted Deposit | |
0xb1262e27925fe0de2a7cb2de436d455a0159585959c5cbefddd133ba97279c2b 13583508 1636479086 2021-11-09 17:31:26 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01320793014 14.45079636 4732.07 Increase Custody Allowance | |
0x21ca95c00879102e0c3891339aea1ce9104da1a6e10a0674c373591f448c3998 13586225 1636516243 2021-11-10 03:50:43 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01548722212 16.94456972 4632.98 Withdraw Funds | |
0x4e1d5af77fe13657a5c967311c0ac15c51bd5ca85f714944cada164b9bb9ff2b 13591539 1636587952 2021-11-10 23:45:52 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.016300096 17.83393503 4632.98 Withdraw Funds | |
0x3b58a492b131cdd74832bf00622cc582d6ce749af9edbd9fb515e6a0015d11cd 13593335 1636612084 2021-11-11 06:28:04 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0130087939 14.23292141 4722.68 Deposit | |
0xda9b7d7d6242adcd90878ac2d214374c2d9b11d89336ee06779116d51583b7a5 13593344 1636612253 2021-11-11 06:30:53 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005336848706 5.83904617 4722.68 Increase Custody Allowance | |
0x81484d9ca9ec4e87f019436790b8769a0ea5661e9858570572c3e3e451023d6c 13593629 1636616425 2021-11-11 07:40:25 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01662024775 18.18421306 4722.68 Deposit | |
0xb9f4b98a9097d19fcf700c74d22bfddd17bef6bb9e7e180ee966ab73484ff6b9 13593639 1636616529 2021-11-11 07:42:09 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005092401796 5.571596805 4722.68 Increase Custody Allowance | |
0xda9f7b00f389fe401155dd685a9977ec4cd5a8bf99f6c037a08e921fd2ca4195 13594110 1636622944 2021-11-11 09:29:04 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01232061873 13.47998895 4722.68 Deposit | |
0x048995da1d1b8600cecb6999f898320b0e5ea66a18fcfc6664858d5d431e9ab5 13594113 1636623011 2021-11-11 09:30:11 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005482167499 5.99803946 4722.68 Increase Custody Allowance | |
0xb830db8dd560307d6dee48db26cf284d2c3d0ac335decdad61f0da394f7aca78 13597099 1636663477 2021-11-11 20:44:37 0x3d57b83154423edb0ba0e747b03858e69075fca1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03997516778 43.73683107 4722.68 Deposit | |
0x3371591a604836d0e28c3b9bc8fae5d9093f41ea97f67119d6adff009c4a026d 13598550 1636682861 2021-11-12 02:07:41 0x0091ba2b0ce0d1b279a661a2de11701a3cda57c7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00802764053 8.783041504 4668.7 Intend To Withdraw | |
0x7e7ad9083861e9aed6e04ee7871ae7a72310f31139e583ec500de1cc800b253d 13600954 1636715365 2021-11-12 11:09:25 0xc32d7f8b71b6f79c9c2d0df200fc76fd6028d215 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02228917035 24.38658128 4668.7 Withdraw | |
0x65f4768aeb52b33b2167d2cc5aa9ee402f2a2684b39693361a003e6d6425fecf 13602156 1636731735 2021-11-12 15:42:15 0xd05471d614a7b0d1fcda75c40dfb61cb4af2758d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01091818979 11.94559145 4668.7 Deposit | |
0x09853cc39b3849e18a033f0e19a9e9266a8c4b80243275bfb475201faf053cf6 13602159 1636731788 2021-11-12 15:43:08 0xd05471d614a7b0d1fcda75c40dfb61cb4af2758d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004811838512 5.264632516 4668.7 Increase Custody Allowance | |
0x1fe6ad3b7b1acf0caa51c4155dcd4e04d0376d4e7605f601a82dc8c6092223b7 13607408 1636802862 2021-11-13 11:27:42 0x044a9c43e95aa9fd28eea25131a62b602d304f1f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004558294353 4.987229852 4645.64 Intend To Withdraw | |
0x6149b38b9fffee1ab3bfbedc61189cf9cb238e449686d9142210ae9eb620e5ab 13607495 1636803925 2021-11-13 11:45:25 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009234152371 10.10308611 4645.64 Withdraw Funds | |
0xba795b8bd013eb0772204de19ccc24f45f88aa519820a4cc300bb2504c805ef3 13608073 1636811781 2021-11-13 13:56:21 0x2e84988e2c221a1a5bdd8dc25ca405b4a42f119e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01810311171 19.80661453 4645.64 Deposit | |
0x3e3d7528b312a7d8c59cab5be84823fc34bc6021d2e859e8034c8356f1cf4a0a 13608079 1636811858 2021-11-13 13:57:38 0x2e84988e2c221a1a5bdd8dc25ca405b4a42f119e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008437919191 9.231927386 4645.64 Increase Custody Allowance | |
0x2fdde54db59c9fddec715dc25824a62ec43c007ad345c7e4f3b606e621fb8f96 13613040 1636880367 2021-11-14 08:59:27 0x401c775cc760f227530e2a663b23f98f2fd911c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01337275878 14.63113538 4627.5 Withdraw | |
0x512d5c301b6e911a7e966d905a054e4547d945d8f115eee152dba91f253c0be4 13613223 1636882616 2021-11-14 09:36:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02088327094 22.84838673 4627.5 Claim | |
0xa82b472a3313a29f100339828b2e480e8fe11d0b19fb2637a1d20031c44b3b18 13613224 1636882627 2021-11-14 09:37:07 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02502274052 27.3773804 4627.5 Claim | |
0xd539bae68729f3edd98c6e65d7778df448ef4b8854dafbe5227ef6c7714d8781 13613226 1636882657 2021-11-14 09:37:37 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02313002093 25.3065559 4627.5 Claim | |
0x98ddeb6facff75bdf750e652025a0ac184adde3d46d4c5ea220a620c1b82c43f 13613782 1636890201 2021-11-14 11:43:21 0x9f82226aae1f6900047da20c30dc836587157e03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007297136 7.983796498 4627.5 Withdraw Funds | |
0x29d4a02b4bd0b59a18684e383c0cb7f77805ede5645052a0f705101b9f0aec10 13614085 1636894210 2021-11-14 12:50:10 0x7f1239685deec22330da51039dbb074c782c5345 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01621141713 17.73691148 4627.5 Deposit | |
0x9e1b0885629c9dc181da6100d24644b1d33912e9099559d85510f4b05389adb3 13614091 1636894314 2021-11-14 12:51:54 0x7f1239685deec22330da51039dbb074c782c5345 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008542341616 9.346175962 4627.5 Increase Custody Allowance | |
0x8cf675d78bd854ac3239cd1f14a859a918566465e3776bfd23d7ef2dc08aa682 13614901 1636905465 2021-11-14 15:57:45 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01276822474 13.96971469 4627.5 Deposit | |
0x55320e4ef761751d605a84f36f730cf8dddbb8d079f35c777a81807d2b149e5f 13614917 1636905613 2021-11-14 16:00:13 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003820471542 4.179977914 4627.5 Increase Custody Allowance | |
0xb2b5f62a87d7a6401088f63242a57204f390c4efbd37ea1aa3d0ff4708510a98 13618878 1636959585 2021-11-15 06:59:45 0xd2050719ea37325bdb6c18a85f6c442221811fac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01816618097 19.8756186 4561.38 Deposit | |
0x2b02fbac5344d1b765daed682e33242bdfab2cc9b701580b3805bd497da6fa8e 13620008 1636974840 2021-11-15 11:14:00 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011656464 12.75333726 4561.38 Withdraw Funds | |
0xccb9e04dcbb7633a39a685723fea83c94be3276ffd8247d2aff1b2afe0037148 13623943 1637028718 2021-11-16 02:11:58 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01933559732 21.15507703 4210.14 Withdraw Funds | |
0xfb1afdc42911b28c75f29dad391d93714c491dbd9cb09574e96ef6846e4d79ea 13626870 1637069550 2021-11-16 13:32:30 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007441924 8.142209048 4210.14 Increase Custody Allowance | |
0x10dc6d052e035daadfbd9b99ab319c68980b21da802039d00b70cb857cba1c1a 13626966 1637070955 2021-11-16 13:55:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.2054561046 224.789524 4210.14 Fund Loan | |
0xa8e6ea67531b2999ed74d9852cf7dbb2b390e0580107440a24d5c1590445679a 13628598 1637093117 2021-11-16 20:05:17 0x9f82226aae1f6900047da20c30dc836587157e03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007409144 8.10634445 4210.14 Intend To Withdraw | |
0x54c0a853b06012f4a96659fa6a10e9c939ac0464d5513c727ea940c6bbb753b9 13630526 1637119140 2021-11-17 03:19:00 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02036071265 22.27665571 4289.75 Deposit | |
0x9aae2370dd8bf47184e02501bca6457f304e5fc849c1dfa5d4a3d0ac35eb6189 13630528 1637119174 2021-11-17 03:19:34 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007510797208 8.217563226 4289.75 Increase Custody Allowance | |
0x0379c7f15aed1f907dae132f4ffd66461e65d3a4fc03be4918d73c30ed5c880f 13631027 1637126012 2021-11-17 05:13:32 0x25a5059213224aad7760b40e0009e2ffc2a4380e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01712346413 18.7347821 4289.75 Deposit | |
0x50cbeb13512b16c7e2020bc1e883d49430ad6f3e5492084969fe156fdd258d86 13632314 1637143719 2021-11-17 10:08:39 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01151413013 12.59760977 4289.75 Deposit | |
0x3815885bcf179fa080266a55f8a4585a530be67bc7439e4c6320524fda051ae9 13632322 1637143843 2021-11-17 10:10:43 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004265064308 4.66640686 4289.75 Increase Custody Allowance | |
0x22f0f0871d41f3c181cbd7c55a132a59912ddeaf352db7de94b6bafc32759c4f 13632546 1637146873 2021-11-17 11:01:13 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01287566295 14.08726283 4289.75 Deposit | |
0xe7459b5837de98b5f0dd44b06be18eabddd119a6c3ac4a4151feb7a6bc1458ab 13632548 1637146916 2021-11-17 11:01:56 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004694842205 5.136626857 4289.75 Increase Custody Allowance | |
0x61522d1c8aaa6b2f4532b598c9cacd282767104c0c33650896850b3c3573e9d7 13636243 1637196601 2021-11-18 00:50:01 0x97046649f299f47bf1577d04fe0ee3116eb2ba94 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02566400054 28.07898299 3998.17 Withdraw | |
0x351c5e825143b807f0c7e83bb4e7d28545abf827f56dfce0a2e508a9da402654 13637098 1637208100 2021-11-18 04:01:40 0xe519f4cd2803ba53a40e6377e82406e548418660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004784376732 5.234586582 3998.17 Intend To Withdraw | |
0x4fa0fddf35cdda15d9218c200685a23c38e7539cdd6221b411bbf7c58813ac94 13638715 1637230362 2021-11-18 10:12:42 0x03ad685de7409196894c65f97ced0185170b958b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01736515902 18.99922049 3998.17 Deposit | |
0x63aa6aee5ded33133c08cca8e7f2c926785ac67d87b24be4f48abbdf8b7a632e 13638741 1637230672 2021-11-18 10:17:52 0x03ad685de7409196894c65f97ced0185170b958b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006653743566 7.279860835 3998.17 Increase Custody Allowance | |
0x8f47b1c377c3758dc5aae08a29aef45094d10913d4f8effbac27d2b1068bc5e2 13642482 1637281200 2021-11-19 00:20:00 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01648902151 18.04063844 4299.27 Deposit | |
0x4a187edcfe119f85a92210e6fab5501363d37e2ff02f8886c2439f2aa810e278 13642491 1637281297 2021-11-19 00:21:37 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005183903607 5.671708937 4299.27 Increase Custody Allowance | |
0xd8d7f5a0fb284be33c7ad153196b452a4c9278feba89dd4ca34b0ce6addcea16 13644828 1637313908 2021-11-19 09:25:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02546619208 27.86256075 4299.27 Claim | |
0x5305c78122553fa25c1ebe33ca75049d53b2cb0d9f0e7503ca9b43b4398273dc 13644828 1637313908 2021-11-19 09:25:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02546619208 27.86256075 4299.27 Claim | |
0x70773f509ffc1a7e00606efd191278b4897f25fcc534c210c2c271f9b33358bd 13644831 1637313998 2021-11-19 09:26:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02907355676 31.80937845 4299.27 Claim | |
0x9f88a593de2d939d2ae28852ad106d8a2e5ad92378474e63555d7699a2c823fc 13644831 1637313998 2021-11-19 09:26:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03102968502 33.94957838 4299.27 Claim | |
0xb54ace28e5fb9d1e516e804131379fcb78d196afe21d8cfc27b2835108ec5813 13644831 1637313998 2021-11-19 09:26:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03102968502 33.94957838 4299.27 Claim | |
0x3e57538eb6505eba0d4021f00b6bb2cbfc9255c123d44ce188bfd6270e255a67 13644833 1637314032 2021-11-19 09:27:12 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02974182041 32.54052571 4299.27 Claim | |
0x695b29be9338ef468ddce1de99286fabdb8bdda644b7d5b49db691fcf0da13b7 13644939 1637315734 2021-11-19 09:55:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003778077301 4.133594375 4299.27 Set Liquidity Cap | |
0x09e83a571489482eec91a83f58f27c0b64057aeaeb2054c39fa146bdfb5d793f 13647177 1637347036 2021-11-19 18:37:16 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01242568151 13.59493814 4299.27 Withdraw Funds | |
0x275c67b41baa48024b02bc1190fd4b453290259b6e8694856febb9fff2bcac62 13647843 1637356439 2021-11-19 21:13:59 0xe3b206a0ed144cb558ade4699f3aa322b8d5d08e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01825626454 19.97417903 4299.27 Deposit | |
0x65efaaecf9c43003c231adbb99a3f286f4bdb85de3da719ac4e8cf4b4846f660 13648133 1637360276 2021-11-19 22:17:56 0xe3b206a0ed144cb558ade4699f3aa322b8d5d08e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005770238301 6.313217725 4299.27 Increase Custody Allowance | |
0x65a621236ae706fb0840d11f1d2ce4be91938f5cd6e61853cc638fef21e907a7 13648833 1637369099 2021-11-20 00:44:59 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0110308249 12.06882553 4415.72 Deposit | |
0xd968fd15950c09d6ba32f6af1c9d9e95ba241eaf06b1259cb41084fce9271f98 13648838 1637369173 2021-11-20 00:46:13 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004350088718 4.759432067 4415.72 Increase Custody Allowance | |
0x2b1337dd085dc797e9885e64c0b1d17315aa975d70953b03062404324a24958d 13648853 1637369332 2021-11-20 00:48:52 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01520946747 16.64067836 4415.72 Deposit | |
0xeeffdaf452e13bd69d6757ef3de30505ef7f35c78053e6ca53b42a9ef49a0f18 13648862 1637369494 2021-11-20 00:51:34 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007859794556 8.599401223 4415.72 Increase Custody Allowance | |
0xb33e6dce96621e0a7b0864c8003ebec0c0d54e1f6fbf7a5285c10f93f817279a 13650158 1637387913 2021-11-20 05:58:33 0x2fc2f705110a7f46ce85f701d7217ef1018f01a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006034147142 6.601960388 4415.72 Increase Custody Allowance | |
0xf810457d7f2a7c778b704ec36b23367e393a0dd4e06fb8193228dce6abaf66f1 13650798 1637396498 2021-11-20 08:21:38 0xc78bf98a0deb8a85974fb9b7b3a0e2498447c4dd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01284619698 14.05502412 4415.72 Withdraw Funds | |
0xb9015c8e2f9e155d8cc9479b946998a33f31b60b6f380bbb80e6dea10631b369 13652497 1637419584 2021-11-20 14:46:24 0x32ad379d17a523c79cba370a2bd645637ed4f4af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01505829848 16.47528437 4415.72 Deposit | |
0x032c5fc3443c88b37e601371b540aea7f521a03c7fe3451ad9002d377d735c1d 13652526 1637420039 2021-11-20 14:53:59 0x32ad379d17a523c79cba370a2bd645637ed4f4af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008103156114 8.865663105 4415.72 Increase Custody Allowance | |
0x50015d3db573deb96c52a75e22f959e9c03313f9a26a8278c96c850f6083b2b0 13653996 1637439996 2021-11-20 20:26:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1537570037 168.2255377 4415.72 Fund Loan | |
0x92d5c29e46d0816e09a05e9dc7b01e3ae3add55c85ab80c6c3c53c167ac67f13 13654349 1637445337 2021-11-20 21:55:37 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01221288784 13.36212058 4415.72 Deposit | |
0xc4e9d1e9fec472bca92de616f2cb872a4a4f183c4899d9da6c9c8c8c768c1f95 13654355 1637445395 2021-11-20 21:56:35 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00392191879 4.290971349 4415.72 Increase Custody Allowance | |
0x1257de1bb9f9e3dae2f9cebdca2240184cb8567a9f75d3d7ccf44784a7e59d62 13654571 1637448102 2021-11-20 22:41:42 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01131186027 12.37630632 4415.72 Deposit | |
0x7850ca54db374aad95a8375ed969ae0d464abaa37cb1a6e982f8b40c90108050 13654576 1637448220 2021-11-20 22:43:40 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004768166222 5.216850664 4415.72 Increase Custody Allowance | |
0xbbc019ba42f3aef3bdb9f570e9c1b3a7a6f4cccafaf018c30919fb74e4759951 13655324 1637458571 2021-11-21 01:36:11 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009862493462 10.7905541 4264.61 Deposit | |
0x37d69b1e8e010bdbc6b31cc482e24a9e1edc1797ca623ad715040e27168bef0f 13655325 1637458578 2021-11-21 01:36:18 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003960766627 4.333474767 4264.61 Increase Custody Allowance | |
0x662939075fd0c849a8472263e49982d528294fbe17ba9fe7877a13c0e5c07ddc 13655466 1637460442 2021-11-21 02:07:22 0xf0fbfdcc322893f9d6e9c661ece8ac8e953c8a07 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01365484935 14.93977067 4264.61 Deposit | |
0xd770c22b138febc0c5d182092fba7e22a28b709714329e8fe13a2b54f4b1b250 13655529 1637461508 2021-11-21 02:25:08 0xf0fbfdcc322893f9d6e9c661ece8ac8e953c8a07 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007550531587 8.26103661 4264.61 Increase Custody Allowance | |
0x11bf803a158b063082ff6092e6d1b5cdda336bcbcb125682216b61362642e23b 13656594 1637476556 2021-11-21 06:35:56 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008890336566 9.726917237 4264.61 Withdraw Funds | |
0xa8dfd01d5b729f5bc19c08757a21d6311be37b4855d4664b7b9a0762faab1f4a 13657012 1637482408 2021-11-21 08:13:28 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008600336664 9.409628344 4264.61 Withdraw Funds | |
0xbf12579c4b7e2a0f6b31f737e26ce72fbc0ee09a5c1976a6878602d550ae90d8 13657260 1637485504 2021-11-21 09:05:04 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006348206479 6.945572708 4264.61 Withdraw Funds | |
0x8bfe8ad4bbc2e55ef2e9b27ad3a3e7eea3b045f0e3a24ce716aa48ccb64aeb17 13658867 1637507042 2021-11-21 15:04:02 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009508094248 10.40280592 4264.61 Withdraw Funds | |
0x6a6612a4f17763526a660149f312ba1f15f803b544456035364fac4a7483e915 13660355 1637527183 2021-11-21 20:39:43 0x9b80a5c4394cc9f2d13e7ad4983d6b26ab822ec1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.017568565 19.22176697 4264.61 Deposit | |
0x1fec9b9399cdb1d17e91e532168f79b4465a0f931aae8d0034d4576611916924 13660527 1637529739 2021-11-21 21:22:19 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01446288904 15.82384689 4264.61 Deposit | |
0xa74ea6113cf270f7e0a53b6621451c4ed651c0b3bf5cd4f15ab817fbb528f0da 13660545 1637530001 2021-11-21 21:26:41 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005677294199 6.211527583 4264.61 Increase Custody Allowance | |
0x24f9f8e0539baa8cc0a9e76f1a67d0a5937d4f95c72e8f9b807b48b28b76f529 13661854 1637548045 2021-11-22 02:27:25 0x0091ba2b0ce0d1b279a661a2de11701a3cda57c7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02738268939 29.95940046 4090.46 Withdraw | |
0xda4a782b7ed4c7046e9a04ac8d7dc59b7d9da330c1ddcc7c001a62fb12f0a336 13663241 1637567031 2021-11-22 07:43:51 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01136378836 12.43312084 4090.46 Withdraw Funds | |
0x2062383ae72a3c328ea4b4a747d7767a4f32efd8460ecccd49b4e37b4898f963 13663254 1637567202 2021-11-22 07:46:42 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005487805752 6.004208273 4090.46 Intend To Withdraw | |
0xfeeb6af3f66f8b13b0f851f309455870e5026fc70327d4218f98086e6de24e10 13664295 1637581199 2021-11-22 11:39:59 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.019812078 21.67639454 4090.46 Deposit | |
0xbbfb9053bb9783eb0a07391d8acc0b8020d9cdf528cdb314845e3a95b92210b7 13664301 1637581351 2021-11-22 11:42:31 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009644126 10.55163826 4090.46 Increase Custody Allowance | |
0x418634658938c128e3c80afa4d862e8d5189eec71fa8e17881db42e88acb650f 13664302 1637581413 2021-11-22 11:43:33 0xb85a2bbf5e3200a1957121b2e534a450deb5b741 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02057086852 22.50658725 4090.46 Deposit | |
0xe1a50ef1f368eaebff0df7d41706939bf9e3f0bfa75ecf629642230a8d3ac10d 13666468 1637611057 2021-11-22 19:57:37 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03771321976 41.26203374 4090.46 Claim | |
0x6a62c3f7d9d1a3fa2ed727aa8d0869b5ee21471c2a2ffe48c7ee7a42d3e35e04 13666471 1637611075 2021-11-22 19:57:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03132490753 34.27258133 4090.46 Claim | |
0xb4cd656a02c6232a8d31d6d7b37e14d764a279bd147ab70f880d0687f73ec642 13666820 1637615559 2021-11-22 21:12:39 0x05f13dbaaa5a5fe2fb27a60c431535c0190dfd3e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01717734984 18.79373846 4090.46 Deposit | |
0x9f2f577b5b8d10f0b5aea060bbc6d332fe8dac12d8885e6ae47aff6914700ccd 13666831 1637615677 2021-11-22 21:14:37 0x05f13dbaaa5a5fe2fb27a60c431535c0190dfd3e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005590241566 6.116283298 4090.46 Increase Custody Allowance | |
0xf5b7f704af4ba0dec47c6c7311581b9edbc2771a981c4222a3843c18717db165 13666866 1637616087 2021-11-22 21:21:27 0x5118b43f116543c03197eb94a53f2fe6d50ec9f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02432201864 26.61072059 4090.46 Deposit | |
0x5cc4f4067d45fff61c279a2e4296d981aff4c8bd68100fd6cb1eae9d9b1fda53 13666888 1637616486 2021-11-22 21:28:06 0x5118b43f116543c03197eb94a53f2fe6d50ec9f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01338217219 14.64143459 4090.46 Increase Custody Allowance | |
0x2da2072ea3d5a8528d82645fe73f71769e0bea1d0234e167c7b3ceeb3af099cd 13668619 1637640010 2021-11-23 04:00:10 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01468410248 16.06587652 4341.17 Withdraw Funds | |
0xc3d974a3a660c39bd36c953a9d355af0a3496ca63513adc9584ab56e11a7f309 13668635 1637640417 2021-11-23 04:06:57 0x08b1f1847efd58b7e39e8e9e45c674844e4ec844 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02759248569 30.18893859 4341.17 Deposit | |
0xd949a3284a67f3e795811554ba080e7a4ccc8f3f943b1a5012ea10100affbede 13668722 1637641565 2021-11-23 04:26:05 0x08b1f1847efd58b7e39e8e9e45c674844e4ec844 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009345405665 10.22480834 4341.17 Increase Custody Allowance | |
0xb4a961785e81484ee8c09a8254242692b6d55972270c4144afdf82ec87a272da 13670184 1637661252 2021-11-23 09:54:12 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01356612882 14.84270154 4341.17 Deposit | |
0x2313ecc68050404c055f84a7adf018d11560512fd158025b757d35eff2e962a7 13670189 1637661391 2021-11-23 09:56:31 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008147702569 8.914401381 4341.17 Increase Custody Allowance | |
0xdc6f2280d7492ec5b4920c7957ea3e485bc3b9f01520ecc252bde690ef398485 13670794 1637669918 2021-11-23 12:18:38 0x9b80a5c4394cc9f2d13e7ad4983d6b26ab822ec1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006071138127 6.642432225 4341.17 Increase Custody Allowance | |
0x9ecd5c307969085457f44cee2ba22ba3b623e21cdd7bcc056ed4fb4c77f388cc 13673121 1637701836 2021-11-23 21:10:36 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01237612522 13.5407186 4341.17 Withdraw Funds | |
0xf5a1cd8e896a85e78152ca54a7ad0b70c0867403af768b527479a93993824c35 13675733 1637736472 2021-11-24 06:47:52 0xc50eaaee441566b4ef4f1e3270d19f24223cddf4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00377536 4.130621376 4271.96 Intend To Withdraw | |
0x03b91b6684a438eb7d969cc864d917693998a53384d8ef375f0231f9016945c6 13676073 1637741062 2021-11-24 08:04:22 0xea93c16b2ed1cd73e6f9d5b5a92c36e504e8dc72 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006530668 7.145203859 4271.96 Increase Custody Allowance | |
0xce6eba2dc33b61401b20b56978f454c4b82d40eec040120935d2e2e0b234af11 13679376 1637786462 2021-11-24 20:41:02 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0141066914 15.43413106 4271.96 Deposit | |
0x4f8d80168e5be6e1f13f7c9a648618d7815e47b499d10e10237909d92c938a30 13679389 1637786614 2021-11-24 20:43:34 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005099681622 5.579561662 4271.96 Increase Custody Allowance | |
0x8884a788c9f56c442a4fe300d6dd0b7ad65e0eddf34f089de603510c623751dc 13679580 1637789510 2021-11-24 21:31:50 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0349823694 38.27421036 4271.96 Claim | |
0x64618072b3bfe60f22e91338bc3d4383822ae6b80fb4995eaa3cc8281538e819 13679580 1637789510 2021-11-24 21:31:50 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0349823694 38.27421036 4271.96 Claim | |
0x5e152bb8bcf77d3eb051ab913bc215b037a9fe1c6c38f91ca16d0dd0172e07da 13680185 1637797946 2021-11-24 23:52:26 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010963064 11.99468832 4271.96 Withdraw Funds | |
0x0c84b493a8ab662b8311e45bc7deaf5e4b5cc731f7124672180f8ab0c46c1736 13687822 1637903239 2021-11-26 05:07:19 0x009fdde3e654cb2495135708dc1590daefb14ea7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008723598 9.544488572 4042.55 Withdraw Funds | |
0x8c1dcaf242922da7adca9b7652f79734b6c05f8bd3ca9b3136358f4f45bd2bfe 13688287 1637909714 2021-11-26 06:55:14 0x3bfcd762365960738d60ccc3615a24ba99e3be36 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01719301264 18.81087513 4042.55 Deposit | |
0xbefaffddd8bae7faf717946cbba180eb62de4b3f31b51a9648f0b262aee4a5a8 13688296 1637909927 2021-11-26 06:58:47 0x3bfcd762365960738d60ccc3615a24ba99e3be36 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008842674164 9.674769802 4042.55 Increase Custody Allowance | |
0x0e143f3b4cce04cddcca9d5e3f49a55496476cc8e62c7a56824924a0123ae479 13690501 1637939565 2021-11-26 15:12:45 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009324479355 10.20191286 4042.55 Withdraw Funds | |
0x38c2648e2ba8dac0a1657451f5d7e8fef35ab4e26e7e8f0099c8a22b167916de 13690815 1637943942 2021-11-26 16:25:42 0xe3b206a0ed144cb558ade4699f3aa322b8d5d08e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01467554617 16.05651507 4042.55 Deposit | |
0xbb0a9880211861a50bc69f8ecd2c5b7c920d1dcd0c40990251098c425fe1d1b1 13690822 1637944015 2021-11-26 16:26:55 0xe3b206a0ed144cb558ade4699f3aa322b8d5d08e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004442712934 4.860772221 4042.55 Increase Custody Allowance | |
0x0316d7cf603ac2323e6c78de46781e60eb3e1d18e648c88da375971e4678d943 13691101 1637947723 2021-11-26 17:28:43 0xbc79d25d0f713f6ad95b38b4850d253ba9548bb5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02204097157 24.115027 4042.55 Deposit | |
0x48d1c5a9234c8df43a5f17dc0827fceeeb9b283f7a6727f2ddf9955692b2a736 13691107 1637947862 2021-11-26 17:31:02 0xbc79d25d0f713f6ad95b38b4850d253ba9548bb5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009585990987 10.48803274 4042.55 Increase Custody Allowance | |
0xaae7327a4b5dd366bad1246f1f4a0e8789c8389b51ac69391e4d335ef86e5ef6 13691767 1637956803 2021-11-26 20:00:03 0x8e70ca936a2f2d81cbbf1dc84aabe4213c87b8e9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012120454 13.26098872 4042.55 Withdraw Funds | |
0x7949ec43c1a535140d16f524e4019011126e32a2c39de8fd0269321b327bed49 13691840 1637957965 2021-11-26 20:19:25 0x9f82226aae1f6900047da20c30dc836587157e03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.015812685 17.30065866 4042.55 Withdraw | |
0xb67376c0dcaad8638e39d94542e114730a4bbb6867fe409a23fca3b9c13376f2 13692719 1637970791 2021-11-26 23:53:11 0xb85a2bbf5e3200a1957121b2e534a450deb5b741 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007206114745 7.884210143 4042.55 Increase Custody Allowance | |
0xa445a596bb4f4d766a1d8c5e3c75d24898ec72f45f658fed2c39b71637ae40c1 13693453 1637980438 2021-11-27 02:33:58 0xb85a2bbf5e3200a1957121b2e534a450deb5b741 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00964701137 10.55479514 4100.3 Deposit | |
0x893916b71c08047c0a37f9329af71bdab78f14470b1ae4bab3f66dffc97510a1 13693469 1637980620 2021-11-27 02:37:00 0xb85a2bbf5e3200a1957121b2e534a450deb5b741 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003957345472 4.329731681 4100.3 Increase Custody Allowance | |
0x34c1b3c3ff6390b58e23d9486d0a05c6e0e14b42495f64015fd660db61ecc198 13700521 1638076732 2021-11-28 05:18:52 0xffef59ed193185aa2ad61fe1c7c4afa17a8ca789 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01296707753 14.18727953 4297.92 Deposit | |
0x053e6c1e21d6f0cef77b5e5e9f26bf31e2c571ad433e059ff081a20ca85be4dd 13701796 1638094125 2021-11-28 10:08:45 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005603518286 6.130809357 4297.92 Withdraw Funds | |
0x0019d0efbf5cd222af743be8fde82ec50c2697f0ee3938e48e2858b4672ab8fd 13701865 1638095119 2021-11-28 10:25:19 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01238501738 13.55044751 4297.92 Deposit | |
0x281ebc00f493e0fe0f322668599e720752148a38820c1088c95f0fe67a6b5205 13701890 1638095398 2021-11-28 10:29:58 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003897554899 4.264314815 4297.92 Increase Custody Allowance | |
0xd4085dd7aab65f6b390c4679c9c8c9fa9945ec42beb8429a685a71516691ca49 13703273 1638114687 2021-11-28 15:51:27 0x23142055814dd6c01185b36ba3f5ae966643e8c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0210680769 23.05058293 4297.92 Deposit | |
0xd9b120b49dd1de9553f4fda4f093550f6afad96de0cfdc316a656babf6184886 13703292 1638114927 2021-11-28 15:55:27 0x23142055814dd6c01185b36ba3f5ae966643e8c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007897697044 8.640870336 4297.92 Increase Custody Allowance | |
0x85449aae4084a7b60e8d0a02b9f61075a005bb1be10267bb3f53c33bed75c2f0 13704499 1638131434 2021-11-28 20:30:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04881340799 53.40674968 4297.92 Claim | |
0x2f2971cf903ef1d5409ed70daea66d9b92c34d6cb7d742c5ab1e2b8d46fd8977 13704501 1638131477 2021-11-28 20:31:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05088635464 55.67476061 4297.92 Claim | |
0x3dc882c0fd21b6b85e18ce9a30f9e25aa44587bcd6003a0d9bf74ec8c1bfedee 13704502 1638131485 2021-11-28 20:31:25 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05149352233 56.33906278 4297.92 Claim | |
0xaf0906db8f644c79930d98dc3a6ce8d0a251ac1dedf23c4b8573df637bb7c335 13706641 1638161648 2021-11-29 04:54:08 0x96a6505172a24e54a56147cf884bd4c2f315f741 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004135572415 4.524729779 4448.49 Intend To Withdraw | |
0x53692e5ba4bee6ab886a19763134ba4d6687d72bce1febbaa84883ed2eff9053 13707546 1638174572 2021-11-29 08:29:32 0x907da5639a342f865269a4de908a8ad248937cff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005229489613 5.721584586 4448.49 Intend To Withdraw | |
0xacbc6cc4c13a0cf4e0520fd1b7bce57eebfd5775a4da9bc362f1ae42f56ace53 13708501 1638187389 2021-11-29 12:03:09 0x657a97770251bd5e372dfef3441e039abc43c60d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01017114307 11.12824763 4448.49 Increase Custody Allowance | |
0x838572b996ec2e4c7d61015d49fd81fd6fc65afd93345bea481ef2d931b1b432 13709578 1638202697 2021-11-29 16:18:17 0xe519f4cd2803ba53a40e6377e82406e548418660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02517254462 27.54128107 4448.49 Withdraw | |
0x1f6cfed47c4cd9046d8d43320325d0b2668f390606c2c88ce7b42477dc213d0d 13712129 1638237941 2021-11-30 02:05:41 0xb852084e0a989ce90359c2684195d66b0a243280 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02602921896 28.47856847 4642.38 Deposit | |
0xb2b36e375b2dc43cc44d9dd7b59e865a86620015021b4ab3c9f14581c5b6b00d 13712150 1638238198 2021-11-30 02:09:58 0xb852084e0a989ce90359c2684195d66b0a243280 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01052847934 11.51920925 4642.38 Increase Custody Allowance | |
0xab5ec8b8e38c4761c647e8af051c28bc48cb368af4d33347190e7fd5d22a1957 13714491 1638271627 2021-11-30 11:27:07 0x044a9c43e95aa9fd28eea25131a62b602d304f1f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002501090732 2.73644337 4642.38 Intend To Withdraw | |
0x881ac6bc4dff485a303bb04041288c868c54e8f53d798f43be8d995910f96d3a 13714777 1638275455 2021-11-30 12:30:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1141514457 124.8930968 4642.38 Fund Loan | |
0x8c25a7e988c4fdc8d5f12b9dcadae2ffbe47826653975706abe81499f71ee33a 13714794 1638275658 2021-11-30 12:34:18 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.09440793516 103.2917219 4642.38 Fund Loan | |
0xe63fba0f6e8f77e0c539c0decb01047b886bdd1ba7e3ec613628e3ec536551eb 13715994 1638291950 2021-11-30 17:05:50 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1245004903 136.2159864 4642.38 Fund Loan | |
0xcd9529de44f9cc863bffd45123c9dc8128ba25214acb95d221263d34d16543a9 13716010 1638292268 2021-11-30 17:11:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03817278525 41.76484434 4642.38 Claim | |
0xbe901f84917a0451968ee08649619e871ef48e02ee603ba7615e3010306fe01a 13716013 1638292321 2021-11-30 17:12:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03360921102 36.77183778 4642.38 Claim | |
0xea1dde3909bc09112bebfd140b6d54e7f011d4e346b0d3a0ad8c705d2b597a43 13718621 1638327823 2021-12-01 03:03:43 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01709628972 18.70505058 4580.57 Deposit | |
0xc3f1eca20f8818c257a13be3dd67cf2c7fb9263adbbacc0500f1befa42aab923 13718629 1638327952 2021-12-01 03:05:52 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006180647795 6.762246753 4580.57 Increase Custody Allowance | |
0x3491cf4c69eddc1427097eef58e6fabb63d84157044d426e31050fc819581160 13725997 1638429680 2021-12-02 07:21:20 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00737934 8.073735894 4514.8 Transfer By Custodian | |
0x51fc2b28ac8fe7d520671689e1d5c1286aac940dbf8cf86bb4d8a1ca36ebb69d 13725997 1638429680 2021-12-02 07:21:20 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.11090963 121.3462262 4514.8 Increase Custody Allowance | |
0xbdf63a14f8a9b712d8da0efd23a4b870622a3aea4ea2462e0fb2aea4be26cf3a 13726058 1638430502 2021-12-02 07:35:02 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007377252 8.071451413 4514.8 Transfer By Custodian | |
0xb4fab6b76558c28c903683fc95bb0bc453569d316850ad8d5ba2c508b807a3ac 13726081 1638430755 2021-12-02 07:39:15 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007250058 7.932288458 4514.8 Transfer By Custodian | |
0xc22ad30ed0ae540f3732d3ec7d4743eb8747355577738160ba57a1c936779e8d 13726107 1638431144 2021-12-02 07:45:44 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008006047 8.759416023 4514.8 Error(0) Reverted Withdraw | |
0x7f48fa4e54db0ad40aaabe20ea881fa104ae31d9f8af03c5204ec3da35205c01 13726126 1638431415 2021-12-02 07:50:15 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.027774432 30.38800605 4514.8 Withdraw | |
0xeeabf6ba634cc6aaba0f5757e7ca0ca58ee9836fcdd075875e0262726b5ddd97 13726148 1638431615 2021-12-02 07:53:35 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00771862 8.444942142 4514.8 Transfer By Custodian | |
0xe8d3f870e9d39d4ae06624197917f820b8e67dd2ea8629095487812e276f5861 13726148 1638431615 2021-12-02 07:53:35 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02259392 24.72000787 4514.8 Withdraw | |
0xfb9c0187b0a5631370bc87fbbe8ea1aefffbe7c72d07375a0d0ac35924a4a406 13726153 1638431691 2021-12-02 07:54:51 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01094178 11.9714015 4514.8 Transfer By Custodian | |
0xe9945c085d57818ed1d99bb923a4bcadfd8ab5959972974adabb272d71b7cdd6 13726153 1638431691 2021-12-02 07:54:51 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03257728 35.64280205 4514.8 Withdraw | |
0x0390fca7d8ac13834a07e7bc4fce36651569be4b7ffa98df17e08af3639f9188 13726156 1638431698 2021-12-02 07:54:58 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01815148 19.85953427 4514.8 Transfer By Custodian | |
0xfacae62478474ce17c46a0022837c09a60f37cf4cb28e63cc8eb43517d721469 13726167 1638431846 2021-12-02 07:57:26 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00953955 10.43722166 4514.8 Transfer By Custodian | |
0xa44bdd1d0ce720a7fa2f9bd1fdf3a25cbca103466f9d92e5e0245573aa785ac2 13726167 1638431846 2021-12-02 07:57:26 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0282424 30.90000984 4514.8 Withdraw | |
0x725fe96351e0c4ee29b595393b73a1c981642a9eeb443b895a7e980178a15f52 13726168 1638431865 2021-12-02 07:57:45 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010260316 11.22581174 4514.8 Transfer By Custodian | |
0x4224cdc83088d7e5182019541e25b70d2159943f8e0df89d23f5ee8dba07f28a 13726176 1638432049 2021-12-02 08:00:49 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07865351 86.05480529 4514.8 Increase Custody Allowance | |
0x619fa18ede8adf667cd6bd6fea7935e25d5d697c34df799ca4f5bbbe4e476a0c 13726192 1638432233 2021-12-02 08:03:53 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00695524 7.609728084 4514.8 Transfer By Custodian | |
0x197614fbdd9835b4a41ac4c34bfbf924b6f46e539b10d4dd502f27b3963f9879 13726202 1638432404 2021-12-02 08:06:44 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x5f22c63da0c865c77c1849691437b883f28721123db3f35f002a3bfa081880cd 13726255 1638433008 2021-12-02 08:16:48 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00593572 6.494271252 4514.8 Transfer By Custodian | |
0x8a158c56b95440d6cb417a800584585a7aeceacbbab93613f44e5167dbf45867 13726258 1638433043 2021-12-02 08:17:23 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.017863328 19.54426716 4514.8 Withdraw | |
0x07c19e9adff3ddb507787b8bcd7b63d22b2258cc419de7c7e09fca40bfdaa4e7 13726258 1638433043 2021-12-02 08:17:23 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0x45dd735d8ac05f04afb4b33dc33d93b33744dc774d56f69a82a42e2ce3dd8695 13726266 1638433177 2021-12-02 08:19:37 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01786496 19.54605274 4514.8 Withdraw | |
0x667fb56f5a6a6d778096e8e19bd5d368c04fab6748e38982f4550ac09f77ba8a 13726268 1638433204 2021-12-02 08:20:04 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00646272 7.070861952 4514.8 Error(0) Reverted Withdraw | |
0x57e64c28abb32c56a8923ab72c3bfd4302151b18ca4c592e5964b24e7e8dbf21 13726268 1638433204 2021-12-02 08:20:04 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0x4d99ce0695811c579856c26dfd4640668f7075e3651a342134475ce61e1e3a41 13726292 1638433511 2021-12-02 08:25:11 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01255563129 13.73711619 4514.8 Withdraw | |
0xb3a0ef957475140d3f5796fe7a81f0ac1a980feda6fffea69d5f5a4fa382164c 13726299 1638433599 2021-12-02 08:26:39 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00646272 7.070861952 4514.8 Error(0) Reverted Withdraw | |
0x6e1a51bcf294a50e082fff0020ed3f45c14975bc2131069d4278890ea92f55b8 13726299 1638433599 2021-12-02 08:26:39 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0x15667849c44caa71e835cd22e27786da5279fd177b70ccff9692186b781afa75 13726308 1638433705 2021-12-02 08:28:25 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02019056 22.0904917 4514.8 Withdraw | |
0x66292d6b547b79c0603658317881851fe8dd283260d9952331a0f68408cf0284 13726318 1638433858 2021-12-02 08:30:58 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01151151845 12.59475234 4514.8 Withdraw | |
0x8d6052389b356ef0cde75fa631697501dc2e45a98bf7efb98954f01352d8a5e5 13726336 1638434114 2021-12-02 08:35:14 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0xd410441b7e14c50250842f7bd3bed6aea6ea533148ad539abbc30acf0be107fb 13726336 1638434114 2021-12-02 08:35:14 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01152287027 12.60717236 4514.8 Deposit | |
0xdc3dd284dc70424c5057e65f9ce8fd83ebd863e6915a98787de22d25cfd03107 13726337 1638434140 2021-12-02 08:35:40 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02019056 22.0904917 4514.8 Withdraw | |
0x40b05a384bb2f09ed168595a9e028d52972590888040cc5234c5eaaccd5b44c8 13726339 1638434154 2021-12-02 08:35:54 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0xe5e65b700b065a5ae81e6c136eb0c0c9745498102eee53da03b51ad1acd0843e 13726340 1638434168 2021-12-02 08:36:08 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02019056 22.0904917 4514.8 Withdraw | |
0x2c92e11af9ad7035ec7134b531262bff2655a8cec0bcffb062aedc376034e53a 13726342 1638434191 2021-12-02 08:36:31 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x33136c3733a7ac1510112efe280b7179bb01e897294706f8755260967ef3565c 13726344 1638434196 2021-12-02 08:36:36 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02019056 22.0904917 4514.8 Withdraw | |
0xd3fe6290494fad1bbb53af0f467a6e0783e944fb7654657a17d059bbee874c6b 13726347 1638434212 2021-12-02 08:36:52 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x128e692713838dcb281e2dc7bc1739f45b8d8063dca4e1567d3736171dd803b1 13726348 1638434215 2021-12-02 08:36:55 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.08284993 90.64610841 4514.8 Increase Custody Allowance | |
0x02a6cf56747982590fb8339347117e03009dc01c709b17ba0541fd391f93326c 13726364 1638434351 2021-12-02 08:39:11 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0xf668ac27bf10ee4602588bc5d6096869c47c5d81e86c044e3ecaf8bcbae4b8da 13726365 1638434407 2021-12-02 08:40:07 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003523500648 3.855062059 4514.8 Increase Custody Allowance | |
0xaf9d828caa5062b0efba77155e9f29f07e4f41425749220151628b1c6ccddb8b 13726369 1638434474 2021-12-02 08:41:14 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0x3c0a0c2e0addf9262a8b58064f9f30ce016e7eab3d6d0e5c280f1064a4956069 13726377 1638434580 2021-12-02 08:43:00 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02019056 22.0904917 4514.8 Withdraw | |
0x0e11c6f5c2a3ed2467fe3112b4ce29a196c617f84cf4a8b50e89465fee08e8aa 13726380 1638434635 2021-12-02 08:43:55 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00646272 7.070861952 4514.8 Error(0) Reverted Withdraw | |
0xa0ed1f76ee24441a51967bd87ae794000fe37c212ecb5da1284a0c0942391d4a 13726380 1638434635 2021-12-02 08:43:55 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x1db2fd75440dad3ccb58600838e5555c6a4af2fa44f64f85d3f99340911f491f 13726381 1638434658 2021-12-02 08:44:18 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07867613 86.07955383 4514.8 Increase Custody Allowance | |
0x4fc871fed64ea94983b7b465733224adba479f0bebe639a981370f369735f825 13726397 1638434841 2021-12-02 08:47:21 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x1d18c11d3878d8ed750354ca37b84d8f1ce96713c011c9ca1223d20a5304916a 13726399 1638434863 2021-12-02 08:47:43 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020186888 22.08647416 4514.8 Withdraw | |
0xc1f820581ca6c94dbbd7de27ca21137e94fd3ce6d37f539ee85fabdcf93e58a0 13726401 1638434929 2021-12-02 08:48:49 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0xf36f2a791d49ba5bfa061f9ca847c8641393afff526148f57aac3ad8b8acab71 13726402 1638434954 2021-12-02 08:49:14 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020186888 22.08647416 4514.8 Withdraw | |
0xc5d3043fac58c32efa246f11fb0bdb36a5cbb01e81a765547644cf17e98bd340 13726408 1638434995 2021-12-02 08:49:55 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x26c1d86130c476077f0843ee6fd7d5e621e50350b017393ae66d25fcb1a8c091 13726409 1638435005 2021-12-02 08:50:05 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020186888 22.08647416 4514.8 Withdraw | |
0x444b4c36971cb053ea7a189aede8b5341d99132e9e11cbd349d59f6618c162da 13726414 1638435087 2021-12-02 08:51:27 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0xe5a8c6376465a47b7ad176a2d9392136cc302d2bffab70fb3ae1ee967fbf5f97 13726415 1638435090 2021-12-02 08:51:30 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020186888 22.08647416 4514.8 Withdraw | |
0xa0c125446cb23af222fcf9ddaa21fd9c7c16b071aca3939a0765dc84a216327a 13726419 1638435127 2021-12-02 08:52:07 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0xa2e1db0b9526560801ef004afce8ead658571d60c6ad2f163d1fd49f74ea1de7 13726424 1638435226 2021-12-02 08:53:46 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x662294f3cf15329fba6c6a9feacb018d333574d354aa1e337649b5292bbd76fb 13726430 1638435331 2021-12-02 08:55:31 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07865351 86.05480529 4514.8 Increase Custody Allowance | |
0x08d8b00922da644398797c6def2b5b5837907ad6a591dec1e924da21917f2e46 13726442 1638435477 2021-12-02 08:57:57 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020186888 22.08647416 4514.8 Withdraw | |
0xdca8468af61b8d4f5e8b146ad9f649950c86e222483b735f5a1c5ee80cfc6db8 13726442 1638435477 2021-12-02 08:57:57 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x0dcc7d716e3fd5411c9b1d95d8a2dbd9fc942c4bc91534e729d9268ceefd6954 13726446 1638435525 2021-12-02 08:58:45 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006190108 6.772597163 4514.8 Transfer By Custodian | |
0x23b0608859afbf0f75068d10674e308b82d61df6ec59bee87462998a2a31fd2b 13726447 1638435552 2021-12-02 08:59:12 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07865351 86.05480529 4514.8 Increase Custody Allowance | |
0x4fb2ac41bfe3d65309d8587a3a1ba22353082d93a210020bb8ae09d602e9d977 13726468 1638435855 2021-12-02 09:04:15 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01283164293 14.03910053 4514.8 Withdraw | |
0xd99bb27cf7e8e011ff7149a902da0f97e2e1ce82563276028c4d281d7b7fcf0c 13726516 1638436553 2021-12-02 09:15:53 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00619186 6.774514026 4514.8 Transfer By Custodian | |
0x37ee11c9eeba673744a5b304a67d2a1e860938c19d7f7af59f628d7da6ab8660 13726519 1638436579 2021-12-02 09:16:19 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07867613 86.07955383 4514.8 Increase Custody Allowance | |
0x025465a59038f1cd5798088c600d2b78e0d21bf35982a4c0c668054b3c44614b 13726524 1638436606 2021-12-02 09:16:46 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003470216836 3.796764241 4514.8 Transfer By Custodian | |
0x1b8ba738eda1da7c8c0489f62eb7c19a3a53ad5403c2ea091feff19c17edb51c 13726524 1638436606 2021-12-02 09:16:46 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00631909 6.913716369 4514.8 Transfer By Custodian | |
0xd153f4a305a10a9af487219a7d9664c1fe4924000d269fce6433e802b2109a92 13726524 1638436606 2021-12-02 09:16:46 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00695524 7.609728084 4514.8 Transfer By Custodian | |
0x274340e1cb3441ca256863470ba6c70c495b437d60fb58f3401ee0c7f7d32e03 13726524 1638436606 2021-12-02 09:16:46 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00623427 6.820914807 4514.8 Transfer By Custodian | |
0x3725b197db841c034ba12584708f5fd89e66d215eb164f7a3e49764b0cc90412 13726527 1638436649 2021-12-02 09:17:29 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01234933066 13.51140268 4514.8 Withdraw | |
0x75ce69ee0c134e9a11609bcc82b83d6f1600276c2d0f0a3bed8bcefd78137c56 13726548 1638436826 2021-12-02 09:20:26 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07867613 86.07955383 4514.8 Increase Custody Allowance | |
0x22265b7b554697415703884adeea36c263e1c702139ba0496861fd669816a92b 13726550 1638436843 2021-12-02 09:20:43 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07867613 86.07955383 4514.8 Increase Custody Allowance | |
0x539df0b8537e971110171bc84573b2308a4a612ff45a7329154ef8eb818635bc 13726561 1638436978 2021-12-02 09:22:58 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01377935 15.07598684 4514.8 Transfer By Custodian | |
0x281b78dee9d7d2711ff9e1284b78ccf1eedf245bb0e8e784f51840df41678da6 13726568 1638437057 2021-12-02 09:24:17 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01234131 13.50262727 4514.8 Transfer By Custodian | |
0x473510c72af4b1a59371b5907aa9ddabfde014bae23cfd80ff8a3b89fd6f3940 13726573 1638437134 2021-12-02 09:25:34 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00843959 9.233755419 4514.8 Transfer By Custodian | |
0x2da11fd66487b7fbe4bfed5f553eeb307f6dcd676defe95c733c18fb92211e90 13726597 1638437497 2021-12-02 09:31:37 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.023600847 25.8216867 4514.8 Withdraw | |
0x3451233ed9314890fb0f036f71e27269095ba2df1c32be96f8a0c6db3830374f 13726602 1638437538 2021-12-02 09:32:18 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0x68dc0893becb22d94572ce320ab58d4deb57ddcfe396a3e1ec22ae9fdf57ef64 13726602 1638437538 2021-12-02 09:32:18 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.023600847 25.8216867 4514.8 Withdraw | |
0x31e9995c47015c6cfd9447b1eb328a1595c8948895e048cb8af3b4d7774ee63c 13726612 1638437630 2021-12-02 09:33:50 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0x661bea97ffcaa66d45e586170814dd3b623810bde8194b8e37e13a6299371e8e 13726619 1638437695 2021-12-02 09:34:55 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007165262 7.839513154 4514.8 Transfer By Custodian | |
0x71e8c68a1f3fbcec227ab0dd17510165bdcfa376223342fde5b996aee131be5e 13726634 1638437925 2021-12-02 09:38:45 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01215549489 13.29932696 4514.8 Withdraw | |
0x31ae5ee79cdd1743192216ea5957956e51308c337524d4a7c7b8652a9affb4a6 13726635 1638437946 2021-12-02 09:39:06 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0x92a87af15077dc07016fa1f1f27bf92b9089bb802f3c430c0984b028a219cf7c 13726642 1638438122 2021-12-02 09:42:02 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0xcbeb277390dcac5d4d4ac55985f40e0fb35403c3d9f78fa6b28d3ed7f4fb60a3 13726646 1638438252 2021-12-02 09:44:12 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x7f979434f53c71ac1a0cab4aaa36db674cfe2fab00b8db810fd701ea7547b8a3 13726654 1638438319 2021-12-02 09:45:19 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0x5e0ca9473ae843e7e3d3bcc5ab0d0bf25f75b52af38bcbea21a49ed8214326ef 13726654 1638438319 2021-12-02 09:45:19 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.023600847 25.8216867 4514.8 Withdraw | |
0xe4d0f0e5191774f787f92bef41630b20cb6e12a516e71ea37da0709bfbf68840 13726657 1638438372 2021-12-02 09:46:12 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0x69b88020fd0133bbd84590cedc318bd687edcb040fe6038b3e0ca2fa415b5c93 13726658 1638438412 2021-12-02 09:46:52 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.023600847 25.8216867 4514.8 Withdraw | |
0xdb6ede68b9f7a80d7b348e112c5c9a119b2b259b4ef34a950f117e128b2d0ea1 13726663 1638438484 2021-12-02 09:48:04 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0x3caa120d53c09843bd7d947760751a4082a00ae58763d736961033f8d67bee86 13726666 1638438532 2021-12-02 09:48:52 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x05059214b0fc9740fa2c1fce9bb5bbbd8bd88763050ae7018b29f60cc0267606 13726668 1638438579 2021-12-02 09:49:39 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004221326902 4.618553763 4514.8 Increase Custody Allowance | |
0x2c831fc3c6b352f2884d16355bc663b96711052ed07e31fcf72b6ea05dd0f635 13726676 1638438660 2021-12-02 09:51:00 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0xf69f2935e8bd98115815b7fae1089cb6d140560ceb065739ac3f2ce43062727e 13726676 1638438660 2021-12-02 09:51:00 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.023600847 25.8216867 4514.8 Withdraw | |
0x93341b2207e70b7ba9c05b84e58080e301bd00c2a596fa2776d7a801431e0208 13726677 1638438701 2021-12-02 09:51:41 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00716729 7.841731989 4514.8 Transfer By Custodian | |
0x91b551f5d38cf42ab28044429d680c17453f3acf1cbe5402a20b0d2e08e4bdc6 13726680 1638438824 2021-12-02 09:53:44 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x4b43a5b335a1ee07d0233140f1f2e155c6d6f8ed06d8d1aea85d0934dc7f474d 13726682 1638438847 2021-12-02 09:54:07 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004366221733 4.777083198 4514.8 Increase Custody Allowance | |
0xff1fb1e3cb67efa0bd1f5d93702549be2747977c640a5e5697df68990ca688ad 13726692 1638439046 2021-12-02 09:57:26 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004782457489 5.232486739 4514.8 Increase Custody Allowance | |
0x4f245c8aeabfd3c1198ec497a1f24c9fe3950d6c948136b9a7e25d9b9eb4b7aa 13726694 1638439085 2021-12-02 09:58:05 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004530621254 4.956952714 4514.8 Increase Custody Allowance | |
0xa89bbd8d79977de414741e11aba16b4690e52eaf2f12a3c3aed66eb2f14ce170 13726736 1638439664 2021-12-02 10:07:44 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00661596 7.238521836 4514.8 Transfer By Custodian | |
0x5bb3dd0a81b824d4fd2aecc49d73a4c7b5423d4bc3cc93e4f2a0077559b7576e 13726736 1638439664 2021-12-02 10:07:44 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.021671218 23.71047961 4514.8 Withdraw | |
0xe2de6ac701edb138ae950885d509b20b1a9a78b0463b7873e7c4f3ef2e5fbec8 13726738 1638439687 2021-12-02 10:08:07 0x5ce4104c395665e68d5b09949002070aa31ffe7b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01289128825 14.10435848 4514.8 Deposit | |
0x20035785a9f3ec7f85a66b618e9491baba24556a375d65c8abd91598214dd259 13726741 1638439721 2021-12-02 10:08:41 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00661596 7.238521836 4514.8 Transfer By Custodian | |
0x4edb057b5b6bfc5ece80ec3a874555b6cb9c85ed811141336a5f89db999446ff 13726741 1638439721 2021-12-02 10:08:41 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.021671218 23.71047961 4514.8 Withdraw | |
0xbd25aaa280de323ab3bc5f5f8d0bd9e713199d191425fdf57827d2d7dd4ec590 13726753 1638439896 2021-12-02 10:11:36 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00954225 10.44017573 4514.8 Transfer By Custodian | |
0x41dc3299e9c43500248b1c428d4c591a6e7ceeb13e88518b630a3ef6885acd8b 13726753 1638439896 2021-12-02 10:11:36 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.028944435 31.66810633 4514.8 Withdraw | |
0x532e9beecf322d0951b9f9733fbab5384cd0c22765c05fd1eedffbf061a65222 13726760 1638439963 2021-12-02 10:12:43 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009581948 10.48360931 4514.8 Transfer By Custodian | |
0xda611fbd0d315f6f9f31c5f64c1ae1cc31a380199b7fd73f19ca57e843a5e3f4 13726760 1638439963 2021-12-02 10:12:43 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.029092868 31.83050688 4514.8 Withdraw | |
0x3981c44209b5d44b1dc87e8324d415526cb9ed3308216d5e2d84882699e9bafd 13726789 1638440276 2021-12-02 10:17:56 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01157793 12.66741321 4514.8 Transfer By Custodian | |
0x5c469050c917f1aa3accd9c696003738dd614d685e8be1f70255a18910bbdf4c 13726789 1638440276 2021-12-02 10:17:56 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05780713 63.24678093 4514.8 Increase Custody Allowance | |
0xe5a21edbf9d5c1388377186bf3e56871e1a3db46dee444132c9b7a795f502414 13726806 1638440524 2021-12-02 10:22:04 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01005117 10.9969851 4514.8 Transfer By Custodian | |
0xee06b3ca251f3c078098f8c7028ab9e0ea1b2a1d100044c096bbfee098113075 13726806 1638440524 2021-12-02 10:22:04 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.030725631 33.61691288 4514.8 Withdraw | |
0xf1572de9ae2521606c8610e1e5843db1dc9109c2b04b2a03962f0c289ac2f1b2 13726831 1638440783 2021-12-02 10:26:23 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.010048326 10.99387348 4514.8 Transfer By Custodian | |
0x842bac344bad807ebfd7c6becb1b776a321d9092d5c95c874a30c07b77276929 13726833 1638440861 2021-12-02 10:27:41 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055787662 61.03728099 4514.8 Increase Custody Allowance | |
0xf4818c4a5b3853d431145c67ebd08b77e3713c64bdd674922cf487bd7333c30e 13726894 1638441654 2021-12-02 10:40:54 0x5ce4104c395665e68d5b09949002070aa31ffe7b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003443662237 3.767710853 4514.8 Increase Custody Allowance | |
0xccf830f59558c1cf8913b31b23b07a4f4f3b8874e89a2391ab2b51067f2b8c16 13726895 1638441702 2021-12-02 10:41:42 0x5ce4104c395665e68d5b09949002070aa31ffe7b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002919528655 3.194256302 4514.8 Error(0) Reverted Increase Custody Allowance | |
0x0cdcb3cea621219446a468454217ed66a3f484e0211a2b43b20ae13c7e6a6c06 13727034 1638443765 2021-12-02 11:16:05 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01635982875 17.89928864 4514.8 Transfer By Custodian | |
0xf1ac60744ee739a9fb9838b1c4080cb2ff27483165c327afa7c53b4862e3f0b4 13727034 1638443765 2021-12-02 11:16:05 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05725862912 62.64666612 4514.8 Withdraw | |
0x29b881d8dfccc339f581782188b896a91a2bed1f5bc8ee429511777211987f81 13727047 1638443899 2021-12-02 11:18:19 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03689185873 40.36338264 4514.8 Transfer By Custodian | |
0x13929faa089210f0b56f330427823c38add74ccd21d6fa7400dcbef7708d79db 13727048 1638443936 2021-12-02 11:18:56 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x7f1b24515a31cf22254198d0e63083f6cb540dae27f63be299225a0398a16196 13727130 1638445168 2021-12-02 11:39:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02385464005 26.09936168 4514.8 Claim | |
0x42db87ee433c905978519cc4a98cf8a0d10f3afd2506d6f588368772614c65a7 13727132 1638445182 2021-12-02 11:39:42 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02374289938 25.97710621 4514.8 Claim | |
0x59470cc18abdfb423575389c6a3fc642240b23e6244d4211265166df82bedce2 13727141 1638445256 2021-12-02 11:40:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.09130121804 99.89266265 4514.8 Fund Loan | |
0x7fc6833449d3fac53bf15fe5c7cc27259d87074b240256d240d7d2c282285429 13727362 1638448236 2021-12-02 12:30:36 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0179426923 19.63109965 4514.8 Transfer By Custodian | |
0xd16f317f05d3fa5d15f63a0006f84362de64dd4a6b786202bdc05a33ea813548 13727362 1638448236 2021-12-02 12:30:36 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07297949999 79.84687094 4514.8 Withdraw | |
0x750dba20c1c4216db67e570ade7a50a76fc3dcef3d1a239afee3708062bd2a5f 13727407 1638448922 2021-12-02 12:42:02 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01827692305 19.99678151 4514.8 Error(0) Reverted Withdraw | |
0x3b1e0921c2eda38043b211b45f053e0e2e5e92d31057c1b92e533b32773e8f99 13727407 1638448922 2021-12-02 12:42:02 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01631153844 17.8464542 4514.8 Transfer By Custodian | |
0x79a2eeee50269781890e37a8a1f80ac3926694250f1928ab951d5809c3e4a09e 13727415 1638449099 2021-12-02 12:44:59 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0296866 32.48010906 4514.8 Withdraw | |
0x08d415f3c7ea4c8284a38539540572ca71be35f8d0d92e1ef421cfb27d91c251 13727438 1638449531 2021-12-02 12:52:11 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01778727267 19.46105503 4514.8 Transfer By Custodian | |
0xbcb76a95d174c4608015ea4067a3692498f649450a5f5bd731eeef1c747d13ca 13727441 1638449557 2021-12-02 12:52:37 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x0c7bc6c5a3e456c2510036e5ce65dc4131c7c2961050b63b3fd292a68ebfc6fc 13727523 1638450750 2021-12-02 13:12:30 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004111230833 4.498097655 4514.8 Transfer By Custodian | |
0x401e50e4286bdd9d329a97f1a99c2350306b4ccff6bcd1418f1e5ca40500269c 13727525 1638450802 2021-12-02 13:13:22 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004536264592 4.96312709 4514.8 Transfer By Custodian | |
0x4006a7da8d579d36a741c920bb92b1febb3d6406402259db3365fe30d248cc5f 13727540 1638450966 2021-12-02 13:16:06 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01635834928 17.89766995 4514.8 Transfer By Custodian | |
0x6cf7617dbfba6d7e27608eca90f3b2e9ef637a8bf9b3df67581ca768b0b5ecb9 13727540 1638450966 2021-12-02 13:16:06 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x8648aafb64c5eb69f95646035879395e06d36ce344b6d1ce5c39d2bb9f29b4e2 13727673 1638452688 2021-12-02 13:44:48 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01358431479 14.86259881 4514.8 Withdraw | |
0x2e548412eb604e81d3917542f02ef4edaa7a90259c789cbd2d5d3bf826332ae5 13727696 1638452856 2021-12-02 13:47:36 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01763429263 19.29367957 4514.8 Transfer By Custodian | |
0xe2561d833b6c70d0173cf1209aa379d5c3036f4edd9413246ba7499da12c7a2f 13727696 1638452856 2021-12-02 13:47:36 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06174914705 67.55974179 4514.8 Withdraw | |
0x43dbf9c6abd62f018a4b7d8f35ff9d00dfd145d75d2c4d7d405762769dc17756 13727702 1638452950 2021-12-02 13:49:10 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02091710294 22.88540232 4514.8 Transfer By Custodian | |
0x1be74a940b84c0a6f8f5d0e058393287e35f77bd4c2a6055e20c12b4e179370c 13727702 1638452950 2021-12-02 13:49:10 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07320887386 80.09782889 4514.8 Withdraw | |
0x8ca2c83e15035f39f4ac69e60674dc7887d6f0fd09b1d94ef772f8876e39ba0d 13727713 1638453100 2021-12-02 13:51:40 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02013830041 22.03331448 4514.8 Transfer By Custodian | |
0x1bf0380066cde04f27de2f6578a8e77f2eeb1dcb76d5d4b25a5fc687cca6be27 13727716 1638453152 2021-12-02 13:52:32 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07048310175 77.11556163 4514.8 Withdraw | |
0xf61575d6d0588dc4ed6e6ff399ab53e0ef8701b996c55ea4d3fe2987369de3bf 13727721 1638453230 2021-12-02 13:53:50 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02156624019 23.5956234 4514.8 Transfer By Custodian | |
0x03fb739fc317c7dc7d83a39f0d58da3e68e38f440e2ae86825326ca828fee4b0 13727721 1638453230 2021-12-02 13:53:50 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x8f94a10fe47735f19d35f436e0456c1d4a8c8d5be7e6c1c81a9cd80f7aaf6927 13727763 1638453778 2021-12-02 14:02:58 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01631153844 17.8464542 4514.8 Transfer By Custodian | |
0x4984d182b631d392706df14f526fa93aa0ec38f94fdc076d458c8570724ead82 13727763 1638453778 2021-12-02 14:02:58 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05708961529 62.46174809 4514.8 Withdraw | |
0x4c6a0276f627e531dab59bd0e0001e57e12df80108c1a9782f5f752913168e9d 13727767 1638453867 2021-12-02 14:04:27 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0205677196 22.50314202 4514.8 Transfer By Custodian | |
0x23b56181caa30a8fbc4fcf624add7945407c01f55866f682039e4314cd204b11 13727767 1638453867 2021-12-02 14:04:27 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07198604867 78.75993585 4514.8 Withdraw | |
0xb43b6aabea392635ae1fe34f8a65ea4893d066fcbc2a5d1c20719c3f9d8289ec 13727776 1638453989 2021-12-02 14:06:29 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0563635516 61.6673618 4514.8 Transfer By Custodian | |
0x33843a0eec841b4d241c633396d767225600c1ec43409872ba1dc853be2f86da 13727776 1638453989 2021-12-02 14:06:29 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06575659085 71.94428605 4514.8 Withdraw | |
0x51d01cc40653c932e9ca13042389ff28d66296eac99612d65847001d3b2b7f28 13727784 1638454102 2021-12-02 14:08:22 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00542848 5.939299968 4514.8 Transfer By Custodian | |
0x06731d1cd52230c11fda3cfd614c4c1b4590a3b5b4cd1672c8e85e479c9eb1f2 13727784 1638454102 2021-12-02 14:08:22 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.018999424 20.7872698 4514.8 Withdraw | |
0x5ce9927a4f0672d372f86df9a9998e538a971e53a5a3ee087466f273dc611e54 13727787 1638454161 2021-12-02 14:09:21 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00542848 5.939299968 4514.8 Transfer By Custodian | |
0x3b6041978e36713edffc21499aa41f8f385f697be517a6ded40be7755b241ebd 13727787 1638454161 2021-12-02 14:09:21 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x8e3c4e709c218daf71be4b2a6c12a1e321fcf05770f3077a3917b2b6e009d705 13727805 1638454415 2021-12-02 14:13:35 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00608256 6.654928896 4514.8 Error(0) Reverted Withdraw | |
0x5db10c97db357b010dded5fb4bb5e73213b9d965219b1768fefbd59e666ede56 13727805 1638454415 2021-12-02 14:13:35 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00542848 5.939299968 4514.8 Transfer By Custodian | |
0xba0d1356146a479b40fc775a303c2582bd666472e7fa47f93af1f8574afc9906 13727817 1638454679 2021-12-02 14:17:59 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01807182855 19.77238762 4514.8 Withdraw | |
0x83284d7f32154b5f219e0522ef55322f56d7e9228052d86dfab519ed932065d9 13727830 1638454873 2021-12-02 14:21:13 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00810031 8.862549171 4514.8 Transfer By Custodian | |
0xb06752ffdb51c5174f43db1cf37555ff389dd0e9286d06143397fe13aecda5fa 13727830 1638454873 2021-12-02 14:21:13 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.028350703 31.01850415 4514.8 Withdraw | |
0x15fca74cf2649a0dc00b54b06fc37033c76e304956682a99501f648b9feb4be5 13727832 1638454883 2021-12-02 14:21:23 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00555571 6.078502311 4514.8 Transfer By Custodian | |
0xc72fe773bab4b2e4b79bffabee6900673efa23edba6e0c2f53ff1389101f62e6 13727832 1638454883 2021-12-02 14:21:23 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.019444723 21.27447143 4514.8 Withdraw | |
0x8027888539d5f98be3c8586852eb6aaff1507da61740bda0ac9080ab952f2737 13727836 1638454931 2021-12-02 14:22:11 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00555571 6.078502311 4514.8 Transfer By Custodian | |
0xba56dd8e5f7c84e8a9c822aa596b245145291c0b824377732994f8970b2a03f7 13727838 1638454944 2021-12-02 14:22:24 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.019444723 21.27447143 4514.8 Withdraw | |
0xad5ad571af0ec648c22f6c1aaba199be415ea57c2eeedf84b1d63e62501e6707 13727840 1638454984 2021-12-02 14:23:04 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00555571 6.078502311 4514.8 Transfer By Custodian | |
0xff2830b4cee3effaf2014091a6e330f7656213dea476e48606b5ac19d224dd93 13727840 1638454984 2021-12-02 14:23:04 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.019444723 21.27447143 4514.8 Withdraw | |
0x0f5fe13a9b86b98ac350e50c7872964393ecdc6fee7889b273c13910cce399f1 13727841 1638454991 2021-12-02 14:23:11 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00555571 6.078502311 4514.8 Transfer By Custodian | |
0x0077cbaadda3b6916afadac711a297b212e755f503fa84c1baf492b1ab63ff91 13727841 1638454991 2021-12-02 14:23:11 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.019444723 21.27447143 4514.8 Withdraw | |
0xf055a391aff3b476f35fb71ce800cc95f7d9111deeec777472f3056d4056ca72 13727842 1638455042 2021-12-02 14:24:02 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00555571 6.078502311 4514.8 Transfer By Custodian | |
0x4b6653f98963ad73005675876395182d257e3d3b44737b8f20cbd065c45dc1c9 13727842 1638455042 2021-12-02 14:24:02 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.019444723 21.27447143 4514.8 Withdraw | |
0xf2763ed5f1d660706eb77704d4da0e8a7d7283ade39f4b15f70dd9683f6ca54f 13727852 1638455237 2021-12-02 14:27:17 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00622512 6.810903792 4514.8 Error(0) Reverted Withdraw | |
0x81f8eb9b68f6464f5869e996462dc26a881a6382197f5be4353dafcd0ed05fc5 13727852 1638455237 2021-12-02 14:27:17 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00555571 6.078502311 4514.8 Transfer By Custodian | |
0xf62f75771c84555c4f7e23eba4c96245bff57e2e2a792035bc2f0bdaa7522371 13727857 1638455326 2021-12-02 14:28:46 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x760c1ff95ef8df785e05f13ead96dc9f301caa9ae85ae621259da6530d7a0193 13727860 1638455401 2021-12-02 14:30:01 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0xa2b8dac99efed44a33f77c204e08f939a66db23c6188dd50467d19da3a6427ca 13727861 1638455434 2021-12-02 14:30:34 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x0b26b766ffc1635fb5863f3bb3d4d8eb46b809027ac163982f8500b7b12c954f 13727865 1638455472 2021-12-02 14:31:12 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0xb5943e8ee04ad81eb07284a9c029fe6ed96905026148a2499562075a4d467feb 13727865 1638455472 2021-12-02 14:31:12 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0xcf52ae464b8c1901abf613bbe8af83ac7cfad5bce90691b099e64064c73008b5 13727896 1638455825 2021-12-02 14:37:05 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x7b174044b654febb0eadc03d6d6ba771ad40f429e2d9ef1d0ed2169217dd18f8 13727896 1638455825 2021-12-02 14:37:05 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xe6a58907584eaeec175ff4dce3f858f46f6fa68cbf1495830bf1c0c7c2d7d0d1 13727903 1638455879 2021-12-02 14:37:59 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0064152 7.01887032 4514.8 Error(0) Reverted Withdraw | |
0x09e56c52f1258385c25b5e111fe71c58e8a2d9519656a2952710249a0c0a45c1 13727903 1638455879 2021-12-02 14:37:59 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x91a7b82e8919d2b2a94612ff0289d18aabbdb776aea448ee8805881a7eda4b5f 13727904 1638455914 2021-12-02 14:38:34 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.039928477 43.68574669 4514.8 Withdraw | |
0x7aeefe2af5b912c8508ed378746af3d4dc21d7c05808fac4b8c484289b9b1859 13727906 1638455984 2021-12-02 14:39:44 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00793067 8.676946047 4514.8 Transfer By Custodian | |
0xd275c7420a5331f822f71f9c50b5bda027ccebf175469c36bbd264cfdb0c944e 13727906 1638455984 2021-12-02 14:39:44 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.027756971 30.36890197 4514.8 Withdraw | |
0xc1aba6128c59945beb4c46209001ebe01226ea397b16d891c1ace90aeae2f32d 13727908 1638456016 2021-12-02 14:40:16 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00797308 8.723346828 4514.8 Transfer By Custodian | |
0xb708511ae35c9808d95ab105aad6ea4f9d021009ba0a4bbbe8726928920152e4 13727908 1638456016 2021-12-02 14:40:16 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0xa57c0f8c08366e119c50211f339b572906ff72599939bbdbb93632de0a7cc6da 13727913 1638456097 2021-12-02 14:41:37 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0xee979afe9629f39f67c64b69d816b486569376da4d20bb1b37f7bd6ba97fe60c 13727913 1638456097 2021-12-02 14:41:37 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xca18f2d35d97052e5e1cee33a15c6d6f1413c7a009d6a73817183e03d888b9f8 13727915 1638456123 2021-12-02 14:42:03 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x8c6c25174cc5a77a642fdcd06bec4d97356bfc98cd2846cca602c207ebfeb3fe 13727915 1638456123 2021-12-02 14:42:03 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xf02301e8ea593335d4bd8da0ccb4836c97562150c4682de24ebae020693805f0 13727916 1638456137 2021-12-02 14:42:17 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0xc817039bf4d83617c2cb197f45c7ee2eeb5eda00c1ccc24e02721225a93f14bd 13727916 1638456137 2021-12-02 14:42:17 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x7d19a14d39a95ecc60fa1102efc4bd8a65101cc113980fea508bfae3751d063e 13727917 1638456167 2021-12-02 14:42:47 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x6d0d4480e9b4f090beac13e535ea170608f884474666726f57833a7fed2b56e8 13727917 1638456167 2021-12-02 14:42:47 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x16fd2ad0e70572df4b940ac29f9d806be845d9340ed026372f4c546a5043430f 13727919 1638456197 2021-12-02 14:43:17 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x789481ce8f5046313c4f248cbf9c12d5c77f26bf6f40f1d1d185cd388886b2c3 13727919 1638456197 2021-12-02 14:43:17 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x7e0a76b7b6cc1a3bff7560bb97ad8c156e716d54726ad5eedbabad4d4c2581ee 13727921 1638456217 2021-12-02 14:43:37 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x0d0c7f87c579fbff53601db48cf7e66706638c3d042df4029635e8219f8eba19 13727927 1638456333 2021-12-02 14:45:33 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x9ad314ff61867679be0deaa3c593361a4cf75a96cb0a72b29f0e1c12ada5ed68 13727927 1638456333 2021-12-02 14:45:33 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x4a7af3cd68bb2d9ae340cb1d5722fd65597e8d0c4f821a4feef7094bee98c083 13727929 1638456349 2021-12-02 14:45:49 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x125ebffeb3d58e684bb1f24ca9c3a6c1669c2e17b4e6b33245c53cf0a80c1714 13727942 1638456488 2021-12-02 14:48:08 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x6931fe85853f428e28e235206b9fc9af0b11754e79314d6ed3e03221586a3ba6 13727944 1638456510 2021-12-02 14:48:30 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xdeac8d40b69b6e3a6cbf68f2bfbab1904075fc31f9f7a282988f3f7d2a7d7b97 13727945 1638456541 2021-12-02 14:49:01 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x4c3d1385ce912ab18fb1ceca7ff6c66b8e88750ecc8694af2b12ae5f118bae51 13727954 1638456676 2021-12-02 14:51:16 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xb487fe2707f06939ecaa1f1ed32925477bb2c26b8cf1df8dd4ab62e6b2c75d5c 13727956 1638456713 2021-12-02 14:51:53 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x84bb8b1225c91aecd5b5a2a505c0604f235f5afe8f8265e98ba32da9fa00b473 13727956 1638456713 2021-12-02 14:51:53 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xcb1474607de357e77c977717ab452eff8a512d1e3cf31f632591920995215e41 13727957 1638456715 2021-12-02 14:51:55 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x1ec62d7a882138d147a3a5259dc6d1733eb32307b60cb5c038b663ac6f2f929c 13727957 1638456715 2021-12-02 14:51:55 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x8838eeb9877ba72361d646273d72adec2aad048137c2f15c87b97b7c8347492f 13727960 1638456753 2021-12-02 14:52:33 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0064152 7.01887032 4514.8 Error(0) Reverted Withdraw | |
0x119f3c10f86ecc3181b909b2cab3d98b0ff6779aadf8b17f445c755ba52c950f 13727964 1638456784 2021-12-02 14:53:04 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x128c69920380b4a1538c21c282391d0d57335cd96880e06e2d8090fc2197cb57 13727964 1638456784 2021-12-02 14:53:04 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xf7a9b93786aba2cca824767fa478f18db7a776db44ac1d323d0b133f3a011e14 13727966 1638456793 2021-12-02 14:53:13 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x4e27fd720bcf316330bb6e430932bba895cb7a776d6de2f20df18ef6ebf97eaa 13727973 1638456905 2021-12-02 14:55:05 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003763304068 4.117430981 4514.8 Transfer By Custodian | |
0x4da991d3b475f68ea10ad1cc5f97756018619f7712ec77d242da9648bb2b3dc8 13727973 1638456905 2021-12-02 14:55:05 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0x7baaa4e802892b847e3670eab0c72b6c8737530599d04d9053f846e649b181c6 13728016 1638457477 2021-12-02 15:04:37 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xe674c21d23da8f6bbbaab0977b2f130d4e20756fdd759d201c729d38f6d2094d 13728017 1638457497 2021-12-02 15:04:57 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x0748e6355044bf845659cbb481ee45027378d8a6ce02a97959b5cd141dc647c9 13728017 1638457497 2021-12-02 15:04:57 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x4dfaf68b43f8134c7e0a98c45e7ef53fd77387ea3b99acc22949837c54a43d59 13728020 1638457544 2021-12-02 15:05:44 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0x1ddf88d255511529a47145750992511741245e6f34d7e48e09468f48a9711691 13728027 1638457612 2021-12-02 15:06:52 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0x48b186486c1311b0271341012bb235d765503ce8d2e34499a297277b613fcb23 13728028 1638457618 2021-12-02 15:06:58 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572535 6.264105435 4514.8 Transfer By Custodian | |
0xa880023c69770732a068378ed20f4af6b958b8f50e8b03a06cdf5c77c42607fa 13728036 1638457872 2021-12-02 15:11:12 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.020038455 21.92407362 4514.8 Withdraw | |
0xa804d57cdf740a79abf0fb0ff9d47551c9360cdf0cbcdf0acbd92556912a57d0 13728041 1638457935 2021-12-02 15:12:15 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01077214 11.78579837 4514.8 Transfer By Custodian | |
0xb5b9c1362a254874b6b43675a625da1b3430eba1edca6d3d75f2561443d5205f 13728041 1638457935 2021-12-02 15:12:15 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.037701982 41.24973851 4514.8 Withdraw | |
0x5cb2cbc9ef216ed79049b9f7a16039d5750e20ca1735494c58c6920665f2e8ed 13728043 1638457947 2021-12-02 15:12:27 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01034804 11.32179056 4514.8 Transfer By Custodian | |
0x5579e2e50d02b7dba0c5c324682b33972833c75eda2a28affe8142495127832e 13728055 1638458198 2021-12-02 15:16:38 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.034733322 38.0017276 4514.8 Withdraw | |
0x7f485835e4da6fb0e5746e7ab0c2dc69a8d22e2d5a5dccf537577cb2c59ffce6 13728061 1638458273 2021-12-02 15:17:53 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00793067 8.676946047 4514.8 Transfer By Custodian | |
0xdb5e75447d2c5ca99277fcb81ef88fea96fac977397e2bae9fc405c3dd713bd2 13728156 1638459761 2021-12-02 15:42:41 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.055803706 61.05483473 4514.8 Increase Custody Allowance | |
0xf263eff6af2a9d909141382557f08d672408d81726e3310cd125afdb744d573f 13728571 1638465158 2021-12-02 17:12:38 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02353476329 25.74938451 4514.8 Deposit | |
0xa0c64f4cd8632d239dc41ce67c8db614e1479b5512821a08eacd430439c6752c 13728593 1638465452 2021-12-02 17:17:32 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008648581358 9.462412864 4514.8 Increase Custody Allowance | |
0x2b67a19aaec94ea86b1d3196721d6d5b9f5ab58c859c5f1b6917012b1d376a5b 13729597 1638479403 2021-12-02 21:10:03 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003984403841 4.359336243 4514.8 Set Liquidity Cap | |
0x330a14a6f345c4481ae7f28f3612e35aa3052398a3fb701a3490b751a2a608eb 13729601 1638479484 2021-12-02 21:11:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03118195041 34.11617194 4514.8 Claim | |
0xa9c1fb7e5bd2bd2d48f4905a2de49568a81fbf14b9fffdb07c98a5a17de8fbba 13729714 1638481133 2021-12-02 21:38:53 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0073656 8.05870296 4514.8 Error(0) Reverted Withdraw | |
0x93fb1a4750fed9033f5ffc059ce0911053871e9e0387beb9c402edc9e67ef188 13729716 1638481163 2021-12-02 21:39:23 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00657355 7.192121055 4514.8 Transfer By Custodian | |
0xd267a1415a8dc38c0002f659b40bc5e9848751921d24b8cee4cb4c0847cf8dc2 13729716 1638481163 2021-12-02 21:39:23 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.021225919 23.22327798 4514.8 Withdraw | |
0x3e07d459a7a7d39bf8ab0e2d8015afd0028ad5092fa79292379a24045abb510a 13729718 1638481202 2021-12-02 21:40:02 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00679536 7.434803376 4514.8 Error(0) Reverted Withdraw | |
0x1db2f33332912c341e5f5513936143668e000b4382581c7f19f873d49b66d2de 13729719 1638481225 2021-12-02 21:40:25 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00679536 7.434803376 4514.8 Error(0) Reverted Withdraw | |
0xe8105968373df1d43ac91d21e6b69cf16ceabba361c422738ae94cd186083582 13729720 1638481265 2021-12-02 21:41:05 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00606463 6.635311683 4514.8 Transfer By Custodian | |
0x6bf0e318d20ac834e45914f8b5c4cf816c87a2ee5f01875ce843220f5d5e20bc 13729720 1638481265 2021-12-02 21:41:05 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.021225919 23.22327798 4514.8 Withdraw | |
0x289e8604eff344b88511543a07f496fbcaf9a10fb63ea656fd0a034725e04348 13729721 1638481301 2021-12-02 21:41:41 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00657355 7.192121055 4514.8 Transfer By Custodian | |
0xb751e1d706e52333b53c0a6950697868821579dd2cae33b60032673ef566559d 13729722 1638481323 2021-12-02 21:42:03 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.046370918 50.73442138 4514.8 Increase Custody Allowance | |
0x5445ba211d60dd59fdaee62e2073ef912658e408aff065597a689a751b2e24b4 13730284 1638488762 2021-12-02 23:46:02 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006757930248 7.393851485 4514.8 Withdraw Funds | |
0x4ca6ca141a5b6fb82372cc551e8d3915e5558b5d721462090bd6c9e046ab913e 13730286 1638488802 2021-12-02 23:46:42 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003162179613 3.459740715 4514.8 Withdraw Funds | |
0xf2bc58637ace08eb92d4c6ed18dc823f2d2084127f5836c527152cfe12a33486 13731236 1638502067 2021-12-03 03:27:47 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008558153495 9.363475739 4219.32 Withdraw Funds | |
0xc0730b4dadc3da8c44b06454aa15edea4982086da64db04cb6e5ae57b76fa1f3 13732092 1638513975 2021-12-03 06:46:15 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007657820201 8.378421082 4219.32 Withdraw Funds | |
0xdaaf766e7f63b62c664b4f23a254fbb8adfc06f49dd11762e129bd626e4a2a59 13732233 1638516080 2021-12-03 07:21:20 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01184124 12.95550068 4219.32 Withdraw | |
0x0ea3df867320f7d2dbd92537b218f3b74e478f3f196b4fadf774e82f03161951 13732246 1638516307 2021-12-03 07:25:07 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0158274 17.31675834 4219.32 Withdraw | |
0xd5ebef0b46b68029beabce66cd466e1a80a1ae01c1ccfab9e79f478d9fe7dc31 13732293 1638516844 2021-12-03 07:34:04 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012170522 13.31576812 4219.32 Withdraw | |
0x2587622b73e97f9affc1997ddcccf0f91448db4dd5dc0baa5747500741fa1f17 13732443 1638518644 2021-12-03 08:04:04 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1240078504 135.6769891 4219.32 Fund Loan | |
0xe005f939fb0956a0ed4325221f8ed0d9b374e2285a8ef0415cbbc8419de144f9 13732472 1638519171 2021-12-03 08:12:51 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02304650578 25.21518198 4219.32 Claim | |
0xbdb6865d96943b51ef78a14f1ecc2ea19980d49808c11663e57cbd7fdba800b3 13732618 1638521244 2021-12-03 08:47:24 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0106025 11.60019525 4219.32 Transfer By Custodian | |
0xc6724076f47ad4c39c1070e9df025e06cb11528011f9cb2a9e139587746882b6 13732618 1638521244 2021-12-03 08:47:24 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.042238856 46.21353235 4219.32 Increase Custody Allowance | |
0x95e1093564b8e8ffdd71b6f20e5406e24e09fc69b9008deae38241af55da1456 13732622 1638521299 2021-12-03 08:48:19 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00784585 8.584144485 4219.32 Transfer By Custodian | |
0x45197d447937a5610272a4cde997be2f5c732bd45792173bad7f874efd7f25c4 13732622 1638521299 2021-12-03 08:48:19 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.031911945 34.91485902 4219.32 Withdraw | |
0x2868d52b14cb99ea4f450ef401f3d5b1769d679f86ea6b0f08d94d03a82e5b38 13732626 1638521372 2021-12-03 08:49:32 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0089061 9.74416401 4219.32 Transfer By Custodian | |
0xb08b0a87fcfb9e4f9e51269411dae91ed9340011f82583f5152b6c4ca187ed63 13732626 1638521372 2021-12-03 08:49:32 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02757993 30.17520141 4219.32 Withdraw | |
0x0dbc41e5e20a04a3337541f66affb5db06aed4112e06f8872e9f27c19d2dde27 13732627 1638521379 2021-12-03 08:49:39 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012465012 13.63796963 4219.32 Transfer By Custodian | |
0x5b09d8daf951af05babc98fec610fb3baff1471d38bfdee65e823435594d20bd 13732627 1638521379 2021-12-03 08:49:39 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03861543 42.24914196 4219.32 Withdraw | |
0x7639ba1d449bd6051568d62c91705544542248a68740659b05c6c8a4ca6126da 13732896 1638525213 2021-12-03 09:53:33 0xf463e5611ace3c1c523be44474b74f925f1353f7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003483014204 3.81076584 4219.32 Intend To Withdraw | |
0x839b9fc58315c62bd86ab42087a34962b2659d31ab11b2823da5549ba309c5c5 13733002 1638526419 2021-12-03 10:13:39 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00894851 9.790564791 4219.32 Transfer By Custodian | |
0x99efce29385a476200f0c96cbc362390233516cdcbc2dc2987991237b6088001 13733061 1638527159 2021-12-03 10:25:59 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.027455708 30.03929012 4219.32 Increase Custody Allowance | |
0x3e5efbdcd0fbc1b30e73513ad1b70f5352db784aee15ca66ce12e1674947aa66 13734151 1638542306 2021-12-03 14:38:26 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00852912 9.331710192 4219.32 Withdraw Funds | |
0xecead11833d02f5bda50b2afbcd2ea3b9706fab4a0c272e5794427598ce03574 13734373 1638545789 2021-12-03 15:36:29 0x3d57b83154423edb0ba0e747b03858e69075fca1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01284275988 14.05126358 4219.32 Increase Custody Allowance | |
0xd3798837d8e036000cecb3aa6950ad72f921dac6d8d68587fdbaee3bbb7c933d 13734587 1638548689 2021-12-03 16:24:49 0x8fe7b143b2c67739e9c933da0a48142b14c4415d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.017926552 19.61344054 4219.32 Withdraw Funds | |
0x60ac014d43ad86a1e879cdd1d1f7da5f096e637151f5bfa357cec17b7308fbfc 13734699 1638550160 2021-12-03 16:49:20 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012559526 13.7413774 4219.32 Increase Custody Allowance | |
0xd52f20be150ca2ea74f259d3b57e058006d9ef97ca9c7cf4d3fe0e9caea0052a 13735252 1638557907 2021-12-03 18:58:27 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.015218224 16.65025888 4219.32 Withdraw Funds | |
0x665c08e3031f3e8885b599a630c44969d5181bc638d97ca486ceb595a75a0013 13739861 1638621673 2021-12-04 12:41:13 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.2251397978 246.3254528 4124.26 Fund Loan | |
0xe5d56b3e45a1791e821bd03d56d8d0a6e8f38f9aa11c6e8db81ab6365905b389 13739861 1638621673 2021-12-04 12:41:13 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04461761353 48.81613096 4124.26 Claim | |
0x31fe6ea87c04405114849a0c82ec9068df1d3723d6c4353b02f707fc44c9a99f 13741600 1638646181 2021-12-04 19:29:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02336868784 25.56768136 4124.26 Claim | |
0x5875518085c16ef2a29e446b7cbdafd99c0eafba36d5fb41f0d3eaa30c89feb9 13741601 1638646200 2021-12-04 19:30:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02319392404 25.37647229 4124.26 Claim | |
0x7d33ae7ca8fa41afb75825cd051781a67778ca15cff14c33f5ff205131fec498 13741655 1638647031 2021-12-04 19:43:51 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007391904 8.087482166 4124.26 Withdraw Funds | |
0x5874f8930bbd101ed8904d9d6a7b405178cb36091b99f2ae608e446b041f3e20 13746629 1638715273 2021-12-05 14:41:13 0xc50eaaee441566b4ef4f1e3270d19f24223cddf4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0184797 20.21863977 4201.09 Withdraw | |
0xbce2d12a937c0cf4dfd69c7eade4be6523320274b574ade813ff3a824a8de5ab 13747778 1638731707 2021-12-05 19:15:07 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01389922206 15.20713885 4201.09 Withdraw Funds | |
0x31c8a18e4e3522bfe87986237bf61b317064a29ce5a5a019fcd089b11e8e5bcb 13748118 1638736406 2021-12-05 20:33:26 0x3c8319dd83fa18ec1a0df2acf65277a731514d67 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01551724545 16.97741825 4201.09 Deposit | |
0x3f2cbdf0dd9b25ad8089a9b99dfe15fb51fb0e87961441d42b9e895c6313b11c 13748151 1638736740 2021-12-05 20:39:00 0x3c8319dd83fa18ec1a0df2acf65277a731514d67 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005037975915 5.512049449 4201.09 Increase Custody Allowance | |
0xa4b6762711ed8993e17c76616228cec02fd9edc9422f334a76e15d58cd0d1380 13748733 1638744928 2021-12-05 22:55:28 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01758523164 19.24000194 4201.09 Deposit | |
0xb2f6843faf641c706d2b0863529fd146af919cb9b7029eaf3e684361d3b70e91 13748738 1638744994 2021-12-05 22:56:34 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006217795082 6.802889599 4201.09 Increase Custody Allowance | |
0xf2f364b26f941e38a5850dd012b19169e4c681b695444dc9ec3da13a716d8a39 13755570 1638838476 2021-12-07 00:54:36 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01204386274 13.17719022 4309.7 Deposit | |
0x288b60d1d0b7f156a66c32d9f3c941d4ec6bdb8fab41e6ade4b2dba3e673834c 13755583 1638838581 2021-12-07 00:56:21 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005289028742 5.786726347 4309.7 Increase Custody Allowance | |
0xf9e500b0b14a62af67387c8472b4f3b88e71ea7e5217e54bb014db3e8c2272ca 13755595 1638838841 2021-12-07 01:00:41 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01439184506 15.74611768 4309.7 Deposit | |
0x5596c6fc6291126a133a6fe924dd9b7f99d5905c49ba2b506a2403be544bfb64 13755599 1638838892 2021-12-07 01:01:32 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004473474153 4.894428071 4309.7 Increase Custody Allowance | |
0xa22fc2fa4b0b05fbcc16f9b07d3b809b17e37295c8d2ea026a2e94b1df6ca3e5 13756276 1638848572 2021-12-07 03:42:52 0xdf19da854b4f07717a1de126806f35ecb6bfbc6c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00997267877 10.91110784 4309.7 Withdraw Funds | |
0x0c165424765c126115443bc78704a71166342a31d5ccdcfbdd471b773036c78a 13756289 1638848730 2021-12-07 03:45:30 0xdf19da854b4f07717a1de126806f35ecb6bfbc6c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003849058933 4.211255379 4309.7 Intend To Withdraw | |
0xa46b4d8f92f75a3ddb744f2f32a818711825e8310d499b2e3144691f20d86aa6 13756335 1638849358 2021-12-07 03:55:58 0xffef59ed193185aa2ad61fe1c7c4afa17a8ca789 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006861130326 7.506762689 4309.7 Increase Custody Allowance | |
0x54184f348d337ca6bf4713e765a09a4b73010119d8884528685b6825e58a43cb 13757642 1638867684 2021-12-07 09:01:24 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009517439779 10.41303086 4309.7 Withdraw Funds | |
0xb0c3ebdc08f0b3c19411a2c86b4fa2125bfefb25ab5fb0bbdd1c5819df0446fa 13757752 1638869070 2021-12-07 09:24:30 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.08980305039 98.25351743 4309.7 Fund Loan | |
0xe31ec84d0f2abbf82da6c18a5f94a7c53f6b15f1fb2065cac19ea7f99239fc3e 13757759 1638869133 2021-12-07 09:25:33 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01538894284 16.83704236 4309.7 Claim | |
0x5643c18b38f3f4995238e2281f6091a0a9d036177b5defd6a7b641bc279a6db3 13762329 1638932351 2021-12-08 02:59:11 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00852912 9.331710192 4439.98 Withdraw Funds | |
0x67d1ea82aa7f75f9de21dd14c86478ec7d8aba342606afd50d11e24f7dcaf025 13763842 1638952809 2021-12-08 08:40:09 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01427080364 15.61368626 4439.98 Claim | |
0x2c2123efccb3edcf5322415a97bae2a583a829f3b2cbed5c916f1b9a676715ac 13763844 1638952853 2021-12-08 08:40:53 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01424303559 15.58330524 4439.98 Claim | |
0x477bdb7d70ccb134999ea03eace41b1a33e79f26cf7282fc634672a6476fdd75 13763844 1638952853 2021-12-08 08:40:53 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01424303559 15.58330524 4439.98 Claim | |
0x39c1da5e221f12c46e54cd2b9709aa93efbf0485b7af8ad781267e90cabafef9 13763844 1638952853 2021-12-08 08:40:53 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07258218521 79.41216884 4439.98 Fund Loan | |
0x425050c6e47b7d34c0de021001d3167443b3868dd77900d6cce22a0f44c1e4aa 13763849 1638952936 2021-12-08 08:42:16 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009819774194 10.74381495 4439.98 Fund Loan | |
0xd2bc7b82c38af6c60110a3f16c9a7587aa3897b456c12e1a76da3be13fc8e09e 13764015 1638955253 2021-12-08 09:20:53 0x0148107d2b0fc3e90e8ac427a9058beaffc5dd79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009254273474 10.12510061 4439.98 Deposit | |
0xd03096a1251e468392c3c3c2e7e2b66bca17589411f40209e365ac084d15f999 13764021 1638955305 2021-12-08 09:21:45 0x0148107d2b0fc3e90e8ac427a9058beaffc5dd79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00376637237 4.12078801 4439.98 Increase Custody Allowance | |
0xe9189e96423d3f99fcfca4fbcb8b209d7311662b6ec9eb1cdaa19a51538ae347 13764567 1638962970 2021-12-08 11:29:30 0x775f6a8eaa17775eb19e7f873ae2d8a807b20b95 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008931419504 9.771866079 4439.98 Deposit | |
0xec1ceb5e309519ba85be8ae61147b4d4c65f040af408db1f7fb82d03f67742e8 13764577 1638963093 2021-12-08 11:31:33 0x775f6a8eaa17775eb19e7f873ae2d8a807b20b95 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003765133174 4.119432206 4439.98 Increase Custody Allowance | |
0x3b6cacc128af7649af236d8d5aa11710f42255cd34ae18d7937b344f709c93ad 13764587 1638963327 2021-12-08 11:35:27 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003310002303 3.62147352 4439.98 Intend To Withdraw | |
0xd3ded02bbed415c25f48333b3a21a488426f2d179d95449c86e851395a319a4c 13766972 1638996510 2021-12-08 20:48:30 0xb7693d3f040d66ab89ab86e7f8688c01febbc77c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01487242945 16.27192506 4439.98 Deposit | |
0x9f97ba6485ade2c63bcb495f15e613af48478322f50c8e625dd92641d62422d5 13766987 1638996801 2021-12-08 20:53:21 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01722876261 18.84998917 4439.98 Deposit | |
0x2bd1e6f16288ff59152db22c8c2170d499465bdccc3c3db6fc21e6f833dd64b2 13766991 1638996855 2021-12-08 20:54:15 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007237660138 7.918723957 4439.98 Increase Custody Allowance | |
0x0b52045079583b006aa62fb31efb1cf5daaa2726db1a4394bcbebcb70333ee68 13767096 1638998258 2021-12-08 21:17:38 0x7a75789832c4fc67edea0dc8aee186af4d1248b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01810832458 19.81231792 4439.98 Deposit | |
0x8aac33c98e8a4337099e9f116c5e56b1f98b2266e92f327f4546551a62b32316 13768436 1639016661 2021-12-09 02:24:21 0xb7693d3f040d66ab89ab86e7f8688c01febbc77c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005476405942 5.991735741 4111.92 Increase Custody Allowance | |
0x2988f8b5f40ebf41babb911fffba0ab6d79823e1019f0695955d0346429eb209 13771884 1639064734 2021-12-09 15:45:34 0xe9d6e2b6d15e386266b634fe12b868faa3b3fd5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01692061925 18.51284952 4111.92 Deposit | |
0xe3d95a8c26cd9b56eee5c862502411c5930eaf618fa6fcf292a047ab5f4d001a 13771920 1639065226 2021-12-09 15:53:46 0xe9d6e2b6d15e386266b634fe12b868faa3b3fd5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007370403957 8.06395897 4111.92 Increase Custody Allowance | |
0xd09330f3ac2757e15a4f451c4cfb4822d95093071e7a33671a0f110854bf682f 13772164 1639068304 2021-12-09 16:45:04 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008049648068 8.807119951 4111.92 Deposit | |
0x2ca0b89899a3a407d5d7c91e4a85c7f46b8da3ae551d700ac2ad681a2625451a 13772168 1639068341 2021-12-09 16:45:41 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002855246988 3.12392573 4111.92 Increase Custody Allowance | |
0xf0c6a4f552acdbf3a79ffbf0a80b17b97aca49145e0130a37a23f9c5e605d3fd 13772332 1639070496 2021-12-09 17:21:36 0x7a75789832c4fc67edea0dc8aee186af4d1248b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007383790128 8.078604779 4111.92 Increase Custody Allowance | |
0xf964cbd60ad88709f2a1d22dbc642ba101d9f861c6b22193b0d2d7d680310d5e 13773529 1639086932 2021-12-09 21:55:32 0x96a6505172a24e54a56147cf884bd4c2f315f741 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01442599632 15.78348258 4111.92 Withdraw | |
0xbcdaee1a6e5a883db65c83e68f98ae5c5f3ac58147b0e0fdfdeaac97346e848f 13774693 1639103205 2021-12-10 02:26:45 0x907da5639a342f865269a4de908a8ad248937cff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01330249667 14.5542616 3902.49 Withdraw | |
0x0daa22022e3779d663e1c69b668a505ac9148fb9dc3c60db882040baa739d285 13776676 1639129826 2021-12-10 09:50:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01021646666 11.17783617 3902.49 Claim | |
0xf5cf94da94654774d514f869f7c3b7818d7e3bd57798f05d2084ff76eeb5b5f4 13776820 1639131651 2021-12-10 10:20:51 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01370606145 14.99580184 3902.49 Claim | |
0xcc4ea323fbc23d5826f6c1204b4181af1ab8158ddfff1aa770a45037bb2f48d1 13778294 1639151256 2021-12-10 15:47:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03047825466 33.34625842 3902.49 Claim | |
0xf2d15435c5d46d5107dc6120aec5eb31f5896a3c8c3511813218bf8149f26610 13778328 1639151688 2021-12-10 15:54:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1548960437 169.4717614 3902.49 Fund Loan | |
0x67fd175f91ead988ce4cf922b57152f34d2b25972e457811c56083893b609ff7 13780225 1639177045 2021-12-10 22:57:25 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007737009394 8.465061978 3902.49 Withdraw Funds | |
0x423315e2c6921658961da84815e1167412ac84de1a6c00c8ed5e3f65f9a0f704 13780380 1639179170 2021-12-10 23:32:50 0x044a9c43e95aa9fd28eea25131a62b602d304f1f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02351740978 25.73039804 3902.49 Withdraw | |
0x1e742b9eec0bb4f7cd61e0fbad535c6e0aa178484fc0d78b49fb8b09acf34b96 13783279 1639217960 2021-12-11 10:19:20 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004425554511 4.84199919 4088.68 Withdraw Funds | |
0xa1e4e1975e37bb0c0ff4e57196bd247a1aa4eb69004804cc87523810bb821653 13783887 1639226241 2021-12-11 12:37:21 0xad4e7250da56eb33e1a376250b916526c81cf1ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006084658537 6.657224905 4088.68 Deposit | |
0x45a64f9aec980981eb34afae86b0513727e11587e29cffa3afffad5fe4e700b0 13783900 1639226448 2021-12-11 12:40:48 0xad4e7250da56eb33e1a376250b916526c81cf1ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002003914301 2.192482636 4088.68 Increase Custody Allowance | |
0xb4f1de15d09d915133d4a2e5d9cdc9ffa6598742df31d7559522530c990de3ae 13784535 1639234799 2021-12-11 14:59:59 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007729322351 8.456651584 4088.68 Deposit | |
0x87ef86eb606650c04baff4fa7de879680e6def8c2677131c95b51adbd8d3af26 13784538 1639234881 2021-12-11 15:01:21 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002854047706 3.122613595 4088.68 Increase Custody Allowance | |
0xb228a539d78b993de8e7c0764dafc727b105e49bdc38f88d616bca31b2272a98 13784545 1639234952 2021-12-11 15:02:32 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006008802468 6.57423078 4088.68 Withdraw Funds | |
0xc7b9bcd45bc41067ad6f69463b61af36def31233540be77b438eab5fd8201ec9 13784557 1639235177 2021-12-11 15:06:17 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005568947903 6.0929859 4088.68 Withdraw Funds | |
0x01da92d1eb6097d894ccd92984e63f37363ae60e8dc92c743557f88b72bbdf2e 13788228 1639284145 2021-12-12 04:42:25 0x19282e37b5319727501e9577d79dbcdf43803883 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01047096676 11.45628473 4135.31 Deposit | |
0x3ce27b9552f14981cb05baca7419185304fb9f3d7272082fd9549a60f70b1f6d 13788231 1639284164 2021-12-12 04:42:44 0x19282e37b5319727501e9577d79dbcdf43803883 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004188626677 4.582776447 4135.31 Increase Custody Allowance | |
0x9624d264ad019c1c89ad08588f09b0c59ae58ee57407198ac62ca1436fc1c34d 13789601 1639302926 2021-12-12 09:55:26 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004561786075 4.991050144 4135.31 Withdraw Funds | |
0x1cf16a0c553cc09e3b00bfc9bf728617006f1c97f3213f6408b3aa503d46ddd9 13790041 1639308805 2021-12-12 11:33:25 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004411804023 4.826954782 4135.31 Deposit | |
0xaacfa5dbe32c9b007669de773749488d0839d114fa06c9c5697d017cbaa7fa3b 13790310 1639312231 2021-12-12 12:30:31 0x3c229864378b3b0adf98ae247ca33986aed8ec1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004535919151 4.962749143 4135.31 Withdraw Funds | |
0x13c0dcc7fe0f1d16c4866aafde4f4c67e481c64d7219e99fe0310b66cbfd455a 13792256 1639337564 2021-12-12 19:32:44 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006222918957 6.808495631 4135.31 Withdraw Funds | |
0xc476e22e5b9f17d516ad845263b8082d5fcf568f183ec3be4032c3849c58617a 13795007 1639374153 2021-12-13 05:42:33 0x12b5c9191e186658841f2431943c47278f68e075 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01091941533 11.94693231 3785.08 Withdraw Funds | |
0x21c9c9af693fb395c1f544890387cda535ee2d2d9793f67b6987d64786cdf0fe 13795968 1639387241 2021-12-13 09:20:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0111737336 12.22518193 3785.08 Claim | |
0x5a2ace3d92dbd48de14bc2105a9ac20dfb20cea0ae7a00901e679565f5f08dce 13795971 1639387297 2021-12-13 09:21:37 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01140416783 12.47730003 3785.08 Claim | |
0x1d5a43de7a1c9c2a3b6ab4d89ccf97e8d53caff3822ed276358c9bbf7b4e3688 13796164 1639389808 2021-12-13 10:03:28 0xf463e5611ace3c1c523be44474b74f925f1353f7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006989731873 7.647465642 3785.08 Withdraw | |
0x01c5d68a79e3d656b5a444e0984b5c08edb69120d2be8b378f6f26aca0b3d4db 13797769 1639410879 2021-12-13 15:54:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03210743602 35.12874575 3785.08 Claim | |
0x3e5f8ffc309f00be7af110142aaec5e76b33e3192356564ead5dc647ac83c699 13799366 1639431769 2021-12-13 21:42:49 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008270494981 9.048748559 3785.08 Withdraw Funds | |
0x0ea70c62c0952eaf8960347adb85275bf32e0c0889a3d4369158a9f3267416cb 13802479 1639474120 2021-12-14 09:28:40 0x205c1b018a55fe97ad2140b900023f845f4635ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005838588101 6.387999241 3862.18 Withdraw Funds | |
0x3983900e8cb5d0cc2b5a9d3553b07dcf4e300a824b18942bb1ac0743b0ad9e9f 13802510 1639474603 2021-12-14 09:36:43 0x205c1b018a55fe97ad2140b900023f845f4635ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002586007356 2.829350649 3862.18 Intend To Withdraw | |
0x148f61b2e18300dc20fd772c101492e0f61d4c0096811ee9cd0126a53a9d184b 13804126 1639495893 2021-12-14 15:31:33 0x2adbc63f1a72d33b8050521eca1b57d335bd9dbc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00371127676 4.060507903 3862.18 Intend To Withdraw | |
0x8494d6c6a9a6f2ec3494809317fbcfd7ac3e7a0ba33ba9fde2c6811f920ab9aa 13805352 1639512355 2021-12-14 20:05:55 0xdbb23bc0a753eed82d29618d313bb4a13e952be0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003350800382 3.666110698 3862.18 Intend To Withdraw | |
0x594a896f40b65e6992df76b10dd0708b8d85d8104fe01d08559784b7d2906845 13806597 1639529077 2021-12-15 00:44:37 0xf097c7f3b2203692427e4545b79613bd3cff66ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005194708796 5.683530893 4020.19 Intend To Withdraw | |
0xf9aa55c45b73dd75ddea44b83b97a372c5b5a8ae055e73bc6f0e979ad1503556 13806917 1639533398 2021-12-15 01:56:38 0x86a5905c330325d930830c2a4c7bc16096f10cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01420455886 15.54120785 4020.19 Deposit | |
0xd42cb4e726913af3970783b864be1f4e4203b33c1299ed4566d80c952d8ccc5e 13806921 1639533483 2021-12-15 01:58:03 0x86a5905c330325d930830c2a4c7bc16096f10cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006336504454 6.932769523 4020.19 Increase Custody Allowance | |
0x5c879c8770f70d4aabce5b272f46e260036a75d3087344d40084bfce2381fc57 13807178 1639537056 2021-12-15 02:57:36 0xb7693d3f040d66ab89ab86e7f8688c01febbc77c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01103791503 12.07658284 4020.19 Deposit | |
0x90df739ef2624843c674f1e04017898233f8996be33ca920a51b7e009d40de74 13807187 1639537177 2021-12-15 02:59:37 0xb7693d3f040d66ab89ab86e7f8688c01febbc77c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003313077327 3.624837904 4020.19 Increase Custody Allowance | |
0x54568e4e6390085a59e798ad49bbf9685e65f0854e55e6904d4961eefecd9be0 13813122 1639616336 2021-12-16 00:58:56 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00615992 6.739568472 3957.03 Withdraw Funds | |
0xd549acef3e2c8aac1dc3503d4d6884e84efb2426f34b294a3ab3d45a1ffe5db2 13813342 1639619424 2021-12-16 01:50:24 0x57a243c0df4c30efc64d7a4e94720b36d766fa3f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01266972876 13.86195024 3957.03 Deposit | |
0x3ec025b0a1a79fb6320da53ad308528922eb6756bd1c43c992336cd1b08fce5e 13813346 1639619476 2021-12-16 01:51:16 0x57a243c0df4c30efc64d7a4e94720b36d766fa3f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005785936739 6.330393386 3957.03 Increase Custody Allowance | |
0x90c2ae46154c4b9193fff435bac5a4a1b9fd65af73b42e64d96744c8cc365406 13813602 1639622767 2021-12-16 02:46:07 0x36aa7d15a2c4ceb8357aeec2cf628f1d8af7ac1a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007919370941 8.664583747 3957.03 Withdraw Funds | |
0xa1ee16b283508c0c78a6fda3fe9774214d914e1ce898e501452d2e642ddb2dbc 13815812 1639652277 2021-12-16 10:57:57 0xea93c16b2ed1cd73e6f9d5b5a92c36e504e8dc72 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002485584752 2.719478277 3957.03 Intend To Withdraw | |
0x7f29aae78b2e7d54495b759fa79b1ebc20515232b92e9c082f078da7f1ba076b 13816297 1639659040 2021-12-16 12:50:40 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02360606275 25.82739325 3957.03 Transfer By Custodian | |
0x8a22ac79635377c0ef75d0098b479a7d259520ec92f04ad880c816bb71b99903 13816297 1639659040 2021-12-16 12:50:40 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.08278987411 90.58040126 3957.03 Transfer | |
0x56407a94c82673bd26a49c51dbd45e6ff221d70d7ba5491a42869c3e55727fb3 13816320 1639659378 2021-12-16 12:56:18 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02378202339 26.01991179 3957.03 Transfer By Custodian | |
0x8c9a080bebdf0bca871235cf829e04083057cf34f37057af59b5c59e2bda201d 13816320 1639659378 2021-12-16 12:56:18 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05463977353 59.78137621 3957.03 Transfer | |
0x8f307b118b87f6cdb5afb4270c0ec1d4b91c9428d0238bc883a60d8ccee3e2fd 13816329 1639659499 2021-12-16 12:58:19 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02349424925 25.7050581 3957.03 Transfer By Custodian | |
0x6caabf30eda5427cd1becbb6d5ca3e1cd5e8b4d81bc81d61614a61dde70887a8 13816329 1639659499 2021-12-16 12:58:19 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05398723353 59.06743221 3957.03 Transfer | |
0x9c4ad781a056ae138dc12c15295c381a987047c3872d8d410c660d041d1377f5 13816338 1639659644 2021-12-16 13:00:44 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02409084358 26.35779196 3957.03 Transfer By Custodian | |
0x207ae5b0f170bd406c3f2f1949a8037a4b4eb03c89874730a3bf4ff7491a11ba 13816338 1639659644 2021-12-16 13:00:44 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05534929537 60.55766406 3957.03 Transfer | |
0x9ca02d98a2338d102570989205d11946612b0fc35334e7066828c91d2c1a96eb 13816341 1639659679 2021-12-16 13:01:19 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02383715007 26.08022589 3957.03 Transfer By Custodian | |
0xd9bbe57c79a77104df80f019222dd51eaea7f4584b9e720addc91b1a7aaf178a 13816341 1639659679 2021-12-16 13:01:19 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05477518237 59.92952704 3957.03 Transfer | |
0x5ab2c62f4aa04e03a090ae855f645cc827e1f53570da814b5c932ff326dc7c03 13816344 1639659811 2021-12-16 13:03:31 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02489055875 27.23276032 3957.03 Transfer By Custodian | |
0x520ae80bbf1afb7583b7448beb433307e3ebb5e71e35f2238ea1a1a282544433 13816344 1639659811 2021-12-16 13:03:31 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05718666029 62.56792503 3957.03 Transfer | |
0x9db985441fd55e29e40eb3255287b25b6bc572904c55c463e2e041deece32723 13816348 1639659933 2021-12-16 13:05:33 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02547470391 27.87187354 3957.03 Transfer By Custodian | |
0x5c7b49b42969bcc2aac493b590bda808c1ac763cee1497828589960b77d00a8d 13816348 1639659933 2021-12-16 13:05:33 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0569002043 62.25451352 3957.03 Transfer | |
0xf653e741c2a60ddaa632c1e8b255aa77d5913337bea073ae54a0c44b5d5654e4 13816356 1639659996 2021-12-16 13:06:36 0xfb26b00f5bde7e466034b54bf11794421be53d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02129403045 23.29779871 3957.03 Transfer By Custodian | |
0x3945650ea5b281e6931716fc40c1caad571333b464783fc302bc025f1e1401f2 13816356 1639659996 2021-12-16 13:06:36 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05363373666 58.68067128 3957.03 Transfer | |
0xf41a1a9a8d34ceacbbef6d184d9335914ca3aacda6bfcc8a5a4ad06f4017a150 13816370 1639660184 2021-12-16 13:09:44 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03563469 38.98791433 3957.03 Increase Custody Allowance | |
0xfa2634965b034e759de9381714d58a726a4baa623f32a02c9fbd766598e592d3 13816644 1639664004 2021-12-16 14:13:24 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004055203107 4.436797719 3957.03 Intend To Withdraw | |
0xc32cfdaa4902c4b77622032e4cf453f35054b55a7998dc24513b5bcda2343643 13817600 1639676712 2021-12-16 17:45:12 0xe79bc301e7dfaeb5eb0a3cc3be3ab71cf721ae6f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009220267 10.08789412 3957.03 Approve | |
0xec8fc5724cf61b77bfbd363f35d78f3d3efb7c36c974e4836d1ce4ce176e3b1b 13817713 1639678098 2021-12-16 18:08:18 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007618484853 8.335384277 3957.03 Intend To Withdraw | |
0x3baedf288d0c24f627d36f6a4fd2955d1c9d316b74cc39ba8d438b0ac2a6f381 13819133 1639697439 2021-12-16 23:30:39 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005029655921 5.502946543 3957.03 Error(0) Reverted Transfer | |
0xfab1fca9fe4785ed57274a82b6f199ab8dfe85cc8d4c0117fe943de4b28f7bcf 13819155 1639697673 2021-12-16 23:34:33 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002358079182 2.579974433 3957.03 Cancel Withdraw | |
0xe6e51b5fe1590ce257fe788c466c95597029f38d48e6b4b4908f4e67f87335f4 13819158 1639697729 2021-12-16 23:35:29 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004967430639 5.434865862 3957.03 Error(0) Reverted Transfer | |
0xfb962d7fd255509860e3311c6aa6d60162ec23de8800956122db31bdbcf1dc63 13819200 1639698343 2021-12-16 23:45:43 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004851815904 5.308371781 3957.03 Intend To Withdraw | |
0xbd4d4d6b8fa41932a03278d703df5666214ea1991bf542d926818456ff478a77 13820019 1639709218 2021-12-17 02:46:58 0x36aa7d15a2c4ceb8357aeec2cf628f1d8af7ac1a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003701667629 4.049994553 3876.37 Intend To Withdraw | |
0xb2ce42de1d1e23063f8d844253a8524866ac547b8490bad8b48f04841a532049 13822715 1639745465 2021-12-17 12:51:05 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01533903953 16.78244315 3876.37 Claim | |
0x3ef2c559264ad23478fa06af8e250f92990b581c0ee4aa0293ce4b9a34a758b2 13822720 1639745506 2021-12-17 12:51:46 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01529294621 16.73201245 3876.37 Claim | |
0xc2486a5d90885fe1da54b0db904fe075dcd0e10a77ff5f3d68e18a8691f747a6 13822726 1639745575 2021-12-17 12:52:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01307950319 14.31028444 3876.37 Claim | |
0xa457f12b19a2923c15dcdfe62f47e696f5660c6decaf0e100ab41875ece25ee0 13822729 1639745621 2021-12-17 12:53:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01429768103 15.64309281 3876.37 Claim | |
0xdf4a8f9d113f51569e2ccb2087c4f971a90b6a490b7bb201eec5b806fc3844d6 13822732 1639745671 2021-12-17 12:54:31 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01410419158 15.43139601 3876.37 Claim | |
0x4de56d23f062b2476ccade19c38e681c26d32a2ee768aa2d1956b01a6d73bcb0 13823142 1639751062 2021-12-17 14:24:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01254881422 13.72965763 3876.37 Claim | |
0x73eb71189330c6953a428921c781a3daa0beedb63dee317517ed535b106682fd 13823151 1639751158 2021-12-17 14:25:58 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0132133484 14.45672448 3876.37 Claim | |
0x25005a841d1bf6a50e1cfc3be4f6eb979b08c6a093146e07e8c798c921945404 13823648 1639757919 2021-12-17 16:18:39 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00616262556 6.742528625 3876.37 Withdraw Funds | |
0xd07833dd918bba426f2d5712ea48bb9ac5c6244d26fe598ac92b40c705b87c95 13823652 1639757981 2021-12-17 16:19:41 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001962248603 2.146896197 3876.37 Intend To Withdraw | |
0x3e5e8e8bdaaf3109d345c94e1967f5e694abe39f556c70f7fa2f6eb56219bff5 13829072 1639829687 2021-12-18 12:14:47 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00562289139 6.15200547 3961.96 Withdraw | |
0xb7d92502567fdf5d534becdafaea1dc203335967fd74ac5a9add8ee4b2b04e5f 13829089 1639829856 2021-12-18 12:17:36 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004590551767 5.022522689 3961.96 Deposit | |
0x32de286ed20bf1f3f9aec2e93f6bc52a34ef9c33f6faabd94e9abf1e7b3257c8 13829125 1639830315 2021-12-18 12:25:15 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002655377239 2.905248238 3961.96 Increase Custody Allowance | |
0x10c99e1bed2b81fa5b4f9826a20e05fe73f479788a94c0131b3742f373d31ad3 13829161 1639830882 2021-12-18 12:34:42 0xdf19da854b4f07717a1de126806f35ecb6bfbc6c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007714389726 8.440313799 3961.96 Withdraw | |
0xa2d92e8d8ed07d693eed82f3895a11ced681270300f8a6921bb83bdf8d71a294 13829314 1639833027 2021-12-18 13:10:27 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003387890096 3.706690554 3961.96 Withdraw Funds | |
0x054eb2939a29ec0a2df3305abb792cff63af86a326c71f7a0b789818e5790185 13829610 1639836828 2021-12-18 14:13:48 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007746270685 8.475194756 3961.96 Deposit | |
0x46ec8f5ae899bbc58ad6421970627e815b190c77df214865a484f2d736af65b6 13829622 1639836967 2021-12-18 14:16:07 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003203478068 3.504925355 3961.96 Increase Custody Allowance | |
0x7b87b3a5557bc40559bf3fea6128f929527d68e4137be1e41a9824de8028c08f 13833756 1639892895 2021-12-19 05:48:15 0x61db3d87aefb6e5d03fd0b4cdcfcbe04f516491f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001967155028 2.152264316 3924.55 Intend To Withdraw | |
0xe038eb9a52f459c9bca71714f4b45fdeaf3561312f4be84d71fbd99f14ba2123 13841775 1640000264 2021-12-20 11:37:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01159208535 12.68290059 3945.57 Claim | |
0xb66963c7adc73cb76bb7976f5625984a01dad795e7b0888131df7351ab43128e 13841775 1640000264 2021-12-20 11:37:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01159208535 12.68290059 3945.57 Claim | |
0x08d40c03e493c9dc55dd9a98010b21beacbea3996c4ef378aa52203b97a2e6ab 13841775 1640000264 2021-12-20 11:37:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01086131398 11.88336362 3945.57 Claim | |
0xa497699e9b074d398e5c003db983d5735885101f70003c0790b4cd62724767b1 13842563 1640010311 2021-12-20 14:25:11 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00215889971 2.362052173 3945.57 Intend To Withdraw | |
0xe6153d0bcb6e1de27c88c207ff3f9db8f4a7ebf48e30610598485e432c09de4e 13842566 1640010349 2021-12-20 14:25:49 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00466031818 5.09885412 3945.57 Withdraw Funds | |
0x9f2a64bad7984d8a45d8a6002c4e9099618dd793131f3b550a7a10e30191be30 13842571 1640010393 2021-12-20 14:26:33 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00316507351 3.462906927 3945.57 Increase Custody Allowance | |
0x5bbbac753367beccdbeb0050563f50901cbb9af88b789d7875f80d6152461611 13843030 1640016524 2021-12-20 16:08:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01164069802 12.73608771 3945.57 Claim | |
0x0550c86c71a226f8e6e126bc2ad9eb0bd3d0dbd31d51ae4da2c53d75175670a4 13843052 1640016825 2021-12-20 16:13:45 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00278880773 3.051234537 3945.57 Set Liquidity Cap | |
0xb6082af8de1762c0fc165f289d9ff925270f16fee09edacdb79e555a822e2849 13843054 1640016863 2021-12-20 16:14:23 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02146571689 23.48564085 3945.57 Claim | |
0xee33eea2ad61b750d1288231889625d9e0631e34fca83ad3dc9803fb2251e995 13843056 1640016878 2021-12-20 16:14:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01752002574 19.16866016 3945.57 Claim | |
0xdae11faf1d7f92e235643913fd6051f147d3848221023278efadb7bf6e3819d6 13843161 1640018074 2021-12-20 16:34:34 0xd3fe68d8b606205eddce2d9a6e5839e82ecb24eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007010145688 7.669800397 3945.57 Withdraw Funds | |
0x45acac0917e1b0c00fa50e29b84c431e1f2671d4c35272c3d8317feb15f86f5a 13843616 1640023824 2021-12-20 18:10:24 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009001373563 9.848402815 3945.57 Withdraw Funds | |
0xae0698ff23d73e631a231a9044bc521ac71542093e3eb484a1bd05caca9436a4 13844457 1640034752 2021-12-20 21:12:32 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007737087738 8.465147694 3945.57 Increase Custody Allowance | |
0x01d048c65da5ae2274830c2cbb0aa3e24de76f79a63521083c98277d996a3c2e 13847474 1640075521 2021-12-21 08:32:01 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004051199162 4.432417003 4017.7 Deposit | |
0x8298bae983fad962518ab4b7e742e79b35bc42ce90f7a54db2fa067076cfd7c6 13847488 1640075780 2021-12-21 08:36:20 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001785227782 1.953217716 4017.7 Increase Custody Allowance | |
0x947b41a7c41fa7abd819c5cbfabc78a8d8d2ae7a81c488c21318cbac23cb133a 13848673 1640091742 2021-12-21 13:02:22 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004226641823 4.624368818 4017.7 Increase Custody Allowance | |
0xe0de89500c37791d0541ceec541a5d6194e4234f94deec3f6b9ba37395ce3d93 13853006 1640149506 2021-12-22 05:05:06 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006598052289 7.218929009 3982.7 Withdraw Funds | |
0xe615f1b03f310c18d32a912a29fbc1922d1751e888eaf3e9dcf37639b858c6d2 13853935 1640161904 2021-12-22 08:31:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009626578171 10.53243918 3982.7 Claim | |
0x3123c07d4046d639a7a05fd96f3552c570ae2f6dfb3a99026d9cc4d78e77446b 13853948 1640162023 2021-12-22 08:33:43 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008904235306 9.742123848 3982.7 Claim | |
0x10c4abd6aa84603b50d51608e309b5921b7eb8d5bea53ac11937e306edad2b62 13860872 1640255688 2021-12-23 10:34:48 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004579873188 5.010839255 4112.35 Withdraw Funds | |
0x1c382a8b86a5c01b2b77f7449936d24db4e4454c66a9129d7037ac55251b99f3 13863380 1640288629 2021-12-23 19:43:49 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01021146232 11.17236092 4112.35 Withdraw Funds | |
0xc23f15f1cb78576210a45f9d1d2df38eabe9f0c65feb6b165739b4dfb31a6bde 13873827 1640428737 2021-12-25 10:38:57 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002482389414 2.715982258 4109.25 Intend To Withdraw | |
0x203e8d05c16082c8a8f3ff65d89a0618c97269d4bde138ba1d80f8d67c08ed0d 13875173 1640446348 2021-12-25 15:32:28 0xbd096ba73671ee9c50209f85e0e3f950f588c4ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01238524554 13.55069714 4109.25 Deposit | |
0x9a262b8beedf147c2bcf161e9511b52e73d8410a86aaf8d335c7869839ea3ad8 13875188 1640446579 2021-12-25 15:36:19 0xbd096ba73671ee9c50209f85e0e3f950f588c4ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005603436582 6.130719964 4109.25 Increase Custody Allowance | |
0x78f286e63707d13281a57a20f824fb0b246d8c127969eb040638da81b5f53f97 13877502 1640477337 2021-12-26 00:08:57 0x60963e2a899797ff6c0259abcba37bcdfdfbaff2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002775192878 3.036338528 4063.44 Intend To Withdraw | |
0x1ad2974417c21f41772e7b63fd9359df4bfe823f45a82fa82ce87832fc33a1d4 13879911 1640509815 2021-12-26 09:10:15 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003601184 3.940055414 4063.44 Withdraw Funds | |
0x52e7d5165b0661a79e92ce96c51d1529723abf57ecdd8e5d77b4a9bb03a64b2a 13880420 1640516767 2021-12-26 11:06:07 0x96f4da61ee795f9f4a5cf0daadcc336adc73232a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004597541503 5.030170159 4063.44 Withdraw Funds | |
0x1b69edf12c929657d4274691e94fa6f6e49a88224f4a29dc1a670062b9af863b 13880425 1640516838 2021-12-26 11:07:18 0x96f4da61ee795f9f4a5cf0daadcc336adc73232a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002082794485 2.278785446 4063.44 Intend To Withdraw | |
0x6dd885ec36c65737c19ac33dd2a0ed0a1a33ea1191925dbd2c7de6d2661462a9 13881672 1640533066 2021-12-26 15:37:46 0xdbb23bc0a753eed82d29618d313bb4a13e952be0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007740375814 8.468745178 4063.44 Withdraw | |
0x4421af780e2de71c7967b42316478741e4e7dea85af5ab39a90b09101c994f34 13885744 1640587905 2021-12-27 06:51:45 0xea93c16b2ed1cd73e6f9d5b5a92c36e504e8dc72 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01329194708 14.5427193 4037.87 Withdraw | |
0xbbc52fa78ae8120f2e6f14ba9242c33896763d70e778e9a63cc72b4fb8b61274 13888708 1640627609 2021-12-27 17:53:29 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008982552492 9.827810681 4037.87 Deposit | |
0x98c1e0db17cdc28b98701a958aa11bbde5b7e98b1768d6e3d7ebfe3af8d43681 13888713 1640627679 2021-12-27 17:54:39 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003390079022 3.709085458 4037.87 Increase Custody Allowance | |
0x211ec1ab53310444ceecd60284d402b45bd3d75e12f5067b4c9cd503ecbf65d6 13893163 1640686943 2021-12-28 10:22:23 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005165565858 5.651645605 3793.54 Withdraw Funds | |
0x19df9a7e08408a0387ee083d5172540387e1c8d2c075dfb8662b99358797cda1 13893176 1640687113 2021-12-28 10:25:13 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00621260991 6.797216503 3793.54 Deposit | |
0xa5522ed710231e5347d532be7c7f6de5e9f9b427b4fa00e6a4a01aa95ea4298f 13893183 1640687182 2021-12-28 10:26:22 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001951128251 2.134729419 3793.54 Increase Custody Allowance | |
0x3a114b8f11213175d598ef2bcfd07c01285334fcbfc42feb370ca2f51e5bcd6e 13898255 1640754765 2021-12-29 05:12:45 0xbdca5ccb951cbace4acb7d92713e2a2d3432ac49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002851495013 3.119820694 3629.31 Intend To Withdraw | |
0xfba50e43738ca4f3adda5a77cdb4766d1a091fbee5d24bec02b62f9ed126a5c5 13898608 1640759231 2021-12-29 06:27:11 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005403525384 5.911997123 3629.31 Intend To Withdraw | |
0xcec800aeb6676a9d24c4906df6661dabbe3ec2f0fc98d6d2d357dca089bc723f 13899111 1640766252 2021-12-29 08:24:12 0x2adbc63f1a72d33b8050521eca1b57d335bd9dbc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0056703635 6.203944705 3629.31 Intend To Withdraw | |
0xec70d856e2857b57bf41cdd5e3f9b4434514abbb4d657e05dd3b67fd56d55bb1 13899484 1640771317 2021-12-29 09:48:37 0x61db3d87aefb6e5d03fd0b4cdcfcbe04f516491f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03204897151 35.06477973 3629.31 Withdraw | |
0xfcbfbe863dac217f0442b2c414eaf24997ac66353dc8a39576ee0d121db64b2d 13900051 1640778690 2021-12-29 11:51:30 0x02d5af97524e7eb7f895ccadc925fae394d9ed6a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.023031056 25.19827837 3629.31 Deposit | |
0x1bc2bf5e58146026ab6deef0ee488d5f66dc3982fc6cb61b2b9f27009d62617a 13900058 1640778811 2021-12-29 11:53:31 0x02d5af97524e7eb7f895ccadc925fae394d9ed6a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008240575 9.016013108 3629.31 Increase Custody Allowance | |
0x2f5826bbf1a1e65f1ea2f51e93a317a2641924385b870cb8dca1737f6fa47459 13900830 1640788848 2021-12-29 14:40:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02534077328 27.72534005 3629.31 Claim | |
0x28a2b9d9ed4ce6a1e13dde7c768ac1bbc8ae641efa693c7086ab302a2d892e4e 13900830 1640788848 2021-12-29 14:40:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02534077328 27.72534005 3629.31 Claim | |
0x8aa84fd63723894dcf09792ba88c2e43f78b599a51a163c3cd9a0a575400f548 13900830 1640788848 2021-12-29 14:40:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02704575224 29.59075753 3629.31 Claim | |
0x0094d17480269c9cbd3eade909f12c703c4154ff9819fa6f293fbc5ae30a6046 13900830 1640788848 2021-12-29 14:40:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02534077328 27.72534005 3629.31 Claim | |
0x64a7af092f7b12002507c7b93306a79b5d53b8e297c24d8855f2aa48c1d0e9ef 13900926 1640790306 2021-12-29 15:05:06 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03117349629 34.10692229 3629.31 Claim | |
0x8cf343010c62edd01a1fd28936b904adc0b3bdad9cadb3e00865a0734f3f565f 13901293 1640795198 2021-12-29 16:26:38 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003876125884 4.24086933 3629.31 Intend To Withdraw | |
0x0bf783d840caaff590800dada1beb1cb37205abacb9f702e7bd2ebc9c0865125 13902330 1640808773 2021-12-29 20:12:53 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009925588841 10.85958675 3629.31 Withdraw Funds | |
0xdc11d7bbcc9be6e33f80f3ad5c865947bfc34d7c58ace68d3cd4296e51624600 13903165 1640820014 2021-12-29 23:20:14 0xf097c7f3b2203692427e4545b79613bd3cff66ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00423944186 4.638373339 3629.31 Intend To Withdraw | |
0x8cd83645d7bd637c847b41fbdbd0bb3430ebd5574b1f5f7e7eead58bf011af93 13903243 1640820926 2021-12-29 23:35:26 0x1b8ee0b26fd2491a1c8b69dc3e783ab9b2e65cc4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.026733253 29.24885211 3629.31 Deposit | |
0x7371e33ac272c1b57992d5d106d13c2162934202dd6e26e5a2fb303955f522f6 13903246 1640820957 2021-12-29 23:35:57 0x1b8ee0b26fd2491a1c8b69dc3e783ab9b2e65cc4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012188049 13.33494441 3629.31 Increase Custody Allowance | |
0xc090989f324b47798044edb526923b1a8f3c3b90dd327ebf4d860fa0345a05eb 13903409 1640823259 2021-12-30 00:14:19 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02635668536 28.83684946 3710.08 Withdraw Funds | |
0xebe4d5a7ea9eee48e53dc8988cc346a18adb5aa5908a6cdef135eea2f256a7c8 13905090 1640845525 2021-12-30 06:25:25 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009536565358 10.43395616 3710.08 Withdraw Funds | |
0x1e2b1d435b554179c9c3ae8abc27a0c9ea3641858b256e555e8b16b7f43045dd 13907308 1640875888 2021-12-30 14:51:28 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01099381245 12.02833021 3710.08 Withdraw Funds | |
0xfaddcd20f6d4feb23948eab493dc27e675a391c1d5e6768be84af828c76c1e6e 13907309 1640875889 2021-12-30 14:51:29 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01856606227 20.31312873 3710.08 Withdraw | |
0xe37b71c6c07b9217431df466bf96b9325543e4bd51d6c6ed94002b6bffd7dc7a 13908624 1640893448 2021-12-30 19:44:08 0x75301b375de52686750b0de1766838719e08db75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01602458162 17.53249475 3710.08 Withdraw Funds | |
0x88f28b3e4ce6d4c3ef9c53053f99c0bc94499bfc88165377e1eb139b0fb17e6d 13912250 1640941558 2021-12-31 09:05:58 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01114857954 12.19766087 3675.79 Withdraw Funds | |
0x4da550c0a14b0023e00f799f790a32c7664eb8ddd19ed89c275e299009cb565e 13914630 1640974313 2021-12-31 18:11:53 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01789180815 19.5754273 3675.79 Deposit | |
0x0516fc969dc5e53678046f19945d0eb9acb1fc9129365f35e7dc18f7d50bf2f2 13914634 1640974386 2021-12-31 18:13:06 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008340715948 9.125577318 3675.79 Increase Custody Allowance | |
0x10e344367d0456b32a630086bbfac916dd3425294559248fa32fda741fe56d1e 13915358 1640984135 2021-12-31 20:55:35 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009381099236 10.26386067 3675.79 Deposit | |
0x2ec35d575f59dd51265bcc731297c564995992acad47e3341b81bd71e333e067 13915366 1640984203 2021-12-31 20:56:43 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003138471384 3.433801541 3675.79 Increase Custody Allowance | |
0xc17b27efb94dcfeb31df323f60434e0b352d2546268924117e33dab9cf430942 13915412 1640984819 2021-12-31 21:06:59 0x60d4a56a3acbfe48375ce7984cdf68dabf176f71 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004073660558 4.456992016 3675.79 Intend To Withdraw | |
0x26009b9bdb01d0050a90077d43f091846ff9c5f811ee9e2403469279d63bbb84 13915578 1640987303 2021-12-31 21:48:23 0x60d4a56a3acbfe48375ce7984cdf68dabf176f71 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007662013234 8.38300868 3675.79 Withdraw Funds | |
0x7d1ec8523db2397db1933ceb7f113f7e8e6548ffd644de2b4acaeccdacc02bbd 13916075 1640994110 2021-12-31 23:41:50 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01016170483 11.11792126 3675.79 Withdraw Funds | |
0xb98d11bdfe45738a067e4a5ae154e1946eb40617ec7ce6ad435d73494030468b 13917948 1641019450 2022-01-01 06:44:10 0x8e70ca936a2f2d81cbbf1dc84aabe4213c87b8e9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0032184944 3.521354723 3766.74 Intend To Withdraw | |
0x570bdcf41bc454bd64b72d8c153cc30ecc083fcedff8b589c03114b3a526d3c9 13919172 1641034953 2022-01-01 11:02:33 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006714127487 7.345926883 3766.74 Withdraw Funds | |
0xa9efe4a02addf1232ce580a34c6862e95ed43bb550201b16d6a7d5da047b21f0 13919884 1641044771 2022-01-01 13:46:11 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004548864 4.976912102 3766.74 Withdraw Funds | |
0x06fc36f4928eb3c1b6c9650621fa95a706e60c2b3ae8df0cd70b5c26e6b31f29 13920262 1641049824 2022-01-01 15:10:24 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006937271826 7.590069105 3766.74 Withdraw Funds | |
0x4b5a7aa5a69f8e730c736bab128f1d91317de913adea0321bf50db880001a35f 13920941 1641059065 2022-01-01 17:44:25 0x364462cee8e0a66306b706a43dc5bef2ff4e8be8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008111776023 8.875094146 3766.74 Withdraw Funds | |
0x195c0f161dc601343eb279966c97b0a9d4574907d0d774a1cc746dff8c3489b1 13924440 1641105050 2022-01-02 06:30:50 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008202239688 8.974070443 3830.92 Deposit | |
0xd7d8bd516b26303ba7a1d853ef249785d0d9eede6b9c1bd37e2edd673bd6ee66 13924452 1641105186 2022-01-02 06:33:06 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002387108959 2.611735912 3830.92 Increase Custody Allowance | |
0x15111e8eab5c3377bf5a4e35125825080c4e24af0cad04c6c4b9b546c44c0ffb 13925158 1641115153 2022-01-02 09:19:13 0x3f3c8b2ec580bb7b4bf60125d5db58612e5cffa0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011176836 12.22857627 3830.92 Deposit | |
0x441e36fa84b2c5b459b4fce7e972993e3464faa84539a4dad3f15f682f698721 13925196 1641115635 2022-01-02 09:27:15 0x3f3c8b2ec580bb7b4bf60125d5db58612e5cffa0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004585407519 5.016894366 3830.92 Increase Custody Allowance | |
0x7f56c97454ca39e6758b3d717ec46802bda949d2a4b35e4c64b8a126401b50e6 13926989 1641139119 2022-01-02 15:58:39 0x36aa7d15a2c4ceb8357aeec2cf628f1d8af7ac1a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00172445492 1.886726128 3830.92 Intend To Withdraw | |
0x5963e786f4da9481ac06406bfd1956903d8c4980737dc24148fd3f4891e114e1 13928024 1641153015 2022-01-02 19:50:15 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01465845696 16.03781776 3830.92 Withdraw Funds | |
0x29b6142b3dc86dd9a3cfb450f23a5dd73335a7c24f982c7426ad413fc58f96a7 13928061 1641153648 2022-01-02 20:00:48 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01525142992 16.68658948 3830.92 Withdraw Funds | |
0x86e8d611325f9dfea48e7b90a1d890824aa0eeb553fb412c24572de7f0e2f34f 13931259 1641195968 2022-01-03 07:46:08 0x94c9021bed5256888c0811d220979106041993df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01536898095 16.81520205 3765.16 Deposit | |
0x138c20f307e9b5dddffe5ad5fc38f72284afbfe7415744477725dd83825991a7 13931268 1641196082 2022-01-03 07:48:02 0x94c9021bed5256888c0811d220979106041993df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007030069945 7.691599527 3765.16 Increase Custody Allowance | |
0xf1bc5eecdf0967772aa214dfec0bac995b25cd429f91ce3b374063736085f60c 13933090 1641221125 2022-01-03 14:45:25 0xc5ec010cc2e23d1c4e9f15139eeade99b655047e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01505461632 16.47125572 3765.16 Deposit | |
0x6012eb8ba2d40cb0083959e39657124e31f23edfd2802ad0e1d6a66b32748bf2 13933338 1641224573 2022-01-03 15:42:53 0xc5ec010cc2e23d1c4e9f15139eeade99b655047e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006974576861 7.630884544 3765.16 Increase Custody Allowance | |
0x22811e8e1eb765d3295171de73b37b9077274d268bf15dad201c528ec9c0e956 13933620 1641228140 2022-01-03 16:42:20 0xa71caa4ea5cae0401c685dcf14b8ab0b6a7b05c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01933842995 21.15817621 3765.16 Deposit | |
0x39bfc7c524d24855010c8480b310291fb09ad87ced1f731e258d92564c893889 13933838 1641231054 2022-01-03 17:30:54 0x205c1b018a55fe97ad2140b900023f845f4635ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004868041419 5.326124117 3765.16 Intend To Withdraw | |
0xbd3a95e99ffc486606ce3c767480d49404bda5b9415c6d4e5dc2c7352791dc5b 13934687 1641242268 2022-01-03 20:37:48 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01270837469 13.90423275 3765.16 Withdraw Funds | |
0x2ce9e4af8b873c0ff9d90cc2a72d7a8f3011c6eb466573ecae5a5a8b45969b78 13934899 1641245053 2022-01-03 21:24:13 0xa71caa4ea5cae0401c685dcf14b8ab0b6a7b05c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008022267714 8.777163106 3765.16 Increase Custody Allowance | |
0x4ef79f36875507691488a688de60677a82141098285cea818e7b915569727a52 13938247 1641288984 2022-01-04 09:36:24 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002326532608 2.545459326 3785.67 Intend To Withdraw | |
0xa40f0cf3ba0cfa3591c669147791e4cd4e94ca26ddb7223b73849bc945a97cca 13938321 1641289959 2022-01-04 09:52:39 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001690921452 1.85003716 3785.67 Cancel Withdraw | |
0x17bac0ecec89063b2caf41bc103eba4a0b55de0952db5a55fa34100d9f969f6b 13938330 1641290137 2022-01-04 09:55:37 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003965364542 4.338505345 3785.67 Error(0) Reverted Transfer | |
0x3f9767793ab04f85dff4fe913561da1749a0a4f9e7c6d32a2355baefa352626c 13938368 1641290639 2022-01-04 10:03:59 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008846835915 9.679323175 3785.67 Deposit | |
0xeb6f9c17d4813d3abe4a5f3d2f580a2acf8626007480f32367a90a7bd6590002 13942056 1641339972 2022-01-04 23:46:12 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01484474766 16.24163841 3785.67 Withdraw Funds | |
0x7b85abdf0e4991ceb430dbf72b03226deca0d14292e5a01b85074c3afe4177bf 13943436 1641358889 2022-01-05 05:01:29 0x25b21ea6479ffe2269d53b49cd9c401ac825edf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004402662832 4.816953404 3536.77 Intend To Withdraw | |
0x8b73eadd06826ae49f133b225c526f47fe87c80a8f8bcdc765648d7dd390e02d 13950371 1641452004 2022-01-06 06:53:24 0x9b7a6e6b894e243e994cfaa32ea07d8a60740981 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01156487255 12.65312706 3406.48 Withdraw Funds | |
0xc150e6d763819e4420e2650439bd0b7e6dbfa476a8f00ff39d2c5f9e3505da00 13950406 1641452436 2022-01-06 07:00:36 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.015218224 16.65025888 3406.48 Withdraw Funds | |
0xe50c87ba2b5ba761c3861c337e1625a020f6104cdd98e54ba8f59ffb3c196a4f 13952702 1641483323 2022-01-06 15:35:23 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005264539386 5.759932542 3406.48 Intend To Withdraw | |
0xd39028f17837c429fa64e0d54042cb60cb8c630f547a13ca565e295ff869dfb3 13957925 1641553174 2022-01-07 10:59:34 0x0dc874fb5260bd8749e6e98fd95d161b7605774d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003369275682 3.686324524 3196.47 Intend To Withdraw | |
0x7cd3a25564175a852ee0f752646181adf922a6a5867f6a04575482e3d55231ab 13958413 1641559419 2022-01-07 12:43:39 0x1465e375f1d4da50c7f976d7aed564730c164ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01442938736 15.78719271 3196.47 Deposit | |
0x54a6207f0155aac742d6ebd3b1e97fd8547c1aefde057664b5336f938c0d4de0 13958451 1641559930 2022-01-07 12:52:10 0x1465e375f1d4da50c7f976d7aed564730c164ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007054575052 7.718410564 3196.47 Increase Custody Allowance | |
0x6219be5379d5a2810ae114cb22cbcb02df7d16671dfdaba7105e4e38c47822f9 13964784 1641645257 2022-01-08 12:34:17 0x60963e2a899797ff6c0259abcba37bcdfdfbaff2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00229428628 2.510178619 3080.81 Intend To Withdraw | |
0x7910156af517ec4a8d4f1df075888d156ec244e557b82ddeae1f65ca007d9069 13964959 1641647679 2022-01-08 13:14:39 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00957656712 10.47772209 3080.81 Deposit | |
0xe9fb60b9274ca54f91ce88c796c422d7c2c9e3e6defc10ac70aa6f973ed345ca 13964995 1641648226 2022-01-08 13:23:46 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003292562667 3.602392813 3080.81 Increase Custody Allowance | |
0x6f05327c7dc43cc9507f70b852ea3f4a296f56b32e29b69830eeae055710c7fc 13965604 1641655946 2022-01-08 15:32:26 0x2adbc63f1a72d33b8050521eca1b57d335bd9dbc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01993705472 21.81313157 3080.81 Withdraw | |
0xc030fcc9f1579821063005a5d5487ee5fa0ce7e1afc8ea450d203b325481f9d8 13965950 1641660789 2022-01-08 16:53:09 0x5d7de07fd214f0ad436e808b0ffe338fca02043f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01564321111 17.11523727 3080.81 Withdraw | |
0x90e92075cbf6d50eb1dbb7a093199777e33cdec633e1a5ca31ecad446b0edd75 13967937 1641686560 2022-01-09 00:02:40 0xf097c7f3b2203692427e4545b79613bd3cff66ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02068821418 22.63497514 3150.83 Withdraw | |
0xded9f0815b494eabb5a4a514be3b13d57a3205e77a0ee96a21c21f8ea4f180af 13969202 1641703068 2022-01-09 04:37:48 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01140690673 12.48029665 3150.83 Withdraw Funds | |
0x14ea869c3f2db74ebfc75e75cb6dbc7c4c3321d435a44b8b34fc323a946f316a 13969313 1641704387 2022-01-09 04:59:47 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009413253953 10.29904115 3150.83 Increase Custody Allowance | |
0x5818c530a335305dbae9c3d3789022e7b297eee16d7d1e9990f8e7354d88b251 13969774 1641710223 2022-01-09 06:37:03 0x3d035f3d088e6140ebc40276abfee5066db849d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007160312524 7.834097932 3150.83 Intend To Withdraw | |
0xddb84e7bde171e9fd04a21f7068e3d0694165a1d75325958e6deadc585ec64a1 13970774 1641723723 2022-01-09 10:22:03 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003497555577 3.826675557 3150.83 Intend To Withdraw | |
0xa29cdca0a07dc5f4e9817f3c29ca3f87d5a74c6fc2db11adc3e2c127bd0a0a45 13973330 1641757884 2022-01-09 19:51:24 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01935032261 21.17118797 3150.83 Deposit | |
0x2eccb7526b95dd10270c3ce9f396466fac88ebf75ad7c47cca22d8c4916b4984 13973340 1641757978 2022-01-09 19:52:58 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006885789148 7.533741907 3150.83 Increase Custody Allowance | |
0xd4ebfbec540983cfe4da4ac1eac67f7d267a96e84fc2274710795cb8899a3631 13973533 1641760367 2022-01-09 20:32:47 0xe2d0e650707383336e97365545a68d207757f1c2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02390458286 26.15400411 3150.83 Deposit | |
0x95961db8c059073b8a5970b316e5ecbbdd662ec8290a4a2bd89730f5598c4878 13973545 1641760580 2022-01-09 20:36:20 0xe2d0e650707383336e97365545a68d207757f1c2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01234374044 13.50528641 3150.83 Increase Custody Allowance | |
0xe1162ba5095a233a363dd28ceb56c8e8f9f9c691473d956cf26088f3ccddd190 13976789 1641804519 2022-01-10 08:48:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02184519755 23.90083063 3083.68 Claim | |
0x3756c6878d70b4b58800bfb2d0960d8f263430749a46361deaf1388be52f8b27 13976793 1641804600 2022-01-10 08:50:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02613860301 28.59824556 3083.68 Claim | |
0x7bc272bf57932ebceed63d93121a0b6b889669624fa8daa1a416ed53bdf580d7 13976797 1641804627 2022-01-10 08:50:27 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02439677575 26.69251235 3083.68 Claim | |
0xdb8574f1fe32bd01fda786ddcf85246afb64de47ace18f7f16c720a6169a809e 13977075 1641808491 2022-01-10 09:54:51 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05753688723 62.95110832 3083.68 Claim | |
0xb0f71205bfd32fd5d25d2fd442915ea608f232030ba7ac82ac07929a1fbf8ec2 13977131 1641809208 2022-01-10 10:06:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03396824222 37.16465382 3083.68 Claim | |
0x7011f299e86fd8c5d7f2141fb85b02fc1f00f991a1f0748bfdacb43f0f3b0780 13977139 1641809333 2022-01-10 10:08:53 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06414605649 70.18220041 3083.68 Claim | |
0xe5f0979c51a290a0c5273478c27b5a86a7c189aacb43c30c9588fa87fdf2d652 13977761 1641817485 2022-01-10 12:24:45 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03879360387 42.444082 3083.68 Claim | |
0x49f11ac847ee78db9cba33caaa32e26d9e8bbc4505baf610b1b14d5788d51786 13977928 1641819902 2022-01-10 13:05:02 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06179139859 67.6059692 3083.68 Claim | |
0xe82c01798f6505d28d8ce3fde3b2c3aaa564befa7520e01cbe72aabc0b320821 13977932 1641819959 2022-01-10 13:05:59 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05441999879 59.54092068 3083.68 Claim | |
0x2909bbac3376012c342dccdf8bf25fc2dea634b10face23d7f4444403dea240f 13980214 1641850978 2022-01-10 21:42:58 0x60d4a56a3acbfe48375ce7984cdf68dabf176f71 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03140958521 34.36522718 3083.68 Withdraw | |
0xdee60a49c1ecb7593ae6834f2df9d994bf28b9228df44755e6cd3167824c7b27 13980221 1641851054 2022-01-10 21:44:14 0x60d4a56a3acbfe48375ce7984cdf68dabf176f71 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02723281792 29.79542609 3083.68 Withdraw | |
0x28a9aa862d03b5b2772ecc56174e32dc4caee9a5db6f3b59731591ddf3d67d15 13981292 1641864879 2022-01-11 01:34:39 0x19282e37b5319727501e9577d79dbcdf43803883 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01452710743 15.89410824 3240.32 Withdraw Funds | |
0xe8cda9f6674cf21dac424b1928e66e07197f775a392bc2c7d6fe4176394f6a29 13982958 1641887707 2022-01-11 07:55:07 0x8e70ca936a2f2d81cbbf1dc84aabe4213c87b8e9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0257883015 28.21498067 3240.32 Withdraw | |
0x9e082d9ccf48389958f1495219a0fcffb127f3844d32a76b9d46c058ebbd34dd 13983958 1641900800 2022-01-11 11:33:20 0xc78bca0d880b645b3296627ee44649b2049f0fda 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00784016653 8.5779262 3240.32 Intend To Withdraw | |
0x5db690a89e5932f595a0c1773cbe9f8ec12cd8ca1df72512c31a858a3da5eb06 13984724 1641910612 2022-01-11 14:16:52 0x6ab53794466383ca012dddc228d981dcbf40e3a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007346404409 8.037701064 3240.32 Intend To Withdraw | |
0xbbf4061aa0b1b49ea58ce64a0dee70c44829a5c3524db391c63149ba14d72cad 13985051 1641915059 2022-01-11 15:30:59 0xc2ddc1ca9b22715e9041a54de263db36cedeb65c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02986297497 32.67308091 3240.32 Deposit | |
0x42b713c7854401cc98677322d9782c19319af1f85dc1976a42679351b5c6b36f 13985496 1641920919 2022-01-11 17:08:39 0xc2ddc1ca9b22715e9041a54de263db36cedeb65c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04597972539 50.30641755 3240.32 Increase Custody Allowance | |
0x7aab8315b6cd4ddca1cc9672eeac0642ded251ad20ecb6599f041270a1fe1fb5 13985966 1641926634 2022-01-11 18:43:54 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02116791826 23.15981937 3240.32 Deposit | |
0x6b1cdd24f299bbf341ef685a6e33dfce54352321285a92ef813bbd4785e9054a 13985967 1641926648 2022-01-11 18:44:08 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007896383125 8.639432777 3240.32 Increase Custody Allowance | |
0x3d611a3c128f91668fb2f418e21cbcc42b24165eae4deaa208529044aafa690e 13986152 1641929526 2022-01-11 19:32:06 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01742646064 19.06629058 3240.32 Withdraw Funds | |
0x954c26434c88fcd4b5a513ae1c2de6eee912be8b0b2923ce817de65cb4ccba7b 13986977 1641940605 2022-01-11 22:36:45 0x84b16f2ea251397e7a330398158db6ecb16aaf97 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0353763058 38.70521618 3240.32 Deposit | |
0x2673468c585b2b43e05f0d8b79ebf204747ae1ee91b2b826257e7b5c6e6f1d23 13986983 1641940677 2022-01-11 22:37:57 0x84b16f2ea251397e7a330398158db6ecb16aaf97 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01337428172 14.63280163 3240.32 Increase Custody Allowance | |
0x0c7f3d247477e44a3333cc6bf448b3e3a7546c83063a11921eb7d07e57f762d4 13987463 1641946537 2022-01-12 00:15:37 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02145646957 23.47552335 3373.03 Withdraw Funds | |
0x4829a0b67b6cb11142ee74e045b07bd957bb5e1e1c0a3ddb447a4c15307474ee 13988389 1641959139 2022-01-12 03:45:39 0x58616eb1d37262c5369624847d102847c3b98858 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02176395436 23.81194247 3373.03 Deposit | |
0x0ffa555b91e74fe541872b9feedc6638ba4f2efee0b42a4d5ac1106f0e1042a9 13988412 1641959425 2022-01-12 03:50:25 0x58616eb1d37262c5369624847d102847c3b98858 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01113939623 12.18761342 3373.03 Increase Custody Allowance | |
0x48ed0d746554ea8461f601f7f3e6442bcd5563c108aaa59a90c55b0bbe1fa6c8 13989580 1641975284 2022-01-12 08:14:44 0xd7f87ccc655f4d771bf518345036a30fd5388366 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003667891905 4.013040533 3373.03 Intend To Withdraw | |
0xb1a8d28c70d48781fe09d701f5c4aa51bda081af00b50263f416c9e61c5b929e 13989761 1641977794 2022-01-12 08:56:34 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01632593095 17.86220105 3373.03 Deposit | |
0x95aa3eb2a635d7a069aeb704a7befbdf61d4eba91f68d22137eee5017a6eedf6 13989771 1641977943 2022-01-12 08:59:03 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005872717257 6.425339951 3373.03 Increase Custody Allowance | |
0xfb73b3dd4efadf04a945577becf1062f3023286ca0219d68157123e6fcf8fd9c 13990019 1641981038 2022-01-12 09:50:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03600757259 39.39588517 3373.03 Claim | |
0x9ae93cf8fbe5b75eff6868907f1cc5ca121da982c298ace5fab83e82288006a1 13990037 1641981361 2022-01-12 09:56:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03680288164 40.2660328 3373.03 Claim | |
0xefb452b92e9c2154ec685b01a0070233d4c9e952f98a41021a1390ffd94bcd60 13990123 1641982656 2022-01-12 10:17:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1857346295 203.2122581 3373.03 Fund Loan | |
0x132525d1b70c277e64748c65dbfd066b8cc74dd7036f71c594dd2d79ae855496 13990124 1641982676 2022-01-12 10:17:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0371625351 40.65952965 3373.03 Claim | |
0x6bb927aef0b0652a999f7aae289bb90a8f84b7a6b7d6e1627fd61c5b37a6dd82 13990133 1641982749 2022-01-12 10:19:09 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0287133071 31.4152293 3373.03 Claim | |
0x4a97712c033ba6a050becc8bf15cf3ff3c107e0dbea2234593f1fbf15c263796 13991096 1641996044 2022-01-12 14:00:44 0x9b3611abceb1550b7ff2ebd46cf6ae4319130014 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006760515149 7.396679624 3373.03 Intend To Withdraw | |
0xf3809f60710268f0aca5b5cbf2d278473af3cc228e9c41d562b446c849cc04ec 13991322 1641998953 2022-01-12 14:49:13 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02350978134 25.72205177 3373.03 Deposit | |
0xc20b68710d99eacbd7b1bc31cbafea1822ca7c52de6a993bb68e187f4839a182 13991328 1641999012 2022-01-12 14:50:12 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008532752655 9.335684679 3373.03 Increase Custody Allowance | |
0x99baa3536888c807e47267841aef6bc33ea872accad86c494c4ea4068f0552f4 13991503 1642001222 2022-01-12 15:27:02 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02089021354 22.85598264 3373.03 Withdraw Funds | |
0xd200fdfad337d4e91256aa3e78b81c582784de4275d29c49e85571ecaf3ef739 13993847 1642032311 2022-01-13 00:05:11 0x9b7a6e6b894e243e994cfaa32ea07d8a60740981 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01159953094 12.6910468 3242.26 Intend To Withdraw | |
0x8d4fefcb28b2bd71419754985b882168b0b236cf96ecb247331532331ec638d2 13995139 1642049432 2022-01-13 04:50:32 0x36aa7d15a2c4ceb8357aeec2cf628f1d8af7ac1a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02028023531 22.18860545 3242.26 Withdraw | |
0x483400b13ff9fd4766d00489c5fd00125cc1cd9ba6be86bec92c6a7942bdead8 13996680 1642070385 2022-01-13 10:39:45 0x205c1b018a55fe97ad2140b900023f845f4635ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01479287755 16.18488733 3242.26 Withdraw Funds | |
0x9589d7cc1899d7851de15148f272b7708b533628d93169ec663082387461a3dd 13998519 1642095192 2022-01-13 17:33:12 0x205c1b018a55fe97ad2140b900023f845f4635ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03025804324 33.10532511 3242.26 Withdraw | |
0xaaded1a6affd907532f1f4482d0927de1e29c46ec52d98ef7152a8aec408b4c0 13998523 1642095227 2022-01-13 17:33:47 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06207620153 67.91757209 3242.26 Claim | |
0x24d1e681fca228768a9f7190b4beff1b5e5ca6ce65ebf947b154a380dd4cd63c 13998527 1642095284 2022-01-13 17:34:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05233019239 57.25446349 3242.26 Claim | |
0xc5a5b4360f1448f87bc8bf1107c93a5ded7de7c53c9b52a5426d60e58d255023 14000688 1642124175 2022-01-14 01:36:15 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03826123218 41.86161413 3309.66 Deposit | |
0xf7b1c5496fbe2da0a4061b47599ea98098e8552edf17c6d895bc32f72a753c37 14000696 1642124244 2022-01-14 01:37:24 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01177453898 12.88252309 3309.66 Increase Custody Allowance | |
0x072e5ed0aa8559473ae721bd856a2ddbbefe855251f4658f5838d14e1b7baa1c 14002323 1642145404 2022-01-14 07:30:04 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01400724965 15.32533184 3309.66 Deposit | |
0xc5b7f9bea92419386578e4e93a94d371379e62d998f3de89d07dd2f0bab02507 14002326 1642145438 2022-01-14 07:30:38 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004914276942 5.376710402 3309.66 Increase Custody Allowance | |
0xfc2a1438113661bc57ded1454cf5d9289aceaeec86a694dbd854f57a46632126 14003948 1642167946 2022-01-14 13:45:46 0xa8dcf7f97274e916091ff7aea749ba158b884a67 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01981020018 21.67434001 3309.66 Deposit | |
0xacfff26b3e3d18ba9ddbc1871d490787e854a7ee9be9fc0209d911c59c1b9d1b 14003952 1642168002 2022-01-14 13:46:42 0xa8dcf7f97274e916091ff7aea749ba158b884a67 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009254414 10.12525436 3309.66 Increase Custody Allowance | |
0x2a4ccf6680f19232a5b5e261dd3135b073355d4c4da85db70f7a8369c9710731 14005296 1642185723 2022-01-14 18:42:03 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.196791056 215.3090944 3309.66 Fund Loan | |
0x5d1242313d35634afa59c00b4764383ef71bdec3dd22bfa8e16c4bdda43ccdf1 14008797 1642233037 2022-01-15 07:50:37 0x8c12674ddd8444cb53259b9b75e6363352a7c6bd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005308860928 5.808424742 3328.63 Intend To Withdraw | |
0x1eaaf464bebd22282f75fe054030c084b66bebc79a3d30bf410e85a04582abb1 14009856 1642247595 2022-01-15 11:53:15 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007946546843 8.694316901 3328.63 Withdraw Funds | |
0x847e2d50d319151b3118246eca49e95dab7ce4bcbad967b8d0e7076e42b9e75e 14009950 1642248741 2022-01-15 12:12:21 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01076975369 11.78318752 3328.63 Deposit | |
0x0364b366b818b412df1d80277b7ac35096cb64fe8b5ee7ffafc974c7323d5c19 14009959 1642248855 2022-01-15 12:14:15 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003677968095 4.024064893 3328.63 Increase Custody Allowance | |
0x7c4f19aa447c36c7c7d659e2784d7a0223464de8d788e3423d62355b34f3f577 14010454 1642255715 2022-01-15 14:08:35 0x553bff333348548cfabf3b4fcb49ef5f2c28c10a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005799951279 6.345726694 3328.63 Intend To Withdraw | |
0xd90f04abe00bef6a86a5bd70d1278ac4b9b2546655f065c0ff11fbc381a223f4 14015929 1642328260 2022-01-16 10:17:40 0x8fe7b143b2c67739e9c933da0a48142b14c4415d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01191883056 13.04039252 3349.61 Withdraw Funds | |
0xdb4e82b05ec73db1bc80df6eaa66ee60c21a53d90be80878dc94f3175d73809a 14016347 1642333713 2022-01-16 11:48:33 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009979554118 10.91863016 3349.61 Withdraw Funds | |
0x29b6376ebf36051a50759a4fd7326e051ce006c251970f52d4590f13a4bcd2db 14017564 1642349546 2022-01-16 16:12:26 0x959b83f2b3f7c7f05c8f8ac00f9a8f9f749e90ee 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01952726798 21.3647839 3349.61 Deposit | |
0x3ca17b7dd06c3d10570e73ec01a3f7c61a61a0def16d09cb3b922b0773e7f0e0 14017572 1642349646 2022-01-16 16:14:06 0x959b83f2b3f7c7f05c8f8ac00f9a8f9f749e90ee 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009456117811 10.3459385 3349.61 Increase Custody Allowance | |
0x8d8eeed2b94880090ecbd42f0a61ce8c832a1979b1f7d32001276fefb6a35e52 14018720 1642364860 2022-01-16 20:27:40 0xbdca5ccb951cbace4acb7d92713e2a2d3432ac49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004056412049 4.438120423 3349.61 Intend To Withdraw | |
0x4d2831474acc804fb8e7a683a87c877adc9a74c2cff32d1abf9527700aa2faa4 14022757 1642418739 2022-01-17 11:25:39 0xb460336e8850ba79c56cfa6e47de2fcd3d2d3d63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01353981284 14.81390923 3210.9 Deposit | |
0x34e95960f95e6e3aa4c97e26db9dd01e05e7ac627844dbf2915305d21a8e0d8b 14022766 1642418827 2022-01-17 11:27:07 0xb460336e8850ba79c56cfa6e47de2fcd3d2d3d63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006034756253 6.602626817 3210.9 Increase Custody Allowance | |
0x55d093854e990c7955a9d848cfd433558bdd7f4fc25e00179261ab22ea3718bc 14023480 1642428595 2022-01-17 14:09:55 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01347986957 14.7483253 3210.9 Withdraw Funds | |
0x1d4116d6fbbfbf08692f84cc8a46e69dff6c43a6354241f068c4413b7b30d538 14028174 1642491251 2022-01-18 07:34:11 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01053542012 11.52680315 3161.5 Withdraw Funds | |
0x561c63972bfc27bb2a2e54541c728589c361449665aad4bbbca077cbac14b21a 14028785 1642499199 2022-01-18 09:46:39 0x84caca8bea5f9c2090f6bbeab249f4218f46996c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01282992511 14.03722107 3161.5 Deposit | |
0x0303da962cc00f6779632299cc8b01899083125a80483e0da2d9a7639732bd04 14028798 1642499376 2022-01-18 09:49:36 0x84caca8bea5f9c2090f6bbeab249f4218f46996c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005741305384 6.281562221 3161.5 Increase Custody Allowance | |
0x0aaaae269364a73437c3411d263b56e05967dbf4122f5b80aaa2ed253482acce 14029575 1642509990 2022-01-18 12:46:30 0x60963e2a899797ff6c0259abcba37bcdfdfbaff2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01327652497 14.52584597 3161.5 Withdraw | |
0xf284fb18a9e78a5279bbb3e36560cdf984fb2297870f532ff62a29be7a5b0fdf 14030729 1642525030 2022-01-18 16:57:10 0x05eb7f0ebcfc8bee7d5283521a08ebef149569ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0176086028 19.26557233 3161.5 Deposit | |
0xd8e970fcf72dfdc7566bc58001ac3c3ec843fe96b3ce10a8fc6f4ef3eb896f2d 14030733 1642525079 2022-01-18 16:57:59 0x05eb7f0ebcfc8bee7d5283521a08ebef149569ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007605452826 8.321125937 3161.5 Increase Custody Allowance | |
0x93db6797aaf961369a4e4c6420262144d7245267e662ff28044dafee22f2e7dd 14032597 1642549881 2022-01-18 23:51:21 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0107275665 11.73703051 3161.5 Withdraw Funds | |
0x458157b74df9f5ea9ed056781e4ed9d186915e5cd339b51154b9f4f8245b121f 14035579 1642589873 2022-01-19 10:57:53 0x8ffa85a0c59cf23967eb31c060b2ca3a920276e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01314688032 14.38400176 3084.78 Withdraw | |
0xb486d8b2cd98addbd8797cffb02dc96da5a2b19bf66811cd8ae977959da30bd9 14035818 1642593013 2022-01-19 11:50:13 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007909760026 8.654068445 3084.78 Withdraw Funds | |
0xbe6bb47e49abdec4abcd69bf587a192714a7aa1262507ba29b07daee55e659ce 14035823 1642593073 2022-01-19 11:51:13 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009128175158 9.98713644 3084.78 Deposit | |
0xb804c25c9c4c30e529f3ec44a5f204e49cbd47fbac74f6e6f4b9a3c075cf0ceb 14035836 1642593217 2022-01-19 11:53:37 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003051936676 3.339123917 3084.78 Increase Custody Allowance | |
0x3ab2f9658218acbd98aa74d0df6603b8d281710027fd26fbf85e7cc9eed4d3b9 14036444 1642601841 2022-01-19 14:17:21 0xe1a39baf0d7d76cdd026dcb23abdf23923086cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02221046166 24.3004661 3084.78 Deposit | |
0x382f5fb98b3de593c68bd08885f00818065c117bc3d62f7d36576da0723da739 14036452 1642601992 2022-01-19 14:19:52 0xe1a39baf0d7d76cdd026dcb23abdf23923086cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009345183359 10.22456511 3084.78 Increase Custody Allowance | |
0xc28248b455a7d85382988a12b49a8bfa5f3099eb255f43d8612e2c1c573d36a9 14036831 1642606884 2022-01-19 15:41:24 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003455931682 3.781134853 3084.78 Intend To Withdraw | |
0xfe536f6c3622221b22a3b08237307c6198ae62b6df4e0084f14f96729697beda 14036918 1642608226 2022-01-19 16:03:46 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01390962101 15.21851635 3084.78 Withdraw Funds | |
0x2154099ff306c843a322f8ba18df517de57b8e232502218bc0c6d2b7d44374c1 14037129 1642611141 2022-01-19 16:52:21 0xcd1629c9bb9daa4ce0c5e84dfd2be6f3c4db76ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02299923025 25.16345782 3084.78 Deposit | |
0x9effc23dde1ded9cfc53542d1d082a38b95a25e736eb8431c5ef80197aebbd1a 14037134 1642611205 2022-01-19 16:53:25 0xcd1629c9bb9daa4ce0c5e84dfd2be6f3c4db76ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0103075846 11.27752831 3084.78 Increase Custody Allowance | |
0xc30df461f47285432702ac5059a8ba17f02f45d7339c80988756258411555b28 14037164 1642611567 2022-01-19 16:59:27 0xcd1629c9bb9daa4ce0c5e84dfd2be6f3c4db76ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01364198483 14.9256956 3084.78 Deposit | |
0x426ec5bb7429c717db1df855ec40403a5f1c23f2ae88d915f920d71233bd3216 14037174 1642611706 2022-01-19 17:01:46 0xcd1629c9bb9daa4ce0c5e84dfd2be6f3c4db76ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006555265998 7.172116529 3084.78 Increase Custody Allowance | |
0x9a006ae69a63c34278e298745fda8bbf079a5c983cf63b62695ee7c410418ae7 14039475 1642641656 2022-01-20 01:20:56 0x3d035f3d088e6140ebc40276abfee5066db849d1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01693672901 18.53047521 3002.43 Withdraw | |
0x8142f7580f5eca2377d694daa92b34cd9025fea00e3f4d11858510408df407b0 14040330 1642653814 2022-01-20 04:43:34 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004235340131 4.633885638 3002.43 Intend To Withdraw | |
0xf229386bf483554d34f9014bcfdbc0475a0a6adf04b4f4174d21da0a67faad38 14041304 1642667061 2022-01-20 08:24:21 0xd3fe68d8b606205eddce2d9a6e5839e82ecb24eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00382081075 4.180349041 3002.43 Intend To Withdraw | |
0x9a5942992df93e174f8f0a450e494b3a5cf1d555994edcca81337bf15cf40250 14042463 1642682386 2022-01-20 12:39:46 0xf92dfc9450dedda906d944d15b8d511060a1753d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01444071214 15.79958315 3002.43 Deposit | |
0x22b4afc2958af0801c7ace11d461dc553e534c9d5ba9cf49f22df9e8b260f76e 14042476 1642682570 2022-01-20 12:42:50 0xf92dfc9450dedda906d944d15b8d511060a1753d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006011697475 6.577398207 3002.43 Increase Custody Allowance | |
0x6da70b78916e70779a3750cc641859c6aa64ec8228cc9872763c47e99fbf7581 14042530 1642683256 2022-01-20 12:54:16 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0101653828 11.12194532 3002.43 Withdraw Funds | |
0x3d4f35e781be5c324e707f8b613faf070148d52d3974fc47e53d735d71b1e658 14042583 1642684089 2022-01-20 13:08:09 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03959415502 43.31996501 3002.43 Claim | |
0xcd2822a8d4f5c237d56c96a72cff5841dc6d42b60f3f6374452ac22a7332d3f5 14042588 1642684165 2022-01-20 13:09:25 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0362677662 39.680563 3002.43 Claim | |
0x2927a327d06e800a761bc3189c578edaec60863eba9d68190c2ef9663f7b88a6 14042596 1642684257 2022-01-20 13:10:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02687994373 29.40934643 3002.43 Claim | |
0x557bfcc36f8a520b9ce4bea8eb193efb85f0e1c167670e55fadb33bd40d37875 14042605 1642684354 2022-01-20 13:12:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02814456959 30.79297359 3002.43 Claim | |
0x5f4f6235319740d34817d5075dcafbdf984329242d40c0d594f1299f3162166d 14042611 1642684446 2022-01-20 13:14:06 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02617306523 28.63595067 3002.43 Claim | |
0xbe6971d302c6bd179cdd5cba64cd5409d062be1ed1175e3d94851227ff6813c1 14042769 1642686384 2022-01-20 13:46:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02254128825 24.66242347 3002.43 Claim | |
0x297127d72d2a1c7af540cf51289456c71dc1a0fa42e55aa8dd075029446695f5 14043113 1642690759 2022-01-20 14:59:19 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02515919426 27.52667444 3002.43 Claim | |
0x5facdc69174aaeaa4c92af56ce83965b22e903341b67e3c79467d6be6f194cde 14047709 1642751603 2022-01-21 07:53:23 0x37f23097ad3c862dfe895139a63a33b1d236e89f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01814816979 19.85591256 2569.59 Deposit | |
0x77a3a33343971c1749c9f5c7dd5fb28589bd6f061664622543a7ccc9e0a9c3ef 14047715 1642751729 2022-01-21 07:55:29 0x37f23097ad3c862dfe895139a63a33b1d236e89f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01104523143 12.08458771 2569.59 Increase Custody Allowance | |
0x944f0699ba84f14e47b7354ffe9cd955c6ca57ddd3daf3f5d91ae6e1ad10ed29 14047716 1642751735 2022-01-21 07:55:35 0x179517f1c6c3981a50630f5c8b3d7099875cb8a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02267019269 24.80345783 2569.59 Deposit | |
0xf6c01e3059379bbab62aa73f1eedb4c8ff7f860f82e441cfb21bedf102104561 14047716 1642751735 2022-01-21 07:55:35 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03390315936 37.09344665 2569.59 Claim | |
0x29ee104685a8b8cb23850db44e04eb23a5e4643403ceb0942f66af383902303a 14047727 1642751924 2022-01-21 07:58:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03277761874 35.86199266 2569.59 Claim | |
0x9152a7f530599a05baed34898739aee177fbf6631227a66183929ad7bf6057e1 14047736 1642752048 2022-01-21 08:00:48 0x179517f1c6c3981a50630f5c8b3d7099875cb8a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01009640976 11.04648191 2569.59 Increase Custody Allowance | |
0x9fda11d428792294879a37dadb858962465b7f2d4b44ee704a6270eb03d901d4 14047945 1642754911 2022-01-21 08:48:31 0xc3c29d099207380e2a2fcffe0de30111fe16b6d9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00572452652 6.263204465 2569.59 Intend To Withdraw | |
0xc723e17cbfeadc3bbdc266f1afdbc1a9d0e520f444638f0b62e1499243d1d3e4 14048612 1642763944 2022-01-21 11:19:04 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004566529696 4.99624014 2569.59 Intend To Withdraw | |
0xfa82a4cf960ee6562c3d7d7f39f265bb8c52c5f98b9bfe641d5bf7e39408861f 14049041 1642769935 2022-01-21 12:58:55 0xc78bca0d880b645b3296627ee44649b2049f0fda 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04044079011 44.24626845 2569.59 Withdraw | |
0x52218d6c146f6109b4532280c9be1345cc0f83b1f0ef79351407be18d20b6b33 14054494 1642842507 2022-01-22 09:08:27 0x6ab53794466383ca012dddc228d981dcbf40e3a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03298442368 36.08825795 2412.23 Withdraw | |
0xac7ee8685f14c2f99dc2b859b19f0c264fb4dcb415696a55c060b1eff385b23b 14054562 1642843437 2022-01-22 09:23:57 0x468f05137394f349f37c5e7d9b35661b6f68c0b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01590412855 17.40070705 2412.23 Withdraw Funds | |
0x79cdf0177bc57adf6c0611916225f3961d5a14d4f6ac72ad1fa346885b07ff88 14054919 1642848167 2022-01-22 10:42:47 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02455332432 26.86379213 2412.23 Withdraw Funds | |
0x7b595be209a0070efd9f2c2fb504b10de2c5a0b3f31519bb14572c48d6c4c6bd 14058099 1642890376 2022-01-22 22:26:16 0xc1c589dc0922399b966f515d4b6436707d679974 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01587595269 17.36987983 2412.23 Withdraw Funds | |
0x396a2ce8b396c84417c4d5352a65d8d101564bd3706c729ca86dd4ed6dfab288 14058307 1642893064 2022-01-22 23:11:04 0xc1c589dc0922399b966f515d4b6436707d679974 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0044951363 4.918128626 2412.23 Intend To Withdraw | |
0xf1e0ace0938de6e2d703df4bb293fb3781982650b7a75f10b7f9db42d24e8693 14058474 1642895055 2022-01-22 23:44:15 0x1f87f31f087362b263aa209f475ab59a50cdf45b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003956916303 4.329262127 2412.23 Intend To Withdraw | |
0x9b8557ce9be94d87a114da48be151e5525080d789468ab5ac3d9f2494b39086c 14059181 1642904842 2022-01-23 02:27:22 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007657014376 8.377539428 2541.6 Withdraw Funds | |
0xde1d113faae28d85f100fabdec7d90f882b444627d2e3857ba7559a0657f2e98 14061642 1642938078 2022-01-23 11:41:18 0x96f4da61ee795f9f4a5cf0daadcc336adc73232a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002789369913 3.051849622 2541.6 Intend To Withdraw | |
0x53b61b084bccf83343c7d81def51baac45a022710d706fc80f4da510b4144b29 14061950 1642941879 2022-01-23 12:44:39 0x9b3611abceb1550b7ff2ebd46cf6ae4319130014 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01282687582 14.03388484 2541.6 Withdraw | |
0x9c5add0b538bf7f07ec5954f16d4e94d9b4c40e61dfed753f4f00c20b3f68d3f 14062022 1642942791 2022-01-23 12:59:51 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0030288882 3.31390658 2541.6 Intend To Withdraw | |
0xeeb6c4f550ac8667c96769b9bd7a36aa9dcf6a8fcf622a4536a572132fcfb15f 14062022 1642942791 2022-01-23 12:59:51 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001759849254 1.925451068 2541.6 Intend To Withdraw | |
0x16dc9139541811b76c2edd25b4871c4c2377d56dd27ebd640ead42dfc7b9619e 14066924 1643008744 2022-01-24 07:19:04 0xd7f87ccc655f4d771bf518345036a30fd5388366 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01447979044 15.84233872 2442.27 Withdraw | |
0xfed7bfa8a50d2d2f7793f9c24407376ae985d852a1fda9883412bf461ec8485f 14066962 1643009170 2022-01-24 07:26:10 0xd7f87ccc655f4d771bf518345036a30fd5388366 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00832252854 9.105678475 2442.27 Withdraw | |
0x3b942d7aae7d250abd8aaca0252b9de08243612b6c77fb8f040af2f727239517 14067773 1643019850 2022-01-24 10:24:10 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0347456199 38.01518273 2442.27 Claim | |
0x765d66c46d21ac3f4276753e859be3c62ecdf577aca33cded9c317c66eed5a8c 14068039 1643023303 2022-01-24 11:21:43 0x6979039759ea5f6ad1d86261ad3f33d4cec83e8a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006672453814 7.300331718 2442.27 Intend To Withdraw | |
0x4c3682d9fc1861b1a38cd786ff89ee5dbf1b1658480ee4d6ac2585400c532723 14068795 1643033912 2022-01-24 14:18:32 0x3991adbdf461d6817734555efdc8ef056fefbf21 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03190348675 34.90560485 2442.27 Withdraw Funds | |
0xdabe9eb8ed0226adce7a188dea9e3bce5e986abbdadce5ed8101b94cd6125323 14069595 1643043984 2022-01-24 17:06:24 0x9b7a6e6b894e243e994cfaa32ea07d8a60740981 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02099621398 22.97195772 2442.27 Withdraw | |
0x0e12e9da02438a34d7362391fd74907ba4048274467a854c7d4cf5f2909c0349 14070382 1643054944 2022-01-24 20:09:04 0x3991adbdf461d6817734555efdc8ef056fefbf21 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006670912917 7.298645823 2442.27 Intend To Withdraw | |
0xf534a0557110a690a9215ecb597120682087ff138187d55fec068484699c169e 14071149 1643064960 2022-01-24 22:56:00 0x0b18628bf6d046e79e14026f02325d81a214d8ee 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01021761598 11.17909364 2442.27 Increase Custody Allowance | |
0x585bde1aa8e6127e290599daf2d2322560df20700a79d183cda884c7095f6de3 14072924 1643088891 2022-01-25 05:34:51 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008685163138 9.50243699 2459.65 Withdraw Funds | |
0xa6c29788ceba968a5b973bdcbc9ad26c32a5df5d3f82bac534f7ee7848b5dedf 14073338 1643094809 2022-01-25 07:13:29 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02683255322 29.35749648 2459.65 Claim | |
0x5a7108b932d44b77762d4d4a1ac6aa1d35a1f2d5c70e8cf88b971f3fdacf8188 14073345 1643094923 2022-01-25 07:15:23 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02497675314 27.32706561 2459.65 Claim | |
0xe77127073ad1b160f4e463ad1138085661f6e58b18c9dc1b6b94e6a519811168 14073351 1643095044 2022-01-25 07:17:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02682803363 29.35255159 2459.65 Claim | |
0xf4ad253e790ea7853b4b1d68c10dcc7a0f292f715df1c68812718b259e972a62 14074169 1643105716 2022-01-25 10:15:16 0x8c12674ddd8444cb53259b9b75e6363352a7c6bd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01221765797 13.36733959 2459.65 Withdraw | |
0xa194cad4f8de8c69ba353bb7c35b459abc1d1c3260b61e45950b88aaad0e2b26 14075258 1643120767 2022-01-25 14:26:07 0xc78bf98a0deb8a85974fb9b7b3a0e2498447c4dd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006489795935 7.100485733 2459.65 Intend To Withdraw | |
0xa9c85653fe3b79926497ed6f6cebb4fbf8082ad722bd1bfeb9189ac9957cfb2b 14075707 1643126582 2022-01-25 16:03:02 0x3c229864378b3b0adf98ae247ca33986aed8ec1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01089761002 11.92307513 2459.65 Withdraw Funds | |
0xf6982f2a5917dabd5abd4fb3074e78669f3368a747d7f36e195fbd84420e5e57 14076819 1643141435 2022-01-25 20:10:35 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.1589689521 173.9279305 2459.65 Fund Loan | |
0xc11da36b311ae95a65d14dc24bb43af036e56a0c052637ef6f8bca6097825cc7 14080225 1643186590 2022-01-26 08:43:10 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00753724535 8.246500138 2464.13 Withdraw Funds | |
0xb22f626b1cbf92cd75d4f9469c7e4817acf3f14c1ef05aa196989eb2f3dcd96c 14082969 1643222835 2022-01-26 18:47:15 0xab219045455fe12bd0f66b9fac825d40560036a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02122787939 23.22542284 2464.13 Deposit | |
0x381adb063ef222e39f243fb7e379e14d60ed0007cc1f840c35999fb31803f3dc 14082977 1643222986 2022-01-26 18:49:46 0xab219045455fe12bd0f66b9fac825d40560036a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01162375231 12.7175474 2464.13 Increase Custody Allowance | |
0x452e262cc9ecfd2eeb38724645220728f63e3792266df83c0a1903436b8aca86 14084857 1643248530 2022-01-27 01:55:30 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009599900487 10.50325112 2425.83 Withdraw Funds | |
0xbef1aabc8aa6a07ab1aed4ad7ad2697cfa0fccae1843620b232f2e8aab3ba039 14085934 1643262667 2022-01-27 05:51:07 0xbdca5ccb951cbace4acb7d92713e2a2d3432ac49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01445507289 15.81529525 2425.83 Withdraw | |
0xd8d404682bba4ca7283863d58306bfaddf56cd3a84df52490a6557e3af2c2b36 14088109 1643292367 2022-01-27 14:06:07 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01322596637 14.4705298 2425.83 Withdraw Funds | |
0x8683d3ce35b9341b9314bc76545a00d79b520cfa3c156a0e0a1dc383705cfc2c 14088363 1643295921 2022-01-27 15:05:21 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04040812711 44.21053187 2425.83 Claim | |
0x80912abfa7a9804302c0f58137be0aacfd5a88afc074a8abcb9dced4d9de01e2 14088368 1643295991 2022-01-27 15:06:31 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04077886512 44.61615633 2425.83 Claim | |
0xc461e5b32dbd29f2d324b947ffe2d422ab6c0f6809c9fb09970cd34bdceadd39 14088537 1643298013 2022-01-27 15:40:13 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01250208641 13.67853274 2425.83 Deposit | |
0xd8491c2a1b383905a7ef5f1516eb583e0250f7d2afe4c6bce8920e3aabee4108 14088544 1643298097 2022-01-27 15:41:37 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00485954719 5.31683058 2425.83 Increase Custody Allowance | |
0x639191ffbf14e728c5f01fd798dad9d2c4586922f297f50af10d349b75f6e113 14090029 1643317363 2022-01-27 21:02:43 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01904890073 20.84140229 2425.83 Withdraw Funds | |
0xdda7e601280e11d257064a4f5bf0c7e0c573fe97933daecc623a72c6fb48cd8b 14094021 1643371348 2022-01-28 12:02:28 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008906203907 9.744277694 2547.03 Withdraw Funds | |
0x4af9f60f38aa72d415900254c861248d2fff184914e261b04af7761e4de776a4 14094074 1643372004 2022-01-28 12:13:24 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008775331085 9.60108974 2547.03 Deposit | |
0xe76cc80d1f1b031cfea0d27b98ff14adc6ce70787a8f80219de1d57125b67c57 14095736 1643393778 2022-01-28 18:16:18 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03978843608 43.53252792 2547.03 Claim | |
0xb6ea760e9db7e3626afbdb524e18cf21cd15276f2e2c4c212caf6a746d231b22 14095738 1643393802 2022-01-28 18:16:42 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04282567273 46.85556854 2547.03 Claim | |
0x781b3b7efb8fdd25873f9c4c4c65073212304d51787ff3987ba5bb9dd839cf06 14096196 1643399894 2022-01-28 19:58:14 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005347583575 5.850791189 2547.03 Intend To Withdraw | |
0x2f8ee3dece59e7fefed253d818d6692f37fc810037f6680f74d32721eb485903 14098897 1643435762 2022-01-29 05:56:02 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007818006415 8.553680818 2603.1 Withdraw Funds | |
0x1bcc7792dce7c6534bda73f88069a62a83f1108c32677981f0455936a38dde91 14100036 1643450737 2022-01-29 10:05:37 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006823296 7.465368154 2603.1 Withdraw Funds | |
0xb42c4ce559a292c8df9d1de1b340c4177090ca9980d75fc5f61a05badc5bd744 14101767 1643474254 2022-01-29 16:37:34 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01433012741 15.6785924 2603.1 Withdraw Funds | |
0x15f86c660b83949916e97fe7be59d702c469283ab5cb6fc5bbeb0c3b8cae5327 14102235 1643480369 2022-01-29 18:19:29 0x76bfdb851cda72ffcd86c7544ac649c84402764e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01853242311 20.27632413 2603.1 Deposit | |
0xa6b7db3eab56fac9674bc2be838f16d8ea8145b604351288ed48ab7cc629dd1a 14102254 1643480629 2022-01-29 18:23:49 0x76bfdb851cda72ffcd86c7544ac649c84402764e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008216748963 8.989945041 2603.1 Increase Custody Allowance | |
0xfc1d0bbc5f852026d5052b143b76febe5fc1de9866cc181b4d26e28fdb3b2936 14103589 1643498428 2022-01-29 23:20:28 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00636706146 6.966201943 2603.1 Withdraw Funds | |
0x123ce4c7a47f397f9aeae729b53f1e8e3d6081d00e61199a978c63b02590d275 14103902 1643502686 2022-01-30 00:31:26 0x75301b375de52686750b0de1766838719e08db75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008070719951 8.830174698 2603.24 Withdraw Funds | |
0x51388ae649868b0beac175c369994e9c2c04ef0db07637d36b4fa0023f8f55ec 14105107 1643518453 2022-01-30 04:54:13 0xa99f8656271bd54871639d7b1d20912263cc68e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01167894214 12.77793059 2603.24 Withdraw | |
0xc85d0d63ebc76786b9e122ed00cd489795615f85c2ce95f61f5d0047cf7b0f0e 14108494 1643563301 2022-01-30 17:21:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05318391344 58.18851969 2603.24 Claim | |
0x688369c0bb33326de395664cf48a6dd056888f53f1797da5e07e6456c1366562 14109463 1643576377 2022-01-30 20:59:37 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00838421116 9.17316543 2603.24 Increase Custody Allowance | |
0x1870fc97fc1a20144fd7f2dfac9ad21ede5b81214e0f8d3f0d3f872e1840786e 14109847 1643581091 2022-01-30 22:18:11 0x87bd9a25daf00d6c10bc6f4cbb8d760891306ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00386029937 4.223553541 2603.24 Intend To Withdraw | |
0x2d9cefc20089e870e2704ebdd13aac3013d3b58f9ec5bbf37fbd3d06ee60bcfe 14111399 1643602171 2022-01-31 04:09:31 0x9953f61941cf781e31d76788a949e1d7fca046aa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.014104854 15.43212076 2689.14 Deposit | |
0xfda9c2e97a01ee2b091796998ff09daaf2177c46964f9cf1587f570f3a53d4f2 14111408 1643602249 2022-01-31 04:10:49 0x9953f61941cf781e31d76788a949e1d7fca046aa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005154738133 5.639798991 2689.14 Increase Custody Allowance | |
0xb9bf02f1c67cb106192c1030e233666b2f8381a3fdb3f7c344a1a634fa2a32af 14111939 1643609601 2022-01-31 06:13:21 0x58d3d0aac31b61471fb38676556569f46b3519d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01102549744 12.06299675 2689.14 Deposit | |
0xdf0925054aedc114d12669d7f35724128c7d323eb4ce54918a55cabb4c1d7cb1 14111950 1643609720 2022-01-31 06:15:20 0x58d3d0aac31b61471fb38676556569f46b3519d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005798086021 6.343685915 2689.14 Increase Custody Allowance | |
0x40b4b6e9b93cefc78ea08d88e4f76315ffad028a18e15ea5013fbbc6de2a1f14 14112187 1643612781 2022-01-31 07:06:21 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00885337451 9.686477052 2689.14 Withdraw Funds | |
0x68fb3e750912f556586ba691fb7222e0177464caf7d320aa6af6ef1115ca41b7 14112281 1643613882 2022-01-31 07:24:42 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04008041769 43.85198499 2689.14 Fund Loan | |
0xc6870d98a24f01c5bf513e2d64c997fd3dbd98bee8a1a8d33dd1997661838886 14112285 1643613934 2022-01-31 07:25:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01859110157 20.34052423 2689.14 Claim | |
0x6e3fe5db166f83b7763d9b528a22e01c80de822df2cd38a10d5ca38b1080375e 14112678 1643619039 2022-01-31 08:50:39 0xc3c29d099207380e2a2fcffe0de30111fe16b6d9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01158933952 12.67989637 2689.14 Withdraw | |
0xacd82f93b940955ff09e40a11402e96fa3416e800e90caedbb58457fa1592c66 14113396 1643628646 2022-01-31 11:30:46 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01128032169 12.34179996 2689.14 Withdraw | |
0x5d2832b8919d1236c72c44d7955655435c4afb3daa6cc5ef70b787fa95f6b384 14113399 1643628763 2022-01-31 11:32:43 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00586009698 6.411532106 2689.14 Increase Custody Allowance | |
0x5400b3bdeb59adc2b8cf169540aefa8e44d79745eaefdb04c088ded9faa1ef1d 14113540 1643630764 2022-01-31 12:06:04 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01367571599 14.96260086 2689.14 Withdraw | |
0x7a541fbd98839ab3418771907ff313f10cea7b9cb8d631fdb4dc3e0aadbf6922 14114843 1643648263 2022-01-31 16:57:43 0xd3fe68d8b606205eddce2d9a6e5839e82ecb24eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02976093247 32.56143621 2689.14 Withdraw | |
0x433cef3cb585b3ff6011cc07ce6772ac754e14123fb5ad8fcab54f0bec1a074e 14116021 1643663618 2022-01-31 21:13:38 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01029817937 11.26723805 2689.14 Withdraw Funds | |
0xc4c283ee768e53c4dc52f2d214144ee54825882922aa50ef67566eaa91c84280 14120686 1643726370 2022-02-01 14:39:30 0x7affe6048d4b2647ea5971793a920bee0414133c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01601295161 17.51977036 2790.15 Deposit | |
0x49d930d3176951f6f7789d9d96ad44b42abcfb9cc9c7061d05350b521bcbd85c 14120722 1643726833 2022-02-01 14:47:13 0x7affe6048d4b2647ea5971793a920bee0414133c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009321030697 10.19813969 2790.15 Increase Custody Allowance | |
0x6e549f06cd4bb1df7eceddc0d22570009e522c550dc2aa5223d4234753ea1cc1 14121566 1643737886 2022-02-01 17:51:26 0xd05471d614a7b0d1fcda75c40dfb61cb4af2758d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007857277003 8.596646769 2790.15 Intend To Withdraw | |
0xdcc7f29ada1d6a71e38a5678ea35a8b9bf1c91e213ee223cdb02b1306038b841 14122048 1643743967 2022-02-01 19:32:47 0xab219045455fe12bd0f66b9fac825d40560036a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01867938318 20.43711314 2790.15 Deposit | |
0xca31ed8cf5e77b3db3c697bf0cccf5c6a7022c42b4e4da9fc6e1c3534670dbd7 14122055 1643744018 2022-02-01 19:33:38 0xab219045455fe12bd0f66b9fac825d40560036a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005457142486 5.970659594 2790.15 Increase Custody Allowance | |
0xa775be81c9f000302de96b189233d434258393cce74a3d7c3bceb5f3bda58f90 14123253 1643759873 2022-02-01 23:57:53 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04169499903 45.61849843 2790.15 Withdraw Funds | |
0x108d7d8e5f07bdf08c73a72b305e7f18a80dd779e602cb4aa3b356b7dbb3116a 14123434 1643762295 2022-02-02 00:38:15 0x1f87f31f087362b263aa209f475ab59a50cdf45b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02486993226 27.21019289 2681.11 Withdraw | |
0xfd3db5e0f2bee01cd98648eddcba8d1d538488327eeb9bccd4ba846c0a6a89df 14123499 1643763262 2022-02-02 00:54:22 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.035436269 38.77082191 2681.11 Deposit | |
0x6a7ffc3cd212595ffa2c7826efab12c95524d55e49e73a3a76ff3de35681f73b 14123503 1643763346 2022-02-02 00:55:46 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.015225569 16.65829504 2681.11 Increase Custody Allowance | |
0xf9ded17fbbafa309bc98c4c9e76337fb98654898aa60e23d5ef688063925e877 14123589 1643764327 2022-02-02 01:12:07 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01860473543 20.35544104 2681.11 Deposit | |
0x072b8a497ef743de47ff8dcdf20cc170df6e43d8e68a2c3ecb947bb99363e2e2 14123595 1643764372 2022-02-02 01:12:52 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008819965803 9.649924585 2681.11 Increase Custody Allowance | |
0x6a97f3fa9bc6e97774d97f1ef648fc2f2110290a26c90267187bbe0caa5b45ba 14124779 1643780482 2022-02-02 05:41:22 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01109474893 12.1387648 2681.11 Deposit | |
0xef19052a3902d03e25a15acc599bafee39f8dbf885b4a40899589aca7aab5818 14124954 1643782568 2022-02-02 06:16:08 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007900184176 8.643591507 2681.11 Withdraw Funds | |
0x0f4a0d36ce62c14c0aace532f6ef707d3f99cd59da1b1c6ae164cf49019c5572 14125672 1643791920 2022-02-02 08:52:00 0xeb783a2537f7817132e170d940681104482ed4d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01349953616 14.76984251 2681.11 Deposit | |
0x3eca9b81995fe9a437a8c6ccd911932d150510ef36406f9b595d83a9ed93f203 14125678 1643791986 2022-02-02 08:53:06 0xeb783a2537f7817132e170d940681104482ed4d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00592044983 6.477564159 2681.11 Increase Custody Allowance | |
0x32b1c88bebe93d1a851d04220ca845730114bc63eff1fcfd8c13759cdf1afb1b 14125997 1643796331 2022-02-02 10:05:31 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0197965476 21.65940273 2681.11 Claim | |
0x9f3d87cfc659870ebeaa9cfa7bdcce5898b08a6136cd4a8f996db911ffb7fd38 14127701 1643819436 2022-02-02 16:30:36 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007589453262 8.303620814 2681.11 Intend To Withdraw | |
0xa8b7ee22cdaac880a925684d027da9740f445afa6ab4de6d9d0dc7f914955e05 14128344 1643827966 2022-02-02 18:52:46 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008363879735 9.150920818 2681.11 Increase Custody Allowance | |
0xc335fa229635c3101291d167231065215701ca5a3b5784e8c94de552a4caa8db 14131320 1643868469 2022-02-03 06:07:49 0xc1c589dc0922399b966f515d4b6436707d679974 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01117417047 12.22565991 2697.18 Withdraw Funds | |
0x02e5b49c4a0be02f8667cd70b1a521b2e9ac3f6a41cdc44d00ddbbbb2ca68d8b 14131326 1643868558 2022-02-03 06:09:18 0xc1c589dc0922399b966f515d4b6436707d679974 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01459628506 15.96979548 2697.18 Withdraw | |
0x3d9fd1b29a1402607818ade66650b3dc483574f83b062700d556c3d5ea3de9e1 14131629 1643872613 2022-02-03 07:16:53 0x553bff333348548cfabf3b4fcb49ef5f2c28c10a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002280677382 2.495289124 2697.18 Intend To Withdraw | |
0x36ff474b390dd896a8e54a42fc26a78b0014af58799da72cac37343483febb2a 14132018 1643878036 2022-02-03 08:47:16 0x364462cee8e0a66306b706a43dc5bef2ff4e8be8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009553510802 10.45249617 2697.18 Withdraw Funds | |
0x7e6fb6de48e2bb657c173e787f20190853df6449d358e96992e3184c986e8b53 14133888 1643903276 2022-02-03 15:47:56 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01054879711 11.54143892 2697.18 Deposit | |
0x86ffde91ba0fae638bfed14de8348a31001cdc1468442bbc16085ef764002d4a 14133892 1643903393 2022-02-03 15:49:53 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004972706791 5.4406385 2697.18 Increase Custody Allowance | |
0x83e1476e8a3e0965e4619a1c2b65e13b4b8e0de8da36045d60e40b9239bef018 14133913 1643903574 2022-02-03 15:52:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0256142837 28.0245878 2697.18 Claim | |
0xd3c4fb48b14791867e72eada442ecd0b0430f89b730faf6e0dddcf857d831f54 14133916 1643903635 2022-02-03 15:53:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06292329638 68.84437857 2697.18 Fund Loan | |
0xe61eae352e7d0fa3f750f291d33f0662ada10717e5b929e79fd8d08b34cbc511 14136407 1643936278 2022-02-04 00:57:58 0x54d020c2fe9d0c9d9b562fa1ffdbc6fa8a0bab93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01394273839 15.25475007 2997.18 Deposit | |
0x45afe1189a26615b7767431b45a9648bed5e0b844ea5d2207169f3144b287a4a 14136409 1643936324 2022-02-04 00:58:44 0x54d020c2fe9d0c9d9b562fa1ffdbc6fa8a0bab93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007559540504 8.270893265 2997.18 Increase Custody Allowance | |
0x00cb86d4fc1bcbbb49b80b170c11f89e1e13971cd4698e8e8499cb0c8eef386b 14142950 1644022672 2022-02-05 00:57:52 0x881117211e99ab4db61c5bba916c0e9ea8532e75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01822586843 19.94092265 3015.26 Deposit | |
0xd7c5a4fa19efde01fc59bd0fa05ba386fcd49c249ac339c3034c595c65b7ddb2 14143552 1644031304 2022-02-05 03:21:44 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01328469816 14.53478826 3015.26 Deposit | |
0x64dd0689816d977b9b97d2507672f426649767991591ccc0a91f0427b93c0020 14143617 1644032172 2022-02-05 03:36:12 0x72c2fc6963cd8e7577ce3a125afd1153c88ed7b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009229352366 10.09783442 3015.26 Withdraw Funds | |
0x90bdd7ab1b01e760df1b5222b3a1aeb19dd548b3a7951fe85b9b32504499c993 14143778 1644034410 2022-02-05 04:13:30 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01378414864 15.08123703 3015.26 Deposit | |
0x73918c08c2998a34aef2c2742d457156fbb8daab45481b27bac9de28aa095a97 14143784 1644034511 2022-02-05 04:15:11 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006859778791 7.505283975 3015.26 Increase Custody Allowance | |
0xa1bc0477a779876bd6195f168c3f61f9ea53bb01fb44649d6b38b8af1e53398d 14144291 1644041625 2022-02-05 06:13:45 0x96f4da61ee795f9f4a5cf0daadcc336adc73232a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001858793181 2.033705619 3015.26 Intend To Withdraw | |
0x819f8bb83000bf6a1216c5c680c06e4a8deca4cbb282a3234a6c938ec4d77fb4 14144441 1644043578 2022-02-05 06:46:18 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008313195939 9.095467676 3015.26 Deposit | |
0x7a9008e36b199db1c6d1e482bd991371341c705e501b61aac84093f4e1d33879 14144474 1644044017 2022-02-05 06:53:37 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004333218959 4.740974864 3015.26 Increase Custody Allowance | |
0xf89f52b2097935929d5d2e78223930ccebd5cc92eb696f8a7908699cf813ec15 14144631 1644046162 2022-02-05 07:29:22 0x1b262751dc4cc3257600cf674cea8b9cb9acd632 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01108002051 12.12265044 3015.26 Deposit | |
0xea8b773200b6075ca8c94e5c90beb70eaedd9efbea844db6d7d422c74d3ff008 14144642 1644046309 2022-02-05 07:31:49 0x1b262751dc4cc3257600cf674cea8b9cb9acd632 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004813985058 5.266981052 3015.26 Increase Custody Allowance | |
0xafdba6b95e295d9a1fc3a0143ab3a5ab2de10579d00a0bc1c27a25ab23878e0a 14145226 1644053937 2022-02-05 09:38:57 0xad4e7250da56eb33e1a376250b916526c81cf1ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002560178555 2.801091357 3015.26 Intend To Withdraw | |
0xd22d70cb8da2046ee242256e31dfb2178807f5880268c278622e8d16712586db 14145237 1644054090 2022-02-05 09:41:30 0x6979039759ea5f6ad1d86261ad3f33d4cec83e8a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01109280402 12.13663688 3015.26 Withdraw | |
0x7cdbd6f3ec807915a64423a28a453a58c6147b1859b1ce4a808aa6e55fa40589 14145245 1644054225 2022-02-05 09:43:45 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00621426501 6.799027347 3015.26 Deposit | |
0x64e87037ed21d1e70b3117cfa20e0a454dfe7b2d909e6a47e3118ab423a83954 14145252 1644054314 2022-02-05 09:45:14 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002105499801 2.303627333 3015.26 Increase Custody Allowance | |
0x11dba13a2d5fd28f22703360ab9108232e5f764651828f10654341e0bd846bd6 14145425 1644056507 2022-02-05 10:21:47 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007153233646 7.826352932 3015.26 Deposit | |
0xb827b6447eb8cf0345e767e1ac4fd7644018e9920adca10138810c894e1442fe 14145428 1644056550 2022-02-05 10:22:30 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003593674841 3.931839644 3015.26 Increase Custody Allowance | |
0x6dd4b19c9ec4dd968ebf84bedac5d04d9aaeee14d98f244cbdf0eb58f4bcf5ad 14145493 1644057283 2022-02-05 10:34:43 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004517340083 4.942421784 3015.26 Withdraw Funds | |
0xbdb17f31dbe628a336d0563d8e6d56de4761c09358328431627a4bc79d559dc6 14146598 1644072109 2022-02-05 14:41:49 0x05b0b5589f548c63c4559f81838feb48b54a653d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005672844733 6.206659422 3015.26 Deposit | |
0x60f9e97ffb57afa2767a6089c2012e8b665fa1d4701ecef3446a6e9d303e7e32 14146620 1644072400 2022-02-05 14:46:40 0x1048e693b121a6386f024f2e97ea17e28537b99a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005141738918 5.62557655 3015.26 Deposit | |
0x7f8d1b399140dd92a56c26038d16b5260b512ad64d986b10e8c4a75548ef3294 14147464 1644083824 2022-02-05 17:57:04 0x16c0a9c9967d8e860bf84596769ef513dd6f2094 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01646591849 18.01536142 3015.26 Deposit | |
0x4df913f68d41b700ea9eb25288c80804b14c101d1500826a5651855514bb139b 14147500 1644084235 2022-02-05 18:03:55 0x16c0a9c9967d8e860bf84596769ef513dd6f2094 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006529415519 7.143833519 3015.26 Increase Custody Allowance | |
0xdc68a3d0698048845469a785d5cbed43bed122aaeccbbe084b77bedeeb4cd069 14150885 1644129329 2022-02-06 06:35:29 0x725b29e908b96bc58fcfe76120fb8e16748ae51e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008151173074 8.91819846 3057.68 Deposit | |
0x88fa28c83ec5fa0df0b9d1c7a2749f6848291c6d6f56f068baa3911d865f6f75 14150901 1644129508 2022-02-06 06:38:28 0x725b29e908b96bc58fcfe76120fb8e16748ae51e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003342807946 3.657366174 3057.68 Increase Custody Allowance | |
0xa123ff66ff85b4c150ec2b6f001b280c3da0e15f6f74965777621058146a34c3 14151765 1644140790 2022-02-06 09:46:30 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01164026 12.73560846 3057.68 Claim | |
0x807a30fdc8d0e7d00a63623a3777ff5de13794537a34c1bdb96da04ec8da1327 14151768 1644140832 2022-02-06 09:47:12 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0130188701 14.24394578 3057.68 Claim | |
0xc896fd2c9d57ed2192b1931f1024fc34e6ebac7ee8397508699d9fdef05461d1 14151771 1644140867 2022-02-06 09:47:47 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003473592905 3.800457997 3057.68 Increase Custody Allowance | |
0x83d715a7bd266bc961f3057bb5da36de440061601691c0f58aa882e0e781fe70 14151771 1644140867 2022-02-06 09:47:47 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01149689653 12.5787545 3057.68 Claim | |
0x3e9db357b45902dc896d5aa7c85e2ac2a9782180a8a9f0c4f57e1342197b333d 14151780 1644140969 2022-02-06 09:49:29 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01013331056 11.08685508 3057.68 Claim | |
0xb35acfdb4718a5ad16beb4b878d4e0569f9337e90000714795d816202c2cafb1 14153246 1644160289 2022-02-06 15:11:29 0x649b416c0ebfde0386e6b4eaa45539a9e6055b17 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01010268703 11.05334988 3057.68 Deposit | |
0x4ca01f4fd5f92f1cd8084da960c962973096e85117c25c8b44fc0664f454982a 14153256 1644160417 2022-02-06 15:13:37 0x649b416c0ebfde0386e6b4eaa45539a9e6055b17 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004156661994 4.547803888 3057.68 Increase Custody Allowance | |
0x18332d2073ce56d594fe9ed617a299a0967ae43eb974b2de6a133deaa545137e 14153605 1644164830 2022-02-06 16:27:10 0x5713d568cfcde3b1824fa56d1eaa598bb61c3634 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01155570767 12.64309976 3057.68 Deposit | |
0x84e962f98f6cf9fd4a9d527e60e94e663e37935d5067a6f71f1d117882b1f221 14153628 1644165180 2022-02-06 16:33:00 0x5713d568cfcde3b1824fa56d1eaa598bb61c3634 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005520744229 6.040246261 3057.68 Increase Custody Allowance | |
0x0dd732c344831a15fbc392d487c2b396fdfc114a5e9ecdd532a9d57ff5ee8d7e 14154836 1644181638 2022-02-06 21:07:18 0x4e3f9fe856cf1d909ca2521b18ec5ae310d514a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01627368706 17.80504101 3057.68 Deposit | |
0xa18f93a7eea5845541866d00761760b7c5713a28bd33c49d7b0dacdcb6f172d6 14154858 1644181923 2022-02-06 21:12:03 0x4e3f9fe856cf1d909ca2521b18ec5ae310d514a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007350661311 8.042358541 3057.68 Increase Custody Allowance | |
0xd5737051230a474f8211868fe14edd145d4fd465b511d14e3b5566ee67228900 14155059 1644184806 2022-02-06 22:00:06 0x3991adbdf461d6817734555efdc8ef056fefbf21 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003521816538 3.853219475 3057.68 Intend To Withdraw | |
0xd521822460beb4fec09c6b9fca12878f9b542ef97b6d9e685f5aa3a808d8a169 14158232 1644227651 2022-02-07 09:54:11 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007478806731 8.182562444 3141.38 Deposit | |
0x0cbeca4cb27c225a54788d4d740970ff4d9a0e60d6e970059eefcf34ff33d95e 14158236 1644227683 2022-02-07 09:54:43 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002193165941 2.399542856 3141.38 Increase Custody Allowance | |
0xa8b1f2f5eef2b9e3b988d7e3a3a60991711c37dc26d73a7749cac7e3c011aa17 14158737 1644234601 2022-02-07 11:50:01 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007294839004 7.981283355 3141.38 Deposit | |
0x08bb17cb4b7b8cdf243c3dfb54092b544b37961d10513b9db770cfe4dd2207cc 14158934 1644237336 2022-02-07 12:35:36 0xc78bf98a0deb8a85974fb9b7b3a0e2498447c4dd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001806466794 1.976455319 3141.38 Intend To Withdraw | |
0xf5f5f19346ec5c5a5fbd00e0a49c3d930348edd13cec90726ac696b5bd4934ce 14159135 1644239812 2022-02-07 13:16:52 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009077673172 9.931882217 3141.38 Withdraw Funds | |
0x5e5c4dc6d56d81cbe67709ba80476fbac582ed3bfcd934be419e4fc0902395de 14160386 1644256264 2022-02-07 17:51:04 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06776914948 74.14622645 3141.38 Fund Loan | |
0x1f70c2f42086004951265ab945a429e0d3703678777dfb279a566d28d9c181af 14160391 1644256286 2022-02-07 17:51:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02528786044 27.66744811 3141.38 Claim | |
0xdfa0aa52b2885f1c3f1404c57be6af26db1492b3202938021fcb8ee9120be382 14160401 1644256466 2022-02-07 17:54:26 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02710682379 29.65757591 3141.38 Deposit | |
0xe03d4fff943533279bb67684242bd6f95e97e1ac6f8a9412f3fa98f9332e2331 14160408 1644256512 2022-02-07 17:55:12 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008661700829 9.476766877 3141.38 Increase Custody Allowance | |
0x84783aeefc9ffd9f117a967eb39c1faca7f7878986414caeec70c2bb62094e3c 14160543 1644258271 2022-02-07 18:24:31 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01307340896 14.30361675 3141.38 Withdraw Funds | |
0x63a6de8d3b1c5bae180dc9674e5a3fdef43a319fc9a5a7620e6c0cdea2ddf124 14160808 1644261761 2022-02-07 19:22:41 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02947188654 32.24519106 3141.38 Deposit | |
0x0623e7d377d6c64a9dbf10d3f34ccd6310cd23eacc9eb97b06005a457bdb7081 14160817 1644261821 2022-02-07 19:23:41 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006949130769 7.603043974 3141.38 Increase Custody Allowance | |
0x93328fe210f447fc33e792a64de5643b76e4796cf5461d6e58cb3dc357d74418 14161739 1644273582 2022-02-07 22:39:42 0x94f4d3a5791f71ffdd83ac5d0d7f16846b835bb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01667210753 18.24095285 3141.38 Deposit | |
0x651d2045eb373f7bb3a03b7e529b51f8fe24176efef6f72fc7c15decf6b7e272 14161852 1644275164 2022-02-07 23:06:04 0x94f4d3a5791f71ffdd83ac5d0d7f16846b835bb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01216698461 13.31189787 3141.38 Increase Custody Allowance | |
0x2e69d08dcd2abc23c3bb73419363b10a30e004832b68b5bb2f707813afcafedf 14163062 1644291553 2022-02-08 03:39:13 0x12b5c9191e186658841f2431943c47278f68e075 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009633898172 10.54044799 3118.76 Withdraw Funds | |
0x8d471fc4c36f766e22a8ba06a03e1fe98a3b142041f272aed108da3333c327b4 14164594 1644312026 2022-02-08 09:20:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01967691124 21.52850859 3118.76 Claim | |
0x2f737e7bdb520450eff134376816f675c6e95a374002be8e63257c0c17d2c09d 14164596 1644312085 2022-02-08 09:21:25 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05011112297 54.82657964 3118.76 Fund Loan | |
0x07d1c4361642d22ea4192c68c1288681415fd07e530916194dc497251b919a46 14164602 1644312177 2022-02-08 09:22:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02127614957 23.27823524 3118.76 Claim | |
0x2631ca53663f37ad6bfde03c25afd80bbd7a868841f81960e404bfe4db6e5bb9 14164606 1644312293 2022-02-08 09:24:53 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02421401248 26.49255105 3118.76 Claim | |
0x49f6696a37dd0de1e7a2b981228de3c8338ede4b536553253e3494056e4bf074 14164610 1644312344 2022-02-08 09:25:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01318521699 14.42594591 3118.76 Claim | |
0xa4d0026b206e267afc1e2458c29e5a6c82538aa9fccf84df300846f986666e26 14164894 1644316024 2022-02-08 10:27:04 0x22ab0ce219be85cd12e791d715ee5ff1922d9a4f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009784746052 10.70549066 3118.76 Deposit | |
0x00cdd5d3f7ab4183c4e517fa12a3504245bc25e0c97f96d10d21faee33bdaa8e 14164902 1644316112 2022-02-08 10:28:32 0x22ab0ce219be85cd12e791d715ee5ff1922d9a4f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00405574908 4.437395068 3118.76 Increase Custody Allowance | |
0x55f37aa9e04f7d9a9b74e3b26da49e5bd6884b18900e9ac567580b7c79ddf19b 14165229 1644320692 2022-02-08 11:44:52 0x7affe6048d4b2647ea5971793a920bee0414133c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006237065245 6.823973085 3118.76 Deposit | |
0xf01cc88ff19c99855a240713514130f9712e68b3dc62f5a4ca7d9c0851a4cb93 14165235 1644320769 2022-02-08 11:46:09 0x7affe6048d4b2647ea5971793a920bee0414133c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002277893702 2.492243499 3118.76 Increase Custody Allowance | |
0xf7c5a25a0d3247e0a2c69ae610ecdbe26e8c07c7f44592aa60d83c4e07556d89 14165590 1644325490 2022-02-08 13:04:50 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007906233091 8.650209625 3118.76 Withdraw Funds | |
0x4125b3a8571c299eae6923c5e9762d85d9f9743186b5c0f5f40f28627e52d084 14166948 1644343875 2022-02-08 18:11:15 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008528134822 9.330632308 3118.76 Deposit | |
0x6028c2c6608b00de427d0cc48e35300395373ea9fd817ae7403f8e389f5d655e 14166952 1644343909 2022-02-08 18:11:49 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002548658402 2.788487158 3118.76 Increase Custody Allowance | |
0x6df5595a9dd764635102162535947ce7c746486c88bd217b424b8e66175ac203 14167335 1644349027 2022-02-08 19:37:07 0x6b6310bd7fb278c7d6a12f888a0360b44d209e33 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01851450115 20.25671571 3118.76 Deposit | |
0x1879b452b3f4a73c2c32631f1df365eb460529513b8fdf84d088263fe55bbfd7 14167339 1644349107 2022-02-08 19:38:27 0x6b6310bd7fb278c7d6a12f888a0360b44d209e33 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009872399359 10.80139214 3118.76 Increase Custody Allowance | |
0x9647893af731b731a042bf3c22daf807539d2ccc5f2e91aa508b4b4e5efe969f 14167607 1644352908 2022-02-08 20:41:48 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00767088332 8.392713441 3118.76 Withdraw Funds | |
0xba36ed0e0910f1bf7b3935e7d9a8b7110847abba6d10a3de3336c22fe68cef78 14167618 1644353060 2022-02-08 20:44:20 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007318500189 8.007171056 3118.76 Withdraw Funds | |
0x1e435340883600f33f80f905269dfd6cd05d342e27fc1a7604a5ad9a153e4689 14167631 1644353219 2022-02-08 20:46:59 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009389073037 10.27258481 3118.76 Deposit | |
0x5ac276b763e45b712faea2dee7b0e1d725f6d542f3c83393e2c13d4ab3515a1f 14167740 1644354586 2022-02-08 21:09:46 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00393576083 4.306115924 3118.76 Increase Custody Allowance | |
0x359948eb1f26542bf6d017c5982063ae0abe4507aaf2a26d6f6a0ad43e16b059 14168391 1644362872 2022-02-08 23:27:52 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01681150473 18.39346732 3118.76 Withdraw Funds | |
0x081b314c260ed180faf5b2db2e7a9550d790a090e92a8807ae884e9d964b7ca3 14169424 1644376887 2022-02-09 03:21:27 0x4c4b17543e24106201b3f7c888918c5a478bdb3b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00798554457 8.736984314 3246.72 Withdraw Funds | |
0xd97a6befcfba49db01983d1f96b60d6721a9aaf371ce9428259366672fe0690b 14169977 1644384444 2022-02-09 05:27:24 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0123974425 13.56404184 3246.72 Deposit | |
0xfd06be34da76aed1ed997c5e65523d64f5ab1a52fffc7e0e49139cb7e9588179 14170027 1644385043 2022-02-09 05:37:23 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004787850016 5.238386703 3246.72 Increase Custody Allowance | |
0xcefe14f7f315f84bccf176e426ce9c71aa3ba07d4da06e0dd150eb932e2c41ca 14170483 1644391216 2022-02-09 07:20:16 0xd1271a1a2da13a607e29ec0b75639c9612c5f74d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0023596 2.58163836 3246.72 Intend To Withdraw | |
0xec740a79dc9a6ed7bd7ec84c57494a4dc94b62a945c8a9a93150ac8169195f1e 14170849 1644395800 2022-02-09 08:36:40 0x41c6beb49d2d471c1f6889c800c6ae92c6d1abb3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007463299957 8.165596483 3246.72 Deposit | |
0x730c47ba7e53003b44cd11056c24a52347de8a0f3cd238d0a2917427d4bfa04d 14170851 1644395853 2022-02-09 08:37:33 0x41c6beb49d2d471c1f6889c800c6ae92c6d1abb3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003977377003 4.351648179 3246.72 Increase Custody Allowance | |
0x4a5fddf09d157bfbc2403c300bbd28d3387b1a37fd5a82ae9eba77b49eea45cd 14171083 1644398881 2022-02-09 09:28:01 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001995531066 2.183310539 3246.72 Intend To Withdraw | |
0xd26a9a9add771b4f60525a1f0e1ccce3f43a2f5c55254343825b3bafad6b242e 14173410 1644430218 2022-02-09 18:10:18 0x94f4d3a5791f71ffdd83ac5d0d7f16846b835bb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00833583586 9.120238015 3246.72 Deposit | |
0x14ff0a075d1a125c694b29540edab56b7b1cbbe03f47c4f6d4763d7296efefee 14173877 1644436572 2022-02-09 19:56:12 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02872450911 31.42748542 3246.72 Claim | |
0x88764ae644c656d56724a1a088b8a886cf3035e2639490ff818e7fdab67e302c 14173997 1644438230 2022-02-09 20:23:50 0x94f4d3a5791f71ffdd83ac5d0d7f16846b835bb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0117009174 12.80197372 3246.72 Increase Custody Allowance | |
0x93075a2642280c72e3273c5ea3d56128cb0a2c670e2babb4853f8c5462413af3 14174010 1644438465 2022-02-09 20:27:45 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.09516812751 104.1234483 3246.72 Fund Loan | |
0xaa3b6cecd4e36e829088ba61020999ffa3fd14f9c49129d011433992a1b46ff0 14174584 1644446095 2022-02-09 22:34:55 0x04a2d4cb7e28524fc127282ddaf7737cf8e439a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02732089229 29.89178825 3246.72 Deposit | |
0x6e9f226d7dd2009667970f2ede452cdad51ffe9f1bc7ca80c834e30d5bccbede 14174589 1644446132 2022-02-09 22:35:32 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004880772057 5.340052708 3246.72 Increase Custody Allowance | |
0x8eb146d4138c146872a0f04de04b11864f688ec45aa81fa1c478e868558154ff 14174594 1644446164 2022-02-09 22:36:04 0x04a2d4cb7e28524fc127282ddaf7737cf8e439a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006969534602 7.625367808 3246.72 Increase Custody Allowance | |
0x8157a15575b8149919e646d1a65edf7ef567b050a29f63b8cab0f6d2437a131f 14177066 1644478932 2022-02-10 07:42:12 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007382964356 8.077701302 3074.84 Deposit | |
0xcf90f9ce9dd7c0ce826223c59ed2cfe87967346a72bd42b23f0e73d4ffbba0ff 14177069 1644478980 2022-02-10 07:43:00 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00363619646 3.978362547 3074.84 Increase Custody Allowance | |
0x84b74dbe5ebe9272b40bb280eb1bd628e8c4e7c972b28cbc33e5b993f00c72ab 14177616 1644486386 2022-02-10 09:46:26 0x8fe7b143b2c67739e9c933da0a48142b14c4415d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001751237084 1.916028493 3074.84 Intend To Withdraw | |
0x06a0cc63f66e4e69f2adc0e7baa6765f078eab455900bda5cc4ff864900bb356 14177621 1644486449 2022-02-10 09:47:29 0x8fe7b143b2c67739e9c933da0a48142b14c4415d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004092007393 4.477065289 3074.84 Withdraw Funds | |
0x196b33359439b07c8dfcc7b237ef3d763461b4163e4af80dbc1d355e590402a8 14177780 1644488547 2022-02-10 10:22:27 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005048898351 5.523999686 3074.84 Withdraw Funds | |
0xd3416db57ad6d5d068a15107da805f68602d87e2e133eccc08a1bb8ff274f70f 14178464 1644497648 2022-02-10 12:54:08 0xb4d1340303d89ccc48a19cdbdb5723aeceda933d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005797043465 6.342545255 3074.84 Withdraw Funds | |
0xd728be492c0c64ee9294a594ab7ce07bd565519f129aa433f862d90729a3c021 14180224 1644521744 2022-02-10 19:35:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.06788422639 74.2721321 3074.84 Fund Loan | |
0x39c88f33d523bcf5c9beee738c493bd97795fca413c1015dd7bb50b8e7e71dc4 14180229 1644521779 2022-02-10 19:36:19 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02617181231 28.63457985 3074.84 Claim | |
0xf039c66299269117ed66808413b6baf801c04a7c7b8864661bb910fc5c81c8a8 14180430 1644524351 2022-02-10 20:19:11 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01062936149 11.62958441 3074.84 Withdraw Funds | |
0xaf4a813df5f0b932c9afd403b1f73178e0b5e1ba6b5c72f32ff216b4caefee48 14180663 1644527524 2022-02-10 21:12:04 0x1debd6c16b92c1d5c93237d9d65dbc5e5eb3e02f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008067436961 8.826582779 3074.84 Withdraw Funds | |
0xde1ba7fb3dc57fd547d658078dd9a2b7605d6952987efe30212d51bbe252ab75 14181089 1644532910 2022-02-10 22:41:50 0x65b1b96bd01926d3d60dd3c8bc452f22819443a9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01571618597 17.19507907 3074.84 Deposit | |
0x5bfea51411a279a3018447e0832e3d8688a22ff9cc2a0d3aed8b19091d3a858a 14181092 1644532968 2022-02-10 22:42:48 0x65b1b96bd01926d3d60dd3c8bc452f22819443a9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007677391075 8.399833575 3074.84 Increase Custody Allowance | |
0x41768dda2697d992c939ad15d0b9408d57c2191747f3a1b0e9e0a055abcb7157 14181902 1644543967 2022-02-11 01:46:07 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006890381125 7.538765989 2928.93 Deposit | |
0x4a0d04b21d9e6a89ed75a47e01b050348ccf084f3fe3ee878bd3ee9b957a21a8 14181904 1644543995 2022-02-11 01:46:35 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002470066766 2.702500049 2928.93 Increase Custody Allowance | |
0x9ddc358798e7404d5a5d4d58627f463b7ca4628c8b0e1d1fe7fc6bf09967a7f6 14182202 1644548448 2022-02-11 03:00:48 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007105912735 7.774579124 2928.93 Withdraw Funds | |
0x7f98f72364420fb9097c049e1c5abdc1adb88e21bae5d77ea0fc2b2d8db04277 14182567 1644553453 2022-02-11 04:24:13 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009388142757 10.27156699 2928.93 Withdraw Funds | |
0x18a96d6d566db4afcf00803fab638b8273736c6cab13c84ddca1c5695eedaabe 14182618 1644554005 2022-02-11 04:33:25 0x72c2fc6963cd8e7577ce3a125afd1153c88ed7b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003287611714 3.596975977 2928.93 Intend To Withdraw | |
0xe792bf984eaa9dc4c0f9a4473b3f5a772368eb848caa4ea5e60e8a4a3d915086 14183180 1644561386 2022-02-11 06:36:26 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005006041358 5.477109849 2928.93 Withdraw Funds | |
0x9d070be7ad34c22fc837b6220aedcc2dd2ca91b4dac29681403306b6e72b74a0 14183467 1644565337 2022-02-11 07:42:17 0x4d089e2748f43ad8efbc2da858af290c6298c08a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00324075052 3.545705144 2928.93 Intend To Withdraw | |
0xe2561dca2c202d23c38898c52c21bb0bb6b3210920aeeec6d3ecb460a1936a15 14184396 1644577833 2022-02-11 11:10:33 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004666456769 5.105570351 2928.93 Withdraw Funds | |
0x22da5ae48b170429f6a97592653fc0811339a2c73a4675f4e474a6b67e9abdb9 14184405 1644577909 2022-02-11 11:11:49 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004692022438 5.133541749 2928.93 Deposit | |
0x0c10ae001fcf7c5409f62c8012ecae62e507f2a9e9fb7aad8d98c9a34b3eff3c 14184433 1644578377 2022-02-11 11:19:37 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002154447963 2.357181516 2928.93 Increase Custody Allowance | |
0x6d6f55038ba3917330aad91f02d9dd72229ff80ba8f6968c90f6a353f396537d 14184439 1644578447 2022-02-11 11:20:47 0xfa0ff9af46adb1e565bb1b96fdf8250d9b7b2bcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009526898531 10.42337968 2928.93 Deposit | |
0x24d6378b3295011df5349ca366a0841cb12f45a0adc7f1f4caaadaa4bfca2b5f 14184441 1644578480 2022-02-11 11:21:20 0xfa0ff9af46adb1e565bb1b96fdf8250d9b7b2bcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004156849492 4.54800903 2928.93 Increase Custody Allowance | |
0xfe2961bcac93669c67235a003664108499fdc132c03dfaf718dcde5bf6a613a8 14184975 1644585449 2022-02-11 13:17:29 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002108702943 2.30713189 2928.93 Intend To Withdraw | |
0xab41a2cbaa0ddddff5e2ea65e738161d281c2d681aa65155d107d826056b7443 14185076 1644586939 2022-02-11 13:42:19 0x174d5a5b23a8e3269f70e78b29613128acb8ef0d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01107056402 12.11230409 2928.93 Deposit | |
0x048c97e250ac8b77756953bc98ba727b8b79c41876633360ae540f50214cbd5a 14185086 1644587003 2022-02-11 13:43:23 0x174d5a5b23a8e3269f70e78b29613128acb8ef0d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003793053922 4.149980296 2928.93 Increase Custody Allowance | |
0x30fa3751829d9e2f1005fc992053e0b1d21b1b29d5bc275aaab76d71a677e6f0 14185377 1644591161 2022-02-11 14:52:41 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008318194228 9.100936305 2928.93 Withdraw Funds | |
0xbdc1ee721891cdfc76a6fe078f7fe9361235bf18685ad3f7e75a5e9302bb0193 14185393 1644591348 2022-02-11 14:55:48 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002797655057 3.060914397 2928.93 Intend To Withdraw | |
0xd9fdd9885964000a9dee8624d85ae4d5038709e37282523c034b6911229a19c6 14185474 1644592250 2022-02-11 15:10:50 0x72c2fc6963cd8e7577ce3a125afd1153c88ed7b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003745248666 4.097676566 2928.93 Increase Custody Allowance | |
0x0b61841334c7950715bfc890829ea8ebf2771c6592a0bb5da11ea20422042332 14186214 1644601989 2022-02-11 17:53:09 0xd05471d614a7b0d1fcda75c40dfb61cb4af2758d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01294489082 14.16300505 2928.93 Withdraw | |
0xd5e950105800cdcbe9fc699be596d79b8d1d73fd9d3af8afc7774deeb418024f 14186757 1644609185 2022-02-11 19:53:05 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005688716855 6.224025111 2928.93 Increase Custody Allowance | |
0x06bfe7d641b8215866030d8c61a2ef51f0e54678b7712da9164b395c1e6ac6f2 14186824 1644610068 2022-02-11 20:07:48 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01155837799 12.64602136 2928.93 Withdraw Funds | |
0x8444a581f79db896e79cc90308a79d22d628806a765bf820f746e592b13f6874 14186827 1644610138 2022-02-11 20:08:58 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005489087448 6.005610577 2928.93 Intend To Withdraw | |
0x15d2ff066d4341e3f49b34e2970c9518c87afbaa943c6ae987fd0d5e70f9f21b 14187024 1644612723 2022-02-11 20:52:03 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004111576248 4.498475573 2928.93 Intend To Withdraw | |
0xb089e42ff21654e9f41c214ba22a89fcf93a5157f10081406dd14f700591550d 14187200 1644614885 2022-02-11 21:28:05 0xff2eb6dee6f0d137fe95acde5e9e1126e9373537 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01631271107 17.84773719 2928.93 Deposit | |
0xe3d242047a58d1a70bf16f313fa5b60559fedf6d8dd5d5645c6e8cc99b3c4584 14187203 1644614946 2022-02-11 21:29:06 0xff2eb6dee6f0d137fe95acde5e9e1126e9373537 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008381311985 9.169993443 2928.93 Increase Custody Allowance | |
0xb2003bacfdd375b6c1cceedc6ea6d728bebaaf925d516d410e58023502ddb254 14187331 1644616471 2022-02-11 21:54:31 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007582486513 8.295998494 2928.93 Withdraw Funds | |
0x82dd3a6575077a1abbc685c6f496cd2463bd6b2f55e229372710b3abea6847c1 14187338 1644616602 2022-02-11 21:56:42 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01165962072 12.75679103 2928.93 Deposit | |
0xfb04a416fd1b136c32c51cc5eb7354f0724941217b05ba8656de8603aea0bb5c 14187346 1644616707 2022-02-11 21:58:27 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00375891098 4.112624503 2928.93 Increase Custody Allowance | |
0x218a7918e10ba1010db3cc13847ba48799324466155fa4f956ac41d2caa0520a 14187990 1644624662 2022-02-12 00:11:02 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006989619645 7.647342854 2918.34 Deposit | |
0x5133bacedb0d08304568ba3b5297847381a00650a91697d83d91bed430dc22c2 14188002 1644624776 2022-02-12 00:12:56 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002694800158 2.948380853 2918.34 Increase Custody Allowance | |
0x52fd0f89a28d36f0eb4bab2dd067f7aafa6c4da9c52f525a7934de25ce0d7fc1 14188403 1644630316 2022-02-12 01:45:16 0x554f11f7f47c210513900367063eaebc3a4d853e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007563096142 8.274783489 2918.34 Deposit | |
0x128db755a6c3469af6b37db82a92b3b85e0672027f36ae5da0a4350b5fdebb92 14188407 1644630362 2022-02-12 01:46:02 0x554f11f7f47c210513900367063eaebc3a4d853e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003629651892 3.971202135 2918.34 Increase Custody Allowance | |
0x1a474ac8707d6e76ea0e8799d83c5e9aad0e7b7c4507c4bfd67bfd66ed52769a 14188463 1644631090 2022-02-12 01:58:10 0x554f11f7f47c210513900367063eaebc3a4d853e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008085834729 8.846711777 2918.34 Deposit | |
0x5fc0ea2f23a03f3b23d5ebd6d7d8a0bb3f85da59ac774dfd62a76c66bebec7bf 14188468 1644631117 2022-02-12 01:58:37 0x554f11f7f47c210513900367063eaebc3a4d853e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002368214755 2.591063763 2918.34 Increase Custody Allowance | |
0xed39de1baa0f29a19f265c42bc1360183405abaf61d5f7cd9b5748c1168e7f3f 14189066 1644639876 2022-02-12 04:24:36 0xe1074f129271bda4d7f95826c2b609d79ce24e0f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01508984937 16.50980419 2918.34 Deposit | |
0xba837521638b936d886d38b054f002366a8f6fbbb2216b2879334e18e30ba7ee 14189092 1644640246 2022-02-12 04:30:46 0xe1074f129271bda4d7f95826c2b609d79ce24e0f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005388087591 5.895106633 2918.34 Increase Custody Allowance | |
0x84442b1df2ff91bebedc29bf730616af0f661fa13866e6549c3c4214e9434540 14190211 1644655165 2022-02-12 08:39:25 0x500cee602b621acf523c8523794c56797815ba40 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007233533288 7.91420877 2918.34 Deposit | |
0xa703bc9e3ecbb1df1f89ae6efe032f49cdc5d6f9f1c4844ea247b19075f780f7 14190215 1644655227 2022-02-12 08:40:27 0x500cee602b621acf523c8523794c56797815ba40 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003411966203 3.733032223 2918.34 Increase Custody Allowance | |
0x68305024a3c5e62964bb2976914fb0a38d793d949a287b1288a9177a637f0e89 14190311 1644656739 2022-02-12 09:05:39 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005145928 5.630159825 2918.34 Withdraw Funds | |
0x6a4c3b19223fef593960a7dac542b767309e21840512af08449a473a2e0c50f2 14190318 1644656788 2022-02-12 09:06:28 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004532785921 4.959321076 2918.34 Deposit | |
0xfbc8248d9dd4c1f72642ae689827540e3659a928ad965ab7172b01adb192c809 14190322 1644656843 2022-02-12 09:07:23 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001726646496 1.889123932 2918.34 Increase Custody Allowance | |
0x4f75d08bd5c820b1fe7fb16ae2ab4e1bc57fe78c5e174bcb21dc46ee21edd8e2 14190333 1644657029 2022-02-12 09:10:29 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003774529187 4.129712383 2918.34 Withdraw Funds | |
0xf155e5480d951bd8e3b0b3ae64966cf478494774555a595ff7462b68402f48b8 14190427 1644658272 2022-02-12 09:31:12 0xe9d6e2b6d15e386266b634fe12b868faa3b3fd5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005005012467 5.475984141 2918.34 Withdraw Funds | |
0x184203721b850d3c15226713d76db1dd5165c0771857d2ac292c9158e31a11f2 14190530 1644659657 2022-02-12 09:54:17 0x14435bb061475ff6da3f378bdd81b243ff5fcb15 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007104361355 7.772881758 2918.34 Deposit | |
0xe66a31291e1c3c5d22dab02029e535dc3db19d9f847d166e314f51f7735fc05d 14190538 1644659753 2022-02-12 09:55:53 0x14435bb061475ff6da3f378bdd81b243ff5fcb15 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002471103796 2.703634664 2918.34 Increase Custody Allowance | |
0xe2cf42b4abe21c33a6f0a86dc23a695a31a9920eb00b4703e399a4171e27798f 14190819 1644663471 2022-02-12 10:57:51 0x70978f453c9ac86817bb4ae2fe3fb985f3aa5c0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005128961683 5.611596978 2918.34 Withdraw Funds | |
0x4b85bc9147ceca2d7b90ee00398361558260a28c917a1d9202ce7c902cdafb7d 14191133 1644667557 2022-02-12 12:05:57 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003257326822 3.563841275 2918.34 Withdraw Funds | |
0x6fdbc767881ec71424935bbe21fb367706a0d53924cfd2976da46d1d6fac46e4 14193010 1644691641 2022-02-12 18:47:21 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006281427254 6.872509559 2918.34 Deposit | |
0x87cdc31e76361f877abec2ec744b7a505189a3e2d81b83609faefd775d18b9f6 14193013 1644691695 2022-02-12 18:48:15 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002365036304 2.587586221 2918.34 Increase Custody Allowance | |
0xfbe0d0efae61ab325b38e045dc073e90ad35fb8b67f6d26ae203cee0373b05c5 14195587 1644726666 2022-02-13 04:31:06 0x2d0df46399d654d88b5b95ae9043f2ad6ce6629e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008029052772 8.784586637 2872.44 Deposit | |
0xfbb83d87ea459f5ea9b6070f93a4c3597fbe24d796385bbf18fefa4a6a800771 14196010 1644732036 2022-02-13 06:00:36 0xdc3b2dce95ebd1e7c18eaa37780d10d240146660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004083252682 4.467486759 2872.44 Withdraw Funds | |
0xdf7e784c7a02c7112fce569c14cfd62b6a7f34f70f8de2eb4e17ed0df007af00 14196114 1644733467 2022-02-13 06:24:27 0x881117211e99ab4db61c5bba916c0e9ea8532e75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003956783649 4.329116991 2872.44 Increase Custody Allowance | |
0x0b893f6dc92007dcc15a39e73b53e7184b1d75f5727640f3f1aa7e7057fb035e 14196600 1644739140 2022-02-13 07:59:00 0x553bff333348548cfabf3b4fcb49ef5f2c28c10a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007823892338 8.560120608 2872.44 Withdraw | |
0xad41119d31545b978c34e52244bd9d49f01e07de5ff7ec091009096eaaafc3a2 14197500 1644751490 2022-02-13 11:24:50 0xa669c72ad51db5b26648b73339c0a3fa9983a024 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005818250955 6.36574837 2872.44 Deposit | |
0xe74485d1e6c98f0a50d8371694a046b3a8ca6ac587c7923e5f7f1e63929c5d94 14197506 1644751550 2022-02-13 11:25:50 0xa669c72ad51db5b26648b73339c0a3fa9983a024 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002218218933 2.426953334 2872.44 Increase Custody Allowance | |
0x7f35d72640b9ff8f1bfb201a480e7794b80a6bf5ffb4eecd96c932e4d2becafa 14198108 1644759571 2022-02-13 13:39:31 0x7100bd23913cbbfcfb655ec476f16a027d4e9d5d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01270626006 13.90191913 2872.44 Deposit | |
0x291a6588819ed33f6f00fbe576acb5de761fb449ce0d1dd0c6e099b5e75053ed 14198114 1644759656 2022-02-13 13:40:56 0x7100bd23913cbbfcfb655ec476f16a027d4e9d5d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004586441318 5.018025446 2872.44 Increase Custody Allowance | |
0x5077753469a2068d837b1d84ae420bd0e4c50f8915d5472afafd65c24dd48f01 14200141 1644786061 2022-02-13 21:01:01 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00829245821 9.072778527 2872.44 Deposit | |
0x5152953fe67243e49c86c3bc78e642260b76bd13f3d0f4e0e22d546eeef1a136 14200148 1644786154 2022-02-13 21:02:34 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005279330484 5.776115483 2872.44 Increase Custody Allowance | |
0x13d942569188403d2008548e3db8131d554156983ca79be4a99f9dd0c5f4871c 14200153 1644786225 2022-02-13 21:03:45 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009585842397 10.48787017 2872.44 Deposit | |
0x2df41fab1f8151855c09833ff045871c69535dfed44e590aacae0a4f4e5fda0b 14200159 1644786373 2022-02-13 21:06:13 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003466916273 3.793153094 2872.44 Increase Custody Allowance | |
0x1d11bbde6d8b1bcddd39a744565a776ab9573f783b39022cb8c87d69e89bf7ba 14200777 1644795270 2022-02-13 23:34:30 0x7736bb1e1d8224b72cf40048d1102eb68b30b6e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004838832399 5.294166527 2872.44 Withdraw Funds | |
0x7707520131fc19051a78a1c88327f225c29c012740c704b169a56bdb1338187c 14200826 1644795937 2022-02-13 23:45:37 0x7736bb1e1d8224b72cf40048d1102eb68b30b6e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004913998565 5.37640583 2872.44 Deposit | |
0x58ceeeba67a0e46950e3f1a55bc093f0c184d19f3c3e88ffb367875239593a9a 14203405 1644829789 2022-02-14 09:09:49 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009400396221 10.2849735 2931.12 Claim | |
0x3d85393da4dd69c560cdb4125c59984d5b80ba97c02acac1e442b9c915ffeea7 14203407 1644829842 2022-02-14 09:10:42 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01202037157 13.15148853 2931.12 Claim | |
0x53ab948b391584b1f7f9df4ebdc9110fb6205a245444b77195e1198824dd717f 14203414 1644829974 2022-02-14 09:12:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009744021801 10.66093425 2931.12 Claim | |
0x31f34d05f499f2e3aff04152f9d56605a6869f0a263bee6cca4f01c72eae11c2 14204561 1644845466 2022-02-14 13:31:06 0x6bb18d986dbab85fb7c5f8e9ffff3819096c0603 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008652904032 9.467142301 2931.12 Withdraw Funds | |
0xf34bb8c6d3fa0274f9c8170178a2eddbe908ed9a4d2c2f9a78180cb4d8b08c21 14204568 1644845577 2022-02-14 13:32:57 0x6bb18d986dbab85fb7c5f8e9ffff3819096c0603 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003030776082 3.315972111 2931.12 Intend To Withdraw | |
0x8ea7bdfd56a54bacd213cb7a2f486d4dedd10b97b9d531b0abfdcba9320d9a7c 14205417 1644857071 2022-02-14 16:44:31 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007024114897 7.685084108 2931.12 Withdraw Funds | |
0xf02857f6ced050eb976ab7f92f5a19c08b26b803b069229d12b5f9f7e4549871 14205539 1644858748 2022-02-14 17:12:28 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01115149061 12.20084588 2931.12 Deposit | |
0xd68347fb86409ddccb8782f08813dcfb32655f0dfd1e3ebaaa312a1e93a967b9 14205542 1644858838 2022-02-14 17:13:58 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004304358452 4.709398582 2931.12 Increase Custody Allowance | |
0x12bbc466dabc496c404b7ec4642ac23b7c8ffb23b854a5cdc265d22154815c78 14205700 1644860866 2022-02-14 17:47:46 0x2b4893286db2ea1d0de8606d6425a5c0b1f361bb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01154870544 12.63543863 2931.12 Deposit | |
0xffa2671aaff66de4628a4e3a7e2709e7c529b34e72fc8e87c4c206367984a2b2 14205708 1644861009 2022-02-14 17:50:09 0x2b4893286db2ea1d0de8606d6425a5c0b1f361bb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00616071616 6.74043955 2931.12 Increase Custody Allowance | |
0x4cf8c099d6e20ffc6e93a74b60ce9e6b3f72dd3c5d1613689e8d14a9d3e219a0 14207021 1644879001 2022-02-14 22:50:01 0xed2c2cdec695be3a4dc421c1a8a6756dc5a927b6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01256159589 13.74364206 2931.12 Deposit | |
0x37c25697e74530053d9cea5082db6308465600d93334f675ff93f2e1a5f14a81 14207043 1644879317 2022-02-14 22:55:17 0xed2c2cdec695be3a4dc421c1a8a6756dc5a927b6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00497590374 5.444136282 2931.12 Increase Custody Allowance | |
0xf29338aa9ef8af2fefdbbfa3030388e42ad73989c9cb4bc5db6420693f589250 14210208 1644921522 2022-02-15 10:38:42 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004479773742 4.901320451 3185.81 Withdraw Funds | |
0xf24a56323097f351e1cfe4abb75e109c9cd56dc582a4b28868e5c27cf1df3107 14210219 1644921613 2022-02-15 10:40:13 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004088958264 4.473729236 3185.81 Deposit | |
0xda4ca54dda3201aa6eb60e0e2052720178ddc8d526927a3d750ee4f3cb28d824 14210224 1644921754 2022-02-15 10:42:34 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002199893439 2.406903412 3185.81 Increase Custody Allowance | |
0xee851de05cc9bf444818b9f343e791d66a0f5b6443941ec4db1e3f61c42864b3 14211409 1644937915 2022-02-15 15:11:55 0x5789527ec57ff76286e42673e7b97e692b13f6d0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01243195547 13.60180248 3185.81 Deposit | |
0x41f448dd9084e654cefa83f7af9a8167b9afc8d93482512c9ae7689e5670fafe 14211416 1644937988 2022-02-15 15:13:08 0x5789527ec57ff76286e42673e7b97e692b13f6d0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005669255101 6.202732006 3185.81 Increase Custody Allowance | |
0x0e45738c4d9d8633a09a1f8a8a1dce9603654002ab8b81fee26f3f403000678d 14211902 1644944070 2022-02-15 16:54:30 0xad4e7250da56eb33e1a376250b916526c81cf1ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01031833793 11.28929353 3185.81 Withdraw | |
0x2a3a3d15e629f064a3b326717ad70ea1b61b393fc3a9f872bbc140d96419c1ff 14212574 1644952968 2022-02-15 19:22:48 0xae8ce6bb2b95684f57c097b407f4e9b55d9ca432 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01593353533 17.432881 3185.81 Deposit | |
0x98ee865728b83de0b735d4fe1b41479a5eed691e1e25ecd5648426f2c07aa591 14212577 1644953027 2022-02-15 19:23:47 0xae8ce6bb2b95684f57c097b407f4e9b55d9ca432 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007905025369 8.648888256 3185.81 Increase Custody Allowance | |
0x5e2085010673e610e56910128c45cb0ed7dc7dfc1545b39cd73120de3baf1c6a 14212865 1644956598 2022-02-15 20:23:18 0xf10b99017a1e5d26b05fa91d923c150e701b05a8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004191536256 4.585959818 3185.81 Intend To Withdraw | |
0xeae5fdee1cd2785ed8ba93d6c5b88bcdee1905c1e82a762e33063c6637ddaf63 14213087 1644959582 2022-02-15 21:13:02 0x449816d520c89c87b320e94a0bfdca9ed66e156f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01018894161 11.14772102 3185.81 Deposit | |
0xb2bae6085392aa801ba11deb1a9c6f90f83bd1452e3eb3fefee6a981bbd3198d 14213195 1644960983 2022-02-15 21:36:23 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01656825307 18.12732569 3185.81 Claim | |
0x44b24ab6213950ce92a2d55aaaaf3bb96f72768acace7d6a7dd17b18d60e4823 14213943 1644970971 2022-02-16 00:22:51 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01812418345 19.82966912 3124.33 Withdraw Funds | |
0x328a3761a4e6cc028d05edf7ade2f7f6e23a3efdfa01f567570ac7737f67bffa 14214534 1644978829 2022-02-16 02:33:49 0x4c4b17543e24106201b3f7c888918c5a478bdb3b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002571241014 2.813194794 3124.33 Intend To Withdraw | |
0xfc34b4d14dff41bd40aaded3b122ae7b92411291af1aaad0fed4aad51f4075cd 14214683 1644980781 2022-02-16 03:06:21 0x96f4da61ee795f9f4a5cf0daadcc336adc73232a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006940943344 7.594086112 3124.33 Withdraw | |
0x9a75469136bff9339a0b67808260f0b9d547f9dbde3d4ba6624c7bb474eaf9ef 14214716 1644981209 2022-02-16 03:13:29 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007561199358 8.272708217 3124.33 Deposit | |
0x0cbf4dae1a21315d71414c14789bf650f136d29ff11f8b1f303547b78ab996fe 14214846 1644982937 2022-02-16 03:42:17 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01013701582 11.09090901 3124.33 Deposit | |
0x5b08cb1489b7c8570f238db45f672f83c7729b0b174f372b7c76c22490e080ec 14216790 1645010118 2022-02-16 11:15:18 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006643975835 7.269173961 3124.33 Deposit | |
0xfafe0dfaf81b9f588d2876ee3761c5a3eba237e6cf985e0c50f51f2c82308cdf 14216802 1645010235 2022-02-16 11:17:15 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002515130147 2.751803894 3124.33 Increase Custody Allowance | |
0xe824537ffcdac425642ec5ff19f5270482077a7f46869f69a8bad33cad7bbf79 14216889 1645011380 2022-02-16 11:36:20 0x6ff56db6a2cf67051bd7d680443e5782594c8460 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007080799602 7.747102844 3124.33 Deposit | |
0xfbc4a04f2900505c95c8a2f65ea141fe7b7552642574c3d06b6ee00ee2dc57b8 14216892 1645011456 2022-02-16 11:37:36 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002427117243 2.655508975 3124.33 Error(0) Reverted Deposit | |
0xe4ada67539466be1646e056e0587506c5431fdb62c4c32f89221b5e4529715d3 14216892 1645011456 2022-02-16 11:37:36 0x6ff56db6a2cf67051bd7d680443e5782594c8460 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003552972129 3.887306806 3124.33 Increase Custody Allowance | |
0x619492f663d1d314ecc776039ba25ade2856086e3d23577f3cda56804e2a0c40 14216900 1645011513 2022-02-16 11:38:33 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004704087006 5.146741593 3124.33 Deposit | |
0x6f13f744d916c27a1555759493650dd26ae8f0416fc6d17b61f0e74f75d31904 14216904 1645011565 2022-02-16 11:39:25 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001741733837 1.905630991 3124.33 Increase Custody Allowance | |
0xd3feefe3b754e3fa40100ab9b71652ac91369b8e150ba2872083b648b02febd0 14217244 1645015956 2022-02-16 12:52:36 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00251612138 2.752888402 3124.33 Increase Custody Allowance | |
0x424bbf4808d858bbd434621dec5c775e29b19e97a83bea0cdf9f626c27a7c3e7 14218161 1645027998 2022-02-16 16:13:18 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006654047704 7.280193593 3124.33 Withdraw Funds | |
0xc3b19bd1bde74637785c7044bbef44fb41743280464674a8f31f6ed33cb55ef0 14219946 1645051554 2022-02-16 22:45:54 0x3991adbdf461d6817734555efdc8ef056fefbf21 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009314130356 10.19059002 3124.33 Withdraw | |
0xbd579feafde979937e5b1bda94eb8c1ecd0b4f086b8201b8798a09b3fd1a1051 14221954 1645078176 2022-02-17 06:09:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001980541631 2.166910599 2894.42 Set Liquidity Cap | |
0x8a433faaa30154a27e47e81c3ad594526074188f308d1e812916ab4994d0f2c8 14222583 1645086580 2022-02-17 08:29:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01586980579 17.36315452 2894.42 Claim | |
0x86898b8011de56074a7db8b80fca41d112aed5d056cc702df77b366cd6b07656 14222587 1645086649 2022-02-17 08:30:49 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03044746169 33.31256784 2894.42 Fund Loan | |
0x5938b7d4c900add468ec69aa3c91484b15c5c728385d999855f8305073300a7c 14223761 1645102371 2022-02-17 12:52:51 0x62d51fa08b15411d9429133ae5f224abf3867729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006533649894 7.14846635 2894.42 Deposit | |
0x74d13fb579b19d3913e274bb300f153a41505c0136e10cdc908a9046aa7b2211 14223768 1645102480 2022-02-17 12:54:40 0x62d51fa08b15411d9429133ae5f224abf3867729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00303656 3.322300296 2894.42 Increase Custody Allowance | |
0x7b33188c9a4a17b8151f68783a6e1706d4736f40a99a3b178dfdafe9e958c973 14223787 1645102685 2022-02-17 12:58:05 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032576 3.317941402 2894.42 Withdraw Funds | |
0x91c88783ae0746961004bd12c3ffd1083daba742442ceacf626face2dd36be42 14223898 1645104319 2022-02-17 13:25:19 0x638238eba3285c4bbdeb64a5a34df883f007f68e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01457393776 15.94534531 2894.42 Deposit | |
0xc837fc9a02b12cecea1ffba672a41ea09d3b02f4f12bcd5424db61e6cbeee666 14223931 1645104716 2022-02-17 13:31:56 0x638238eba3285c4bbdeb64a5a34df883f007f68e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003604637555 3.943833949 2894.42 Increase Custody Allowance | |
0x89bf317b593f281fe33816c34d7f0e2d650998629e55b486cb455f9528332577 14224660 1645114904 2022-02-17 16:21:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01694791595 18.54271484 2894.42 Claim | |
0xd4a3ee77a3d67926c4a92c172db264596987c8f821d55392bcbd768fd2ce6838 14225017 1645119254 2022-02-17 17:34:14 0xe31f3cca152fbbe45d73ef64de25d81228f8f7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01193364968 13.05660612 2894.42 Deposit | |
0xc7b8b310085139dc957304a3ea11083e20dc1671cfdc3acb27807501cc8a72cc 14225022 1645119296 2022-02-17 17:34:56 0xe31f3cca152fbbe45d73ef64de25d81228f8f7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004805274356 5.257450673 2894.42 Increase Custody Allowance | |
0x9b4d9064de91e57c45ba680282f93e098026fc6dd6196e1a2dff1e3cf3b4da47 14226230 1645135391 2022-02-17 22:03:11 0xfa9b56c9ef453b739f5ac244a080a1c6ba6a5dcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01629025829 17.82317159 2894.42 Deposit | |
0xeb135b8025d8427268d2d299669521898f1590771b4695cbc00c8afad514f909 14226240 1645135454 2022-02-17 22:04:14 0xfa9b56c9ef453b739f5ac244a080a1c6ba6a5dcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004697081296 5.139076646 2894.42 Increase Custody Allowance | |
0x5e2c4bcdbce6b4217b9aa14f1a2fa85b2fa5382f24826903ded7055f2369fcfe 14227261 1645149220 2022-02-18 01:53:40 0x9337cd9bab74c2cea1529ebd63d5a3ba6dd51da4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007610542544 8.326694597 2780.72 Deposit | |
0xd8327b217100ed7a08ec4e4856a60d526ba867b66f7aed64b498612f1945a550 14227276 1645149549 2022-02-18 01:59:09 0x9337cd9bab74c2cea1529ebd63d5a3ba6dd51da4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005690275454 6.225730374 2780.72 Increase Custody Allowance | |
0x9adc7753e2d3e3d990a4ced1ce12b7672ad4b16d43c873af0a11db2f5416b821 14228485 1645166170 2022-02-18 06:36:10 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004607399101 5.040955356 2780.72 Withdraw Funds | |
0x5a46883916eda19bbf1f8d4382d51f5debd1dae9da389858b83d942626d186e6 14228621 1645167983 2022-02-18 07:06:23 0x25a5059213224aad7760b40e0009e2ffc2a4380e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002631350329 2.878960395 2780.72 Increase Custody Allowance | |
0xd541cfb3e63d676fe9a8330a8d742037bde8d85270f5e1dfb3cdf62da964944b 14229040 1645173527 2022-02-18 08:38:47 0xc78bf98a0deb8a85974fb9b7b3a0e2498447c4dd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02242232476 24.53226552 2780.72 Withdraw | |
0xa049bd6ad940e0e5fd530528e1d03e8a7eec9a55931a214c1783c1d391a80163 14232175 1645215344 2022-02-18 20:15:44 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007574014752 8.28672954 2780.72 Withdraw Funds | |
0x03b71ac29d800141b329b1e64f3fdf73df6404dac2f9dc98599d6b43b211d32e 14232180 1645215411 2022-02-18 20:16:51 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01002778558 10.97140021 2780.72 Deposit | |
0xcd8a703c976aa71edc650d703cf0a9880269e7cde766c897fa27005b1d48441c 14232183 1645215507 2022-02-18 20:18:27 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004813113657 5.266027652 2780.72 Increase Custody Allowance | |
0x51b10ed41a0c2eab3efae41ef9cd13a4a5751cfd5fa701506116407a99025483 14232211 1645215906 2022-02-18 20:25:06 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0102000638 11.1598898 2780.72 Withdraw Funds | |
0x4713cfaeb6a09d15e8bc534079c32846ec821ff0c251f4c96bf16fca6ed8e598 14233302 1645230752 2022-02-19 00:32:32 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008585878059 9.393809185 2764.5 Withdraw Funds | |
0x8a0fca4b55e72f5f75c144ec721d4208e1350640ca69ea65fcf98bfd57bb02f9 14233309 1645230839 2022-02-19 00:33:59 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004386254716 4.799001285 2764.5 Intend To Withdraw | |
0x5c3305a5c911ab955efeb6a35525d2502966d6cdac7280df9b2b663bce85af88 14233763 1645236514 2022-02-19 02:08:34 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009663276844 10.57259119 2764.5 Withdraw Funds | |
0x19c00b9cfd845409466761f32f08b337f82accd17fb7455e42ea4acf9a9638c1 14233788 1645236784 2022-02-19 02:13:04 0xd93a3ced8ca0a74a29d85cab06dff41dec207991 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007559653114 8.271016472 2764.5 Deposit | |
0xdc9ed8bebfaa937dc696dd570ab1d0ac37d62dce3256c817112f68363933e82b 14233815 1645237073 2022-02-19 02:17:53 0xd93a3ced8ca0a74a29d85cab06dff41dec207991 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003245415663 3.550809277 2764.5 Increase Custody Allowance | |
0x6f9202f58d61ad16c8c05c36db782b7c20409b081deccb5e18f4bad8adc0f14c 14233827 1645237232 2022-02-19 02:20:32 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002181406824 2.386677207 2764.5 Intend To Withdraw | |
0xb20659443254a58683aad732ffab6f386aad144543abf64552cc6fe00370bf5e 14234060 1645240480 2022-02-19 03:14:40 0x638238eba3285c4bbdeb64a5a34df883f007f68e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008105123521 8.867815644 2764.5 Deposit | |
0xb23447ba7cb8c694fdb93b9115fe9df9300cd0cc0370d70ee8b847e10099b1a2 14234064 1645240532 2022-02-19 03:15:32 0x638238eba3285c4bbdeb64a5a34df883f007f68e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002861167238 3.130403075 2764.5 Increase Custody Allowance | |
0x2b4ac20e74226a01f81f6b5f65ce9df19766f5c09156adf226e5542a8d624b76 14235236 1645256154 2022-02-19 07:35:54 0x58d3d0aac31b61471fb38676556569f46b3519d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004039630909 4.419760178 2764.5 Deposit | |
0x66587b2052ce8c2d344922162299d40b20929e217a1d782a0793f7afd089f6b9 14235243 1645256199 2022-02-19 07:36:39 0x58d3d0aac31b61471fb38676556569f46b3519d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001252395976 1.370246437 2764.5 Increase Custody Allowance | |
0xb760f181ffaa91330bb8dec70751ec0af18a1e6134d51338c7ac8af02069e668 14235491 1645259792 2022-02-19 08:36:32 0x12b5c9191e186658841f2431943c47278f68e075 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002367757296 2.590563257 2764.5 Intend To Withdraw | |
0x20254a928967f2370f41cf30bbcdc04b9348cf467bd79fe27976e54555adfa3f 14235739 1645262980 2022-02-19 09:29:40 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005233349732 5.725807942 2764.5 Withdraw | |
0xe733c5d9c998d0920edc785a615c842507caa9d681343b0f0411bac98aae26d1 14235764 1645263275 2022-02-19 09:34:35 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002800425824 3.063945894 2764.5 Increase Custody Allowance | |
0xf3b0cbeac2d0eef397120e2800ebf40f508f19aaa6f44d6e84daf681fe04d6a8 14235926 1645265448 2022-02-19 10:10:48 0xd57e00bd3433040522eefce8f103f9a500b67ea1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006795792089 7.435276125 2764.5 Deposit | |
0x2f7b64e986e6745b0e04314686b4145237a3aac5546f90f5b800ee00c34cfd64 14235948 1645265721 2022-02-19 10:15:21 0xd57e00bd3433040522eefce8f103f9a500b67ea1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002718750603 2.974585035 2764.5 Increase Custody Allowance | |
0xff9ae7251923ba5038b26d0db5772287eb7f9cb05ad2259bd972af7e2d43c672 14236018 1645266741 2022-02-19 10:32:21 0x5713d568cfcde3b1824fa56d1eaa598bb61c3634 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004895730274 5.356418493 2764.5 Deposit | |
0xe0b371c2712486946092d89e1d9c474ff19ab881d3df81147c9e1fe2296a900c 14237321 1645285311 2022-02-19 15:41:51 0xb2e083b127986a9342a6918e1d7a8c0053e828a4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008805368 9.633953129 2764.5 Deposit | |
0xf6da45c81be4f4fc4eef0b103545fadad058ff63986273926090eaf6cf8ac19d 14237327 1645285360 2022-02-19 15:42:40 0xb2e083b127986a9342a6918e1d7a8c0053e828a4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003788230991 4.144703527 2764.5 Increase Custody Allowance | |
0xd17d3893eeef5f2b885f0aea39128b1f21988f105715407b65ea32d0ec5b862a 14239436 1645313346 2022-02-19 23:29:06 0x09c8f6d2360c57059b39e6d28ea1a02665602ffb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0073484548 8.039944397 2764.5 Deposit | |
0x193a6556be04e910eb77481d75a3769efe882ac5cc8a766956db927527a781a2 14239478 1645313931 2022-02-19 23:38:51 0x09c8f6d2360c57059b39e6d28ea1a02665602ffb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0032501464 3.555985176 2764.5 Increase Custody Allowance | |
0xe3aa3d2ef0fbf683da7c0a75819adfdf5818f3451d1377a2ff0e3ac29c52cbe8 14239485 1645314064 2022-02-19 23:41:04 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006397662948 6.999683031 2764.5 Deposit | |
0x58d56bb09b205e477541ca4ff794353ec092aaace506d2645a99017bc529811a 14239488 1645314100 2022-02-19 23:41:40 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002346248736 2.567030742 2764.5 Increase Custody Allowance | |
0xebf5c43c83e72d3fa079f1cbcf6d713fdd874a08f3d848bb101abc9a5df25a9f 14241491 1645340597 2022-02-20 07:03:17 0x196589d9220a38bb798527b0b946a3dc44bcad73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002205122859 2.41262492 2622.7 Intend To Withdraw | |
0xc8faba4ee02325b389887d0708a7410277fe567b548cb1fbbf162f26bd540db7 14241845 1645345656 2022-02-20 08:27:36 0x87bd9a25daf00d6c10bc6f4cbb8d760891306ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001348304865 1.475180353 2622.7 Intend To Withdraw | |
0xbec66077efe69943c7c676be004bb829f6a4804062f4e91dba22a87e518e3c3d 14241931 1645346740 2022-02-20 08:45:40 0x651f673659ef05949e24820ae8fc5f2924e31a77 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006887997728 7.536158314 2622.7 Deposit | |
0x14024dfd860f5fee0104db40bd836dc35596ead54864f944231f0d4dfc974cbd 14241937 1645346812 2022-02-20 08:46:52 0x651f673659ef05949e24820ae8fc5f2924e31a77 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003402539281 3.722718228 2622.7 Increase Custody Allowance | |
0x3aec6091d0ea0fbd3e11e000688131e8431af52466464646300c784690611aa1 14241978 1645347327 2022-02-20 08:55:27 0x47c3006af872af4022895c8720224f786bad397c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00940548026 10.29053595 2622.7 Deposit | |
0x8a9785b8e0965d234745983430bfaccb2fb10caa65851819f0f172028aff11b4 14241988 1645347441 2022-02-20 08:57:21 0x47c3006af872af4022895c8720224f786bad397c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003091639444 3.382562716 2622.7 Increase Custody Allowance | |
0x4684a570bd0c9275e65e473695738579f58593fc233bf51e5faf88f2ef3edda1 14242012 1645347813 2022-02-20 09:03:33 0xb4522eb2ca49963de9c3dc69023cbe6d53489c98 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00573727966 6.277157676 2622.7 Withdraw Funds | |
0xd59792bf05a158e80659064af49bbbda06d749bb90cd2898d214a131e5fa50f8 14242515 1645354415 2022-02-20 10:53:35 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003895667855 4.2622502 2622.7 Withdraw Funds | |
0x29c23d5bd61655eade44ade00ab68d49476efd6b31033fb8ec14044d56a91a48 14243109 1645362808 2022-02-20 13:13:28 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004823823725 5.277745537 2622.7 Deposit | |
0x1f4992313bfdb4d33b688903087d2fd1e45364a015522a2a341c6ebc8481ef91 14243111 1645362883 2022-02-20 13:14:43 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002116930205 2.316133337 2622.7 Increase Custody Allowance | |
0xb78ed452ee2fa21ac580b10e3bbf3adbbf14cd559b4e5de4266a2b8699f869d0 14243127 1645363054 2022-02-20 13:17:34 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0052996263 5.798321134 2622.7 Withdraw Funds | |
0xc487a4ab59913109694203471f6a9be9f86a716e5267ff00a424ddb8485acd0c 14244160 1645377000 2022-02-20 17:10:00 0x8fe7b143b2c67739e9c933da0a48142b14c4415d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0145247447 15.89152318 2622.7 Withdraw | |
0x6c9f7c61779b2f7d7131909fd42731c0617a0d5e1cc1f54815a777b95f1b41ea 14245131 1645389332 2022-02-20 20:35:32 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005496501143 6.0137219 2622.7 Withdraw Funds | |
0x864414b982b2f2c83b1eb59a4e6e0f2e88a15dadb3753ac31b5d9fbffa32cabe 14245188 1645390017 2022-02-20 20:46:57 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008872781084 9.707709784 2622.7 Deposit | |
0x201b20bca070d398c09bc9fe976548001081bc198846576b2be0b4f8aa862428 14245191 1645390099 2022-02-20 20:48:19 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004514202177 4.938988602 2622.7 Increase Custody Allowance | |
0x78664747429de271ffc20183809cce92215991c8028139193fdff70bbe9368fc 14245968 1645399927 2022-02-20 23:32:07 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00508852136 5.56735122 2622.7 Deposit | |
0x2cee56b10fc898e3bcfb352e1091635d32285e35967931b686917aca8ff20c8c 14245974 1645399970 2022-02-20 23:32:50 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001349610046 1.476608351 2622.7 Increase Custody Allowance | |
0xad7ccf018e39423811fffac742ca195e78f9775faa8d6670d6f3a44b1d965400 14248005 1645427303 2022-02-21 07:08:23 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00515176823 5.636549621 2570.15 Deposit | |
0xad6c9ee767fa71e43b0e64316153e1e76cc6fbb753ec9378cdfb8091ce495d73 14248010 1645427415 2022-02-21 07:10:15 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002113531335 2.312414634 2570.15 Increase Custody Allowance | |
0x331d2cd5a075066f6cd10490f5dcc9d6c0b9c5323f242ecc9b46c20f1fff3ee6 14248118 1645428976 2022-02-21 07:36:16 0x16224283be3f7c0245d9d259ea82ead7fcb8343d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007758805254 8.488908828 2570.15 Deposit | |
0xcfb97bab36ef7c5834278a9df5d700b2edab5c6492232c66404155563e2b1ed8 14248129 1645429163 2022-02-21 07:39:23 0x16224283be3f7c0245d9d259ea82ead7fcb8343d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00399252465 4.368221219 2570.15 Increase Custody Allowance | |
0x2c630912d608465837a3482a389b43926e99dfcc034f5635dcfbdd98cf4fc5a9 14248653 1645436486 2022-02-21 09:41:26 0x5713d568cfcde3b1824fa56d1eaa598bb61c3634 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00174036741 1.904135983 2570.15 Increase Custody Allowance | |
0x720aa99a439c0b7a0827eb7908356977d1e060d81493479fa0eb5ea0ae75109d 14249126 1645442210 2022-02-21 11:16:50 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006291423853 6.883446837 2570.15 Withdraw Funds | |
0x3a40716f2875fa8ee804b0fe666aedeeb9ebc71389269393c533a2a81ce12fa6 14249535 1645447871 2022-02-21 12:51:11 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002078054346 2.273599259 2570.15 Intend To Withdraw | |
0xfb88f13339b828b0bf93d1680d5ed76ad16c0a1da1f45dc9774ec9a4408ac5a9 14249692 1645450238 2022-02-21 13:30:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009980496983 10.91966175 2570.15 Withdraw | |
0x6b8ceb81f090ba03b0ed8d0fd1e077b6cdbce52ccff5601ce045f1e2418e258b 14249801 1645451775 2022-02-21 13:56:15 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002698327303 2.952239902 2570.15 Increase Custody Allowance | |
0xafcdbd71e7aadf5313f08e0187133ad5e8eff09674f580a9e6bede44cdd3f12d 14249826 1645452055 2022-02-21 14:00:55 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01376752138 15.06304514 2570.15 Deposit | |
0x2860ad20e0fd46f91615d358882e1318c217877d05dc724c7c8db08f84c1ec27 14249831 1645452133 2022-02-21 14:02:13 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005106037455 5.58651558 2570.15 Increase Custody Allowance | |
0x91be04f3842cf021a61cc4b50b730dcfea87401ddef7ba84067035e2e9e90b0f 14250171 1645456462 2022-02-21 15:14:22 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0136853063 14.97309362 2570.15 Withdraw Funds | |
0x114b6f0a4b3d1cb6a13c00d65a1c4b35ce346c36c99d5b8f8c58f6071b67b8fa 14250380 1645459277 2022-02-21 16:01:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01950753961 21.34319909 2570.15 Claim | |
0x68fcd60b85db9c9838142c07961835cfd699a64a05370c0b126c0ddd06b3012a 14254357 1645512715 2022-02-22 06:51:55 0x4d089e2748f43ad8efbc2da858af290c6298c08a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01665989986 18.22759644 2638.81 Withdraw | |
0xe0322ac567397d9c8ac8904fabea92a02dd665f84e13913db3387e17662215bd 14254483 1645514561 2022-02-22 07:22:41 0xa8f49d90b24d6a007e5f47bf86d122a9f3211734 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01021612464 11.17746197 2638.81 Deposit | |
0xcae3db87104f5bab6691ac0ea2d640a275065c44d38059f298ad7a94e450efeb 14254488 1645514630 2022-02-22 07:23:50 0xa8f49d90b24d6a007e5f47bf86d122a9f3211734 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005026657317 5.499665771 2638.81 Increase Custody Allowance | |
0xaff203a428960c8a196ecae1bddc455894287fa925ed81003bb3dac00d78ecbe 14254607 1645516214 2022-02-22 07:50:14 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007208330228 7.886634103 2638.81 Withdraw Funds | |
0x364a4fd9e788d44575fcc603b8770d9283e300cd563c584fea1e315941633026 14254935 1645520638 2022-02-22 09:03:58 0xd1271a1a2da13a607e29ec0b75639c9612c5f74d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00120368 1.316946288 2638.81 Intend To Withdraw | |
0x946b61ec336c103645e17c23374d284efeb1859b896c1b8ac033e1eb9349b601 14255863 1645533022 2022-02-22 12:30:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01720171213 18.82039324 2638.81 Claim | |
0xfa0ba15100ba0bf2ff5b883a48b25326a8e8af6333fe828aef60433da924cc4d 14259796 1645585135 2022-02-23 02:58:55 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009991585275 10.93179345 2580.97 Withdraw Funds | |
0xacbe50af2d631dbae70119f80e217535d22c5a47cee286ed005c98f76b415938 14263381 1645633148 2022-02-23 16:19:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.05531541696 60.52059769 2580.97 Fund Loan | |
0x12e72afa74af0916732d51767f25d030bdd11956005de2f6817ff339b55e7e82 14263424 1645633721 2022-02-23 16:28:41 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004122998003 4.510972115 2580.97 Intend To Withdraw | |
0x840271aa02643f5665c1b67ac1bf16728ae189848f96457be9c311dbdb1ffb52 14264043 1645642580 2022-02-23 18:56:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03796087775 41.53299635 2580.97 Fund Loan | |
0x94d9c462cb87bf0bb1dbd7d68410b0d74fd0b88e93f8ad6e70a8fd98ee7e6fe7 14264866 1645652917 2022-02-23 21:48:37 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01679906685 18.37985904 2580.97 Claim | |
0x242a35881ffd357be953b4bd7971519595082938677ccc26d2762332d74381fc 14264871 1645652968 2022-02-23 21:49:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01873769448 20.50091153 2580.97 Claim | |
0x4e626adb81982098bd820193d6512ab45f7419e325a1ab9c106fc5db04ccb22b 14266106 1645669511 2022-02-24 02:25:11 0xd1271a1a2da13a607e29ec0b75639c9612c5f74d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00584690189 6.397095358 2597.94 Transfer | |
0xa83328ff0fdd029945b27792cd81f9a87e917882ed3da184a04320ac995dd766 14267830 1645692562 2022-02-24 08:49:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03281247127 35.90012481 2597.94 Fund Loan | |
0x93c09680419386f190c4c6e18d6577e5b682414ef89d16e66b8e387c55f956ea 14268212 1645697784 2022-02-24 10:16:24 0x0e5ce9264c48ccd48e0644738b3f8400453ab617 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002679829516 2.932001474 2597.94 Increase Custody Allowance | |
0xf6b41e60090f29d3961b51f0bbeec81dff3afb611465e461222f11c3cb714e64 14269473 1645715173 2022-02-24 15:06:13 0x6bb18d986dbab85fb7c5f8e9ffff3819096c0603 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01010974976 11.06107721 2597.94 Withdraw Funds | |
0xebe813619a84089f0b0c311756ee2f67093af20adb9dddeb7ce48a31ea8e249c 14269482 1645715292 2022-02-24 15:08:12 0x6bb18d986dbab85fb7c5f8e9ffff3819096c0603 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01384578427 15.14867257 2597.94 Withdraw | |
0x738af798094be456c5a36b5a89bb41274d5adf1cfc78117917926b8a65516bdf 14271283 1645738484 2022-02-24 21:34:44 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006708153445 7.339390684 2597.94 Withdraw Funds | |
0x217e8462c463c52d7410622115ba02a4cdaa48deff5957ff8bc1a9713a26c079 14271283 1645738484 2022-02-24 21:34:44 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002131566999 2.332147454 2597.94 Intend To Withdraw | |
0xa3f2ce86af8ebf03f84a5662866d6c9ce1d6666b0a72f1776a100bf99ae45ba1 14271305 1645738845 2022-02-24 21:40:45 0xba31c6d318f840340a4131a34b0069b2dd5ec8c9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0127721652 13.97402594 2597.94 Deposit | |
0x3c3594e1735e494afba46d574e9afe1cb2e768f36f2740efab8eed58a4f50359 14271309 1645738886 2022-02-24 21:41:26 0xba31c6d318f840340a4131a34b0069b2dd5ec8c9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005381717834 5.888137483 2597.94 Increase Custody Allowance | |
0x13d8595d26b2705f9d73d000553739573d963c7ee4b4a9b2b051462d6638a097 14272519 1645755110 2022-02-25 02:11:50 0x2fc2f705110a7f46ce85f701d7217ef1018f01a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008872243945 9.7071221 2769 Withdraw Funds | |
0xbc5c521400198272fcdaebc41d675d22502c002af76aaed3c16cb7c2391371ca 14272930 1645760438 2022-02-25 03:40:38 0xcfc7e5c3f931080e1f865f117dad0e2dfb504e99 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007655013642 8.375350426 2769 Deposit | |
0x3dee90e9b5577afa761e5869129c3079ef8503f7c6ed6363fcac62ba99a261dc 14272934 1645760495 2022-02-25 03:41:35 0xcfc7e5c3f931080e1f865f117dad0e2dfb504e99 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003401207458 3.72126108 2769 Increase Custody Allowance | |
0x960c4ac7ae163ed803b2dd5e5f78ac9db1117033ca8072aec9ff5b354781ab9d 14275813 1645799435 2022-02-25 14:30:35 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01012210154 11.0745913 2769 Claim | |
0xbb5556e5242c9016a9a235256d6ae1dd52557643f130f56c8d3485ea0c650f08 14275891 1645800417 2022-02-25 14:46:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02061825992 22.55843818 2769 Fund Loan | |
0x58c95d09cf051fad5ade4854103ee44e4b11303a46824bf8c5238c32040cbbab 14276724 1645811767 2022-02-25 17:56:07 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006138392 6.716014687 2769 Deposit | |
0x934084bf222f7fddc401a6e4e1bc6dfb5c328ae755b02ee081db2bc49344aef5 14276748 1645812077 2022-02-25 18:01:17 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002171 2.3752911 2769 Increase Custody Allowance | |
0x6153f5e6ec0354c26228fc77e75bfa69462b621d969cd62315c5f521b4f0e8c8 14279013 1645842286 2022-02-26 02:24:46 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001920266069 2.100963106 2780.32 Intend To Withdraw | |
0x82c7bb1445a113ec72b2a209be11a0aa56f9c973e38afd33704ebd0c2f0f749c 14280117 1645857467 2022-02-26 06:37:47 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002600076807 2.844744034 2780.32 Withdraw Funds | |
0xa329f6e1f6ac1c5972eacba7f8be9606303fb7e74e33ba20a36b9eea1e54fbbf 14280756 1645866133 2022-02-26 09:02:13 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003600412981 3.939211843 2780.32 Withdraw Funds | |
0x1106659c29dfe85ac6849f919b6f13ed9eee7e432ce7c9d83256827c30fa6b7e 14281357 1645873827 2022-02-26 11:10:27 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003345344479 3.660141395 2780.32 Withdraw Funds | |
0x412f726f96f05dafc5d5c49c42d4104dc3b8b7b98a5cd3180ed940b0fb7051a6 14283635 1645903624 2022-02-26 19:27:04 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01224357144 13.39569151 2780.32 Claim | |
0xc289243dadc265cee7b62b54d9fc5d7ba9b8bfc97f08434a2679cb4349b69600 14283899 1645907361 2022-02-26 20:29:21 0xdc513ee74c040213c50d39e516532748e84902e6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008995668915 9.84216136 2780.32 Deposit | |
0xd2cfe9f884601f70bdb742202b61f9c8c0309c340802d7bf9537928cd7b6286b 14283904 1645907460 2022-02-26 20:31:00 0xdc513ee74c040213c50d39e516532748e84902e6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004159014498 4.550377762 2780.32 Increase Custody Allowance | |
0xad208e626c9026f7f5421fd96738c9d48f2e94a62441858d452a3834958bcf90 14287174 1645950971 2022-02-27 08:36:11 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003114215454 3.407263128 2617.32 Withdraw Funds | |
0x9e04739ba83b152e215c1ad2ca131599cb6b25e1e7066dadc7a6d90ab4ebd0b6 14287208 1645951403 2022-02-27 08:43:23 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003298678927 3.609084614 2617.32 Deposit | |
0x9d7cd2018e07572433a4935f044e7ac9435016b8552aceefb463ccb298ccec41 14290001 1645988672 2022-02-27 19:04:32 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003741420766 4.09348846 2617.32 Withdraw Funds | |
0xcfbdee39464d12b2fad941d2b2e71166bbfa634f851dd8371b75f279854a4486 14291013 1646001950 2022-02-27 22:45:50 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002668841969 2.919979999 2617.32 Intend To Withdraw | |
0xdba5eda390d4228ae59e36052d04849bc64172861de204def2626ca65280200c 14291019 1646002051 2022-02-27 22:47:31 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005517415693 6.03660451 2617.32 Withdraw Funds | |
0xdd96b6c0a071897b702104e8e4d8554719e6c2f78f13d7eda89a9e4785f4e5b9 14291448 1646008123 2022-02-28 00:28:43 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006775036703 7.412567657 2919.85 Withdraw Funds | |
0x4a343fdbbde5da1092ee930d1bac7bcf53e77e2159fb755c3367c8a8fe0a72e3 14291462 1646008359 2022-02-28 00:32:39 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002026463173 2.217153358 2919.85 Intend To Withdraw | |
0x35c36c63c2bd8161bff57cf6314b666741eb89721ccb53d7a351101e54e82dbd 14291490 1646008801 2022-02-28 00:40:01 0xd3327412485081111ef69ac484511d7879a671fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008311678823 9.093807801 2919.85 Withdraw Funds | |
0x73c8487d73543516a2cbd4290b35737f9c381109abe08977c71ab636b473cb9c 14294203 1646045542 2022-02-28 10:52:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006335869982 6.932075348 2919.85 Claim | |
0xa9983669fae27659040aac1c1b73e4316a8d03436d9f0f3a29b360198227781d 14297676 1646091587 2022-02-28 23:39:47 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007072005296 7.737480994 2919.85 Withdraw Funds | |
0xf7842bcea39dcb6935ec48734c8ef0e06d115c054acb264ca1327368280a9f1b 14297874 1646094412 2022-03-01 00:26:52 0xbe102d2698b089e6e2a18c66281ecf29cf35d58e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01796244883 19.65271526 2976.59 Deposit | |
0x48f7002d0851bb33111842c7187f1ab945e8975104c8b493c9cb987a40212fab 14297879 1646094520 2022-03-01 00:28:40 0xbe102d2698b089e6e2a18c66281ecf29cf35d58e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008270152735 9.048374107 2976.59 Increase Custody Allowance | |
0x8dc5a792a0ceb5978e2d477d2ec9b8d05fa9e4602e1e913ebe6cffc22ece46f6 14298124 1646097736 2022-03-01 01:22:16 0x5f197a23f03467f23366c19d65469addbd2dd18e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01149905236 12.58111319 2976.59 Deposit | |
0xc49e997413e025275f9001703f23eb7cdd8178ed30963d73f5e20d4097a98b86 14298130 1646097779 2022-03-01 01:22:59 0x5f197a23f03467f23366c19d65469addbd2dd18e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004789914101 5.240645018 2976.59 Increase Custody Allowance | |
0x1d533f9d589bc9f882327fa9b08c90820081a810ff5cc9b99ffcd056e32a38b1 14298603 1646104196 2022-03-01 03:09:56 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01397196519 15.28672711 2976.59 Deposit | |
0x7f6fb513046d38b37b1268ab98cdf8ba17575178ffb41390c24da39260fb2081 14298609 1646104280 2022-03-01 03:11:20 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005300396803 5.799164142 2976.59 Increase Custody Allowance | |
0x900699dceea92aa146486244dc6fdbc1330433f2702832af1fdbeec1d14add9d 14299591 1646117758 2022-03-01 06:55:58 0x7929d31d084e08c83cd7d64bfc333937448019d3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007441153589 8.141366142 2976.59 Deposit | |
0x42ba20fd3cec482606f1b441af0c27ae8878703c759b3d662367cca7c14da052 14299605 1646117902 2022-03-01 06:58:22 0x7929d31d084e08c83cd7d64bfc333937448019d3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003346797474 3.661731116 2976.59 Increase Custody Allowance | |
0xbc7631a66ae74e96f9de66fd36e461f4f238338a6b2528ff75fdeefec0a5f23a 14300469 1646129101 2022-03-01 10:05:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008894947678 9.731962255 2976.59 Claim | |
0xaedbdd236344fb4489c54f7f61abe890d1d1751e9f578732cc8c4fabb620e642 14300474 1646129211 2022-03-01 10:06:51 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01033676629 11.309456 2976.59 Claim | |
0x4ae6d0fcd1c86f78d699a2e50706f19451a6c804607ffe6dad2088e2585a5dec 14300521 1646129753 2022-03-01 10:15:53 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00573633474 6.276123839 2976.59 Deposit | |
0xccc9d57c1092b75bb1bd799ccb27a3a57547545e96f9fefc77444c8d65ea7d35 14300523 1646129777 2022-03-01 10:16:17 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002749929329 3.008697679 2976.59 Increase Custody Allowance | |
0xbc68c37cf29d53a03cd8786d55babf05305b70aa4700e56d660c95185371f972 14301928 1646148291 2022-03-01 15:24:51 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00643736561 7.043121714 2976.59 Deposit | |
0x51da410bb39e4e3bfc8c0266c1dff3457726f61da6454b754aa58f15c59b928b 14301933 1646148325 2022-03-01 15:25:25 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002010839303 2.200059281 2976.59 Increase Custody Allowance | |
0x30917e78eb51a6a491844d5ee1a528a0eb4d6965f70be0c6187c9afd8a11245d 14301947 1646148490 2022-03-01 15:28:10 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02287151086 25.02372003 2976.59 Fund Loan | |
0x06905b57ae19719ad0b2d9c58c6a7213352b9b67ed04c0639d8f0d8e887b0b25 14302054 1646150007 2022-03-01 15:53:27 0x644bbb5dd5162ab487074de04f6f2a66cf7eaf53 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01254489896 13.72537395 2976.59 Deposit | |
0x075dbe552ee59d38bf58b524d77452aee5a63970fac87345a4e94eb4f7c3582c 14302057 1646150096 2022-03-01 15:54:56 0x644bbb5dd5162ab487074de04f6f2a66cf7eaf53 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00620929389 6.793588445 2976.59 Increase Custody Allowance | |
0x234c9908e9267bc886de77b095790c9c2d203f42f05c426f61e538deffba2895 14303345 1646167254 2022-03-01 20:40:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01940947142 21.23590268 2976.59 Fund Loan | |
0x604b57d66d7844d6a4c0c0681fc320c6096a92fb15838d173e3c59ad67ea41c4 14304161 1646177718 2022-03-01 23:35:18 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003671439698 4.016922173 2976.59 Withdraw Funds | |
0x1cdba4b9bc7314ab9b506e1284446f81bd92aa3ef62a3b7174ee7e890d33d3ae 14304343 1646180307 2022-03-02 00:18:27 0x8d6845e3778a9a888b7e1ce1fc368101073290af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009751504 10.66912053 2948.63 Deposit | |
0x01a4a4a38f22033da4bef444464a5fbfdead2b647cb409c7a14810d368490701 14304363 1646180546 2022-03-02 00:22:26 0x8d6845e3778a9a888b7e1ce1fc368101073290af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005998154 6.562580291 2948.63 Increase Custody Allowance | |
0xe6a4073eb8fb4cce50afbac4e0fb8fb25b6ef05900259c67c23ed5ee88b7aec3 14304837 1646187146 2022-03-02 02:12:26 0x12b5c9191e186658841f2431943c47278f68e075 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007276296124 7.960995589 2948.63 Withdraw | |
0x3c2455c1c4f44771e8fd5703b48fd30978afcf9fe797c3b035df32795a32721d 14306931 1646215577 2022-03-02 10:06:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005766692345 6.309338095 2948.63 Claim | |
0xadc6439fff76672fcb18c639d2dc936c0969880696a7c1c57e0ed01a860380c7 14306934 1646215637 2022-03-02 10:07:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008036684172 8.792936152 2948.63 Claim | |
0xebd9a6dd56d8104cb78c2968471ee35b6a41650d82a0f63d1811ffc6d0d29dd2 14306942 1646215714 2022-03-02 10:08:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007083554212 7.750116663 2948.63 Claim | |
0x9d4befeda982b5cf4df681b3a714368bc09d508a907dfd2d3c6f3ef19f9a0789 14307135 1646218238 2022-03-02 10:50:38 0x7ae0fdae6b5f6cd0a882ce201a39f6211c59ee0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005209695072 5.699927378 2948.63 Deposit | |
0xf7bd6b0c64522dcd5e22fa0558ffc41b1b73870e243262525baa007b326f1a80 14307151 1646218515 2022-03-02 10:55:15 0x7ae0fdae6b5f6cd0a882ce201a39f6211c59ee0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002826013542 3.091941416 2948.63 Increase Custody Allowance | |
0x0b96d5da92fa2650ad569ef8878892afdb3ac8ada3d8c7d17b48cf6e3a99e9df 14307233 1646219519 2022-03-02 11:11:59 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002259719397 2.472358992 2948.63 Increase Custody Allowance | |
0xd6922ff9feb2b3c1b8fd56d08bcd51cfa1322a4a9e6539c04b5ad193b13ac11b 14307614 1646224508 2022-03-02 12:35:08 0x4c4b17543e24106201b3f7c888918c5a478bdb3b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009116815799 0.9974708166 2948.63 Intend To Withdraw | |
0x7d496a9d609d1efbb68115c69ef10c7659012d5a7f79270158349d6be03e47ba 14308494 1646235797 2022-03-02 15:43:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03422600864 37.44667605 2948.63 Fund Loan | |
0xd569921a2cff493271b6ef399ba6c9c8a23ca78138895ac177c2d5b12ba38a74 14308592 1646237446 2022-03-02 16:10:46 0xb2a6c51c4d88a87b243d931c5ee876713fc6a69c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01748406351 19.12931388 2948.63 Deposit | |
0x2d174dd43665f5c5d01cc107bd3e8d431aebf2f353c56556bd9e93a719057bfd 14308600 1646237492 2022-03-02 16:11:32 0xb2a6c51c4d88a87b243d931c5ee876713fc6a69c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006084034937 6.656542625 2948.63 Increase Custody Allowance | |
0x09d3ff6619d3abfa28c96264966dca81bae574e4822653fd44fc9f01a2273cbb 14308758 1646239673 2022-03-02 16:47:53 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.012016074 13.14678656 2948.63 Deposit | |
0xebf5a3e44a0d9c676dec2c462ffbdbc8e7c1ecc3b9c26896d3ad2d855504986f 14310829 1646267748 2022-03-03 00:35:48 0x7702d9af72e914dd619892e626220696e185da44 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003642958882 3.985761313 2833.71 Withdraw Funds | |
0x8163cac69e26256fa6529642701536da690c9e82a263c3e713e7c874718009c9 14310840 1646267870 2022-03-03 00:37:50 0x7702d9af72e914dd619892e626220696e185da44 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001757288643 1.922649505 2833.71 Intend To Withdraw | |
0xe11da6a3a36c26616b7ef662e5f1c99d80966bd39a32cea9b46a6c0d8d555cc9 14311235 1646273444 2022-03-03 02:10:44 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002745384793 3.003725502 2833.71 Intend To Withdraw | |
0x0ff38a1943ef3cb9bb58e59568388337149bc97293790779c2dbb5ccb1c3f497 14313564 1646304371 2022-03-03 10:46:11 0x3c229864378b3b0adf98ae247ca33986aed8ec1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001045572934 1.143961347 2833.71 Intend To Withdraw | |
0x6f372fe93875b6fe40c12cece3c92c04e6b9f33f214af9f7d0c59018c32ba4e9 14314103 1646312198 2022-03-03 12:56:38 0x81b2a91ec65540a879dcd1c9da56ad7d036b8b1a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004943078602 5.408222298 2833.71 Deposit | |
0x4e320a877b5042cadbd5bdaa8b2e32514dde8fc1b8c9dced54682a83c2b1f9e6 14314131 1646312581 2022-03-03 13:03:01 0x81b2a91ec65540a879dcd1c9da56ad7d036b8b1a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003071732462 3.360782486 2833.71 Increase Custody Allowance | |
0x3986970b0f5af0ad897da95501265da82ae13faf574bc53d8296566ac9a58097 14314381 1646315660 2022-03-03 13:54:20 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006295310125 6.887698808 2833.71 Withdraw | |
0x017518b1c4cfe6e5370a6b7d93ac938c5aa8a325f6ad1d963f22843f968447d7 14314398 1646316016 2022-03-03 14:00:16 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003856676702 4.21958998 2833.71 Increase Custody Allowance | |
0x2f7b2392cad8cbbdcd2c13a1ad79c66bc0907b8b13ed076a1dd2c602b634b199 14314640 1646319410 2022-03-03 14:56:50 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008624454269 9.436015416 2833.71 Withdraw Funds | |
0x95e88c7a2cce0ec4d41cc66286889bc41e84a338e335d2faf472baafa8db4363 14315293 1646327381 2022-03-03 17:09:41 0x32e580eb62d4f4d145fbb34b1235b3831985750f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011492844 12.57432062 2833.71 Deposit | |
0xe546e43ae4f704916c310dd909681fdda05503f08cf4b99ff0c93d11c0985131 14316424 1646342619 2022-03-03 21:23:39 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003458507467 3.783953019 2833.71 Withdraw Funds | |
0xdc7d6319254d4692a05bda8f9e77b75a81cd70fd0a29ba38522a88f21d7731ae 14319130 1646379686 2022-03-04 07:41:26 0x196589d9220a38bb798527b0b946a3dc44bcad73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007875294145 0.8616359324 2622.51 Intend To Withdraw | |
0xd52c7195414b559a9c9b04ab4f7159bcd40f92c71e840af95a5be6b66a80ac0e 14319522 1646384519 2022-03-04 09:01:59 0x87bd9a25daf00d6c10bc6f4cbb8d760891306ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000921331189 1.008028454 2622.51 Intend To Withdraw | |
0xb04cd8900422e93f20fb85423ad5a3062183a0cc38192d103855e08dc3d9778b 14319616 1646385840 2022-03-04 09:24:00 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002577830524 2.820404376 2622.51 Withdraw Funds | |
0x012f4598c447457abf088812377cb13a6eb657da0fe5c463657b67955c95d447 14319661 1646386485 2022-03-04 09:34:45 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004970635899 5.438372737 2622.51 Deposit | |
0xa6653264f64076d21d8417193488c543413b1fcfd2bae1ed114c32e6e6f0ab45 14319668 1646386542 2022-03-04 09:35:42 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001699868512 1.859826139 2622.51 Increase Custody Allowance | |
0x95ca634e19a42da5c5075e41ace60d1430f63b4a60ddf373718eb0a48fb3d883 14319730 1646387239 2022-03-04 09:47:19 0xd1271a1a2da13a607e29ec0b75639c9612c5f74d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001670583504 1.827785412 2622.51 Increase Custody Allowance | |
0x1cebf2719375cc13e40f309a1984862799fab4714e43c2d2c00d9ad38a066d89 14319859 1646388891 2022-03-04 10:14:51 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002702348 2.956638947 2622.51 Deposit | |
0xbb7ac9d13cca8e0914a302d5782c9927df7c91af57d42fb6b8531689d691e0a3 14319890 1646389418 2022-03-04 10:23:38 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001746574 1.910926613 2622.51 Increase Custody Allowance | |
0xb63e0b8646824d69f559294ee4bf9d957e61fb629e4fac297357039ed625fd38 14320540 1646397948 2022-03-04 12:45:48 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001291480495 1.413008809 2622.51 Intend To Withdraw | |
0x92e0c461ed6d1411253adecd9a04eaa8c38efeafe0758951274212f86c194057 14320713 1646400164 2022-03-04 13:22:44 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003497014771 3.826083861 2622.51 Deposit | |
0xaafa2df598514c6038bf97872ab2f6a8f3d1c98dba50277d1b0dc246f707de0f 14320718 1646400254 2022-03-04 13:24:14 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001240386151 1.357106488 2622.51 Increase Custody Allowance | |
0x4481f867d723e2072bc1f8a60153c47410882d381e72bc2f5ff3b858a8f2c94c 14320957 1646403337 2022-03-04 14:15:37 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002232176698 2.442224526 2622.51 Withdraw Funds | |
0x8a57c1cf4d976437f1d866926f663e30fa57f4f648827f21789e564509709d4b 14321431 1646409112 2022-03-04 15:51:52 0x5789527ec57ff76286e42673e7b97e692b13f6d0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005352881118 5.856587231 2622.51 Withdraw Funds | |
0x7628155a370ffc1c81c97146ce53e1501be4543ec0967b9e54f1c4a5d96d1823 14325523 1646465181 2022-03-05 07:26:21 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00162013777 1.772592735 2666.18 Withdraw Funds | |
0x427d2f610fd63cc6b79919dce76e1b44145f569dcd5ea65eb3dd5e7e102d5852 14326894 1646483871 2022-03-05 12:37:51 0x8773bc01117c7595918faf26f90f371739ac9cac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003090835916 3.381683575 2666.18 Deposit | |
0x3af83772478f10fcfd7fdbe6e9bde726d688f2dbcd49d4b5c3226c3926dae47f 14326934 1646484457 2022-03-05 12:47:37 0x8773bc01117c7595918faf26f90f371739ac9cac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002197400109 2.40417546 2666.18 Increase Custody Allowance | |
0x1cdac92e1bd7f28d0ea2e3ad8443ce99bafefcace49dd8b4d207adbaa412f331 14326981 1646484994 2022-03-05 12:56:34 0x8773bc01117c7595918faf26f90f371739ac9cac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002650374683 2.899774941 2666.18 Deposit | |
0x82c167a3277505d68ee66b0c8078a3bfb217151322ed171dea6b0a7f600e6739 14326985 1646485029 2022-03-05 12:57:09 0x8773bc01117c7595918faf26f90f371739ac9cac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009690794814 1.060269861 2666.18 Increase Custody Allowance | |
0x1eb2ba2b3f3c4de577d93ac60dfd87cab36b3638c102b816d233c6b86baad653 14328969 1646511101 2022-03-05 20:11:41 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007754852051 8.484583629 2666.18 Withdraw Funds | |
0xfe4b42340e46af3c7f9ac77cefe74019e75f31f9d918b86df3103d55f4c7932b 14328982 1646511301 2022-03-05 20:15:01 0xe842994f408f42111dc4133d3a633adcb6997def 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01117461319 12.22614429 2666.18 Deposit | |
0xf02d8b3f34b1612a86e4959492ed589e1f24914e29514fc7da49dede2e9b9b48 14328988 1646511348 2022-03-05 20:15:48 0xe842994f408f42111dc4133d3a633adcb6997def 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003694065169 4.041676702 2666.18 Increase Custody Allowance | |
0x72de574678cc7d7732df7d9cd90a1c65b58b75d6660376095d7257585e8d6823 14329766 1646521891 2022-03-05 23:11:31 0x657a97770251bd5e372dfef3441e039abc43c60d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006494135838 7.10523402 2666.18 Withdraw Funds | |
0x1ce7fdc8a2280c08c7954c05be886cdc1cd064763f671a1b4c7bb80acd44a4b0 14331693 1646547324 2022-03-06 06:15:24 0x061e130573532f9a84d83e5276ebd8d0fed00cfe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002632373352 2.880079684 2552.58 Deposit | |
0xee2124316e97dee633a283187e9463011a05b361eeafebf4108e797340c9b030 14331734 1646547988 2022-03-06 06:26:28 0x061e130573532f9a84d83e5276ebd8d0fed00cfe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001388839289 1.519529066 2552.58 Increase Custody Allowance | |
0x5fb615a8dc0d756ca761343576d528c1bc41f9034d09126daf2f8350ecc647df 14332907 1646564171 2022-03-06 10:56:11 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004884511049 5.344143539 2552.58 Deposit | |
0xc0d53f45e876232a8fc6ed85e594d4083ee3853476ec7bca5a244fc48b417a47 14333151 1646567474 2022-03-06 11:51:14 0xf7664803c6fc11c49c2d6e3a1f7684e00bdee49c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00321282693 3.515153944 2552.58 Deposit | |
0xc913fe4f96025664a4891767ed5aebde11f75f349f5fcf066c64f6ffa93379c4 14333154 1646567534 2022-03-06 11:52:14 0xf7664803c6fc11c49c2d6e3a1f7684e00bdee49c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001487936596 1.62795143 2552.58 Increase Custody Allowance | |
0x4b17a3c2039f73a9be4472643de1e334b33bbf2c1c1dd43ea3680c3f615e4e20 14334393 1646583921 2022-03-06 16:25:21 0x4f2b82190998a41f905b7d6915430697242c82e5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001986600969 2.173540121 2552.58 Intend To Withdraw | |
0x9546a5128f8118e899c57dff71516b6f30d1d6960844e308a7bfcfed0faff079 14334400 1646584073 2022-03-06 16:27:53 0x4f2b82190998a41f905b7d6915430697242c82e5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005660099819 6.192715212 2552.58 Withdraw Funds | |
0xd9e19b3f8610764e2868e4b38795907e0b7be5485c8719d431da5c46a92ed6ba 14336781 1646616678 2022-03-07 01:31:18 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008059015204 8.817368535 2496.67 Withdraw | |
0xe45d0818e499a4e64773165abb2ae26b0f0174456614dec7072922c06e3ad091 14337579 1646627083 2022-03-07 04:24:43 0x5fa5d55f11ba187d4c318b21a2c1b67714b5a9e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006598348093 7.219252649 2496.67 Deposit | |
0x4e39919fc8b89f8f4189bbc7b2ee816319bb04c4c0303a144e0b37a1bb1d6a1b 14337584 1646627134 2022-03-07 04:25:34 0x5fa5d55f11ba187d4c318b21a2c1b67714b5a9e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002581200017 2.824090939 2496.67 Increase Custody Allowance | |
0x3ee6f32326edc62bd7e9687948a30d568247be4910559880688385dc46d1f222 14338682 1646641920 2022-03-07 08:32:00 0x3c8319dd83fa18ec1a0df2acf65277a731514d67 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003051023407 3.33812471 2496.67 Withdraw Funds | |
0x2263bff8de0ca923d276b5937dc502fcdc6054bd65692c594df3e2d6629d99d0 14340456 1646666071 2022-03-07 15:14:31 0xbc79d25d0f713f6ad95b38b4850d253ba9548bb5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001726758656 1.889246645 2496.67 Intend To Withdraw | |
0x86c6d49c0996fea6db22f3463ea06d80db23452f53679e478512ae97ae382ea4 14341393 1646678732 2022-03-07 18:45:32 0x537c1c6ba209292f5037fc243e3b45d92ccadde4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009403236 10.28808051 2496.67 Deposit | |
0x8517bbdfbaf3c1126c2bc2f3c6cb0602bbb20e5b560a870e5b75754f48e09605 14341411 1646678875 2022-03-07 18:47:55 0x537c1c6ba209292f5037fc243e3b45d92ccadde4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004100652 4.486523353 2496.67 Increase Custody Allowance | |
0x97a06398c391519e91a27b1151ef740e419aed1dd3008940e4ad08f3578b4cf6 14342149 1646688714 2022-03-07 21:31:54 0x6657755ba6663c3ddc77e20aaa5c05c27026abec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01511989028 16.54267196 2496.67 Deposit | |
0x90ee98a6940d72cd86e63dd61b3fc9dfbb27148ce8584823cd686b2d85ae183b 14342157 1646688769 2022-03-07 21:32:49 0x6657755ba6663c3ddc77e20aaa5c05c27026abec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004682997522 5.123667589 2496.67 Increase Custody Allowance | |
0x893571e4268a7ba26dce96610d3ce4a8479f187d12d3ec1d104b986b20b79fea 14343255 1646703447 2022-03-08 01:37:27 0x4857d1c4b89a046f834fd9f271b0a82f5159889b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007027852838 7.68917379 2579.18 Deposit | |
0x912b7a87cc9bf97d70cbf8abd18d0e58dd9452c32fc6bb5996f4ba3eee6d72c2 14343370 1646704957 2022-03-08 02:02:37 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002895763204 3.168254521 2579.18 Withdraw Funds | |
0xa50457a488a5a662f524c528ea7b0e6b2bc2e344560e91e321a5bd17ae7c1e2a 14345062 1646727054 2022-03-08 08:10:54 0x72866e0fb4a66bc5e15e15e763b447b77ac30d59 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008448279379 0.9243262469 2579.18 Intend To Withdraw | |
0x2711b2ba9fa71004caae3e6de94a5021498aacfa041696deca0c797ffdb4600e 14345163 1646728366 2022-03-08 08:32:46 0x46d5f548e02fdee3ea7e4168b7cf896429fe6fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003172170426 3.470671663 2579.18 Deposit | |
0x18addadd8a41c868e7b5aee91ede35378c4fefbf20c8adbd1e1924697eeb1639 14345167 1646728399 2022-03-08 08:33:19 0x46d5f548e02fdee3ea7e4168b7cf896429fe6fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001388532988 1.519193942 2579.18 Increase Custody Allowance | |
0x87bf92a8f2855f3f1ae176a4d814ac866ec51fc09ce46883f1cccdbbf92d5e3e 14345841 1646737838 2022-03-08 11:10:38 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005968310831 6.529928881 2579.18 Claim | |
0xb104f9689705063ae47b765dbbfed453dd6224a58ba4d0d52ffddfd7401c5332 14345842 1646737849 2022-03-08 11:10:49 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005695020242 6.230921647 2579.18 Claim | |
0x839e5a6eb59ef8ea8afa3c5dfe6df6f12ac9d745b69ca9720d73e8723a4eebc6 14345847 1646737902 2022-03-08 11:11:42 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003827242818 4.187386367 2579.18 Claim | |
0xda4f902ba4997b08f851ce1136ce154bbe27712572400fdf71e4df4c323189e6 14345853 1646737943 2022-03-08 11:12:23 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004308998725 4.714475505 2579.18 Claim | |
0x578f28a7d625c8a59b7669390db5be4d7cbc4773e7d8b5ce619d45735312fee3 14345915 1646738876 2022-03-08 11:27:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0065786083 7.197655341 2579.18 Claim | |
0x4fd06601d582d2fefa3ebcb116bba5b3e2c0feb543c051aa6c3808a73aea5deb 14345925 1646738969 2022-03-08 11:29:29 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002636953993 2.885091364 2579.18 Claim | |
0xc6affdd35d25d204aee1a0785fb1f610cf9ab73d7887278b381b437a9ee24b5f 14346077 1646741111 2022-03-08 12:05:11 0x417ac7e5e214053149746e28d516683ffb90e933 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003852477228 4.214995335 2579.18 Deposit | |
0x0158262ea7c688e6571301c626e1e7f08acdbe416bb7e04d7ad6a20037ffa0f9 14346085 1646741226 2022-03-08 12:07:06 0x417ac7e5e214053149746e28d516683ffb90e933 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001600217112 1.750797542 2579.18 Increase Custody Allowance | |
0xa14b6ea44a4df2e2f1ccf335e88f0dc8ee970665ecd4b4b003627220ab2e0916 14346325 1646744077 2022-03-08 12:54:37 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001626170788 1.779193459 2579.18 Withdraw Funds | |
0xda91ffeb73aac25022c87e9d21cd63bd8c3090829c55b9bec80be8476577daed 14346507 1646746759 2022-03-08 13:39:19 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001679419574 1.837452956 2579.18 Intend To Withdraw | |
0x90a6c2b7e6d686fe15dba1a06289eef69b96f899830fa51291434ab0cc938102 14346512 1646746826 2022-03-08 13:40:26 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002284566656 2.499544379 2579.18 Increase Custody Allowance | |
0x61c1ebf08077346b4fc7a05beabc7aa4645187ddede08e218733aa861741bb1a 14346780 1646750899 2022-03-08 14:48:19 0x36542d8c30e1fe067fb803be8855cf9f35ea54c2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008236995043 9.012096277 2579.18 Deposit | |
0xce081969101dd61bb8dd27e7d79e10957013fb0054a69a4cdd71a251ac45bfce 14346784 1646750976 2022-03-08 14:49:36 0x36542d8c30e1fe067fb803be8855cf9f35ea54c2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004143923334 4.53386652 2579.18 Increase Custody Allowance | |
0x1fd02e5eab316e56cf36a2127f568b02b1e052abbcccba5354e6d94a3bb7510e 14346951 1646753223 2022-03-08 15:27:03 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00303427393 3.319799107 2579.18 Withdraw Funds | |
0x60a3ca3ad8715126d943681f0a46cf8f09c2871288c8211cc74e63f40a5bfa43 14347577 1646761650 2022-03-08 17:47:30 0xbfb496acb99299e9ece84b3fd1b3fdd0f6cddf49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005549972063 6.072224435 2579.18 Deposit | |
0x08a880b586365643d98916abed8d80c6ecc4f1e482c362ad9bd73153da41b49c 14347593 1646761838 2022-03-08 17:50:38 0xbfb496acb99299e9ece84b3fd1b3fdd0f6cddf49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002505954 2.741764271 2579.18 Increase Custody Allowance | |
0x322913c5e6788076267c97f59cbcbc2325b6d3e7c71336b9588120328be93d76 14348135 1646769047 2022-03-08 19:50:47 0xfe744807f15c9f1c379c346e59d7c7b55fe56369 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004914812415 5.377296263 2579.18 Deposit | |
0x9b06ffe62d11b21ce0809f0a6610f31f0bcfde44c62db42d996f620af8c15d3f 14349070 1646781665 2022-03-08 23:21:05 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008329333799 9.11312411 2579.18 Withdraw Funds | |
0x18b8c9606a0c71a94095236a6ef1c3ba6b33c11e87d9a44564997e720cf2df86 14350653 1646802650 2022-03-09 05:10:50 0x417ac7e5e214053149746e28d516683ffb90e933 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00464097544 5.077691229 2733.05 Deposit | |
0x47647c90682c6a9e10615574e27697bd8be3ab6cc9d58660f31689cadc95ae1c 14350659 1646802699 2022-03-09 05:11:39 0x417ac7e5e214053149746e28d516683ffb90e933 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001356292116 1.483919205 2733.05 Increase Custody Allowance | |
0xe664695c56c6df14cdde4b65df4681786e0c682799b788d5c5f8e4a806b6898d 14351556 1646814828 2022-03-09 08:33:48 0x417ac7e5e214053149746e28d516683ffb90e933 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004178953741 4.572193288 2733.05 Deposit | |
0xf8dbeebfb0ba2b9e48879dcbcf0a586f6945e553193765d269fde2a657774da9 14351560 1646814904 2022-03-09 08:35:04 0x417ac7e5e214053149746e28d516683ffb90e933 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001763672572 1.929634161 2733.05 Increase Custody Allowance | |
0x4daf95f6a13361ab5f076a3536b33b0e86ad01ca606c2b71d999c94a77e3ebda 14351776 1646818160 2022-03-09 09:29:20 0x6089c477925b05a7e648d69aa7b3041912c647c5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00348268 3.810400188 2733.05 Deposit | |
0x92355214531797369223fcfcc4fffd0666c44c89379b5c7796ae6f333a10f485 14351834 1646819100 2022-03-09 09:45:00 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002231557672 2.441547249 2733.05 Withdraw Funds | |
0x3c3f0851eecd30829cb252df3ca90cfdc5e003cdd9baa1a43bbcd7cd624c1a52 14351835 1646819112 2022-03-09 09:45:12 0x6089c477925b05a7e648d69aa7b3041912c647c5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00189845 2.077094145 2733.05 Increase Custody Allowance | |
0x83c70aa764134fee075126c8401a26b664da58633a38ec805ad0fb06fff74ca3 14351993 1646821207 2022-03-09 10:20:07 0xfbb7b5eb128f4d023a365cb7658222d30b9ab4e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003922668984 4.291792135 2733.05 Deposit | |
0xdb8b226b4b6865c3fdb5f7c8ba5735d3d0b4fdb1fc87a621260bf58b2ecb2993 14352007 1646821382 2022-03-09 10:23:02 0xfbb7b5eb128f4d023a365cb7658222d30b9ab4e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001626471249 1.779522194 2733.05 Increase Custody Allowance | |
0xf4a16e342f48a9fa016f5a36e8fdd338800a11dc00ede4d2cb7cec29445e0b5c 14352336 1646826120 2022-03-09 11:42:00 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001311323681 1.434719239 2733.05 Intend To Withdraw | |
0x54dbf9ab48fb5793964b800ebb41203d9b8a3153c0d0ee0c82f75307291abe25 14352459 1646827626 2022-03-09 12:07:06 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005743526023 6.283991822 2733.05 Claim | |
0x447fc59eb8a77b7deae433580c6c5c74884f51eece5f4998fb2a4eaa08b7f90b 14352463 1646827673 2022-03-09 12:07:53 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00565169052 6.183514598 2733.05 Claim | |
0xd63a49f5ecc6d30675198ea69ab8706fbe8eb068f8198465d7152eee757fdc3b 14352469 1646827738 2022-03-09 12:08:58 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003423427372 3.745571887 2733.05 Claim | |
0x19856394c85cf0a5919ec02e543b57016b6fb661213e07aff674117040924803 14352472 1646827764 2022-03-09 12:09:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004928165084 5.391905418 2733.05 Claim | |
0x45f8e4e28091d3905e2a5be3d2699aeea3cbabb4842d59a9de830c6af6978cec 14352475 1646827795 2022-03-09 12:09:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005580158064 6.105250938 2733.05 Claim | |
0xb069f5c4f4af41a5ddfe0bf3c53f07b8afa6df3764db94058e87d6746a5c2af3 14352480 1646827846 2022-03-09 12:10:46 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004398962552 4.812904928 2733.05 Claim | |
0x004167146939ea44c0b0fac4e11fe8f07d6af3f74fa34d4e15d8125fc78ce691 14352525 1646828384 2022-03-09 12:19:44 0xec6576483a4e9a7a0dc03d9ccae811d5cd2a52c1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0042452868 4.644768288 2733.05 Deposit | |
0xf77482ca3ddc583691fa4d0c412ee909c0ed52b178ffe4d654d18ae498837534 14352931 1646833550 2022-03-09 13:45:50 0x76bfdb851cda72ffcd86c7544ac649c84402764e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002153876254 2.35655601 2733.05 Withdraw Funds | |
0x105c8d0d0b8c9aeab6b9a12a6c378b747263d773715905d6f55497805d6bd3f2 14353075 1646835493 2022-03-09 14:18:13 0x72c2fc6963cd8e7577ce3a125afd1153c88ed7b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00346687491 3.793107839 2733.05 Withdraw Funds | |
0x2c2e568ab96b8b425425921c65856aa6e50fc2dae63c4de2e02a2ea818fc93da 14353078 1646835575 2022-03-09 14:19:35 0x72c2fc6963cd8e7577ce3a125afd1153c88ed7b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001107113846 1.211293259 2733.05 Intend To Withdraw | |
0x027b52b47ee27033629db8175b6ea6f5117e7d9e7603eb6f297831e677fedbb2 14353272 1646838376 2022-03-09 15:06:16 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004423919195 4.840209992 2733.05 Withdraw Funds | |
0x5ea96815b6672c7b53b488245a4c5c881a7ddac57492690709f4addf66db94e7 14353705 1646843948 2022-03-09 16:39:08 0xfe744807f15c9f1c379c346e59d7c7b55fe56369 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003346978065 3.661928701 2733.05 Increase Custody Allowance | |
0x26a7e8e62d0ceeba399efd9e864921b64492e06180f7b9214fa65604c2d25ee7 14354043 1646848620 2022-03-09 17:57:00 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004750821195 5.19787347 2733.05 Withdraw Funds | |
0x20c46c232cb534b906902e940f8d540f8147ad58921d2ccb1ff08619e02f3b2b 14354051 1646848702 2022-03-09 17:58:22 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001223196769 1.338299585 2733.05 Intend To Withdraw | |
0x995c5d6318c7c37589783ddb4aea242dcfedad1900f2ad87c6edc0df828bf7c1 14354866 1646859531 2022-03-09 20:58:51 0xec6576483a4e9a7a0dc03d9ccae811d5cd2a52c1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003265334 3.572601929 2733.05 Increase Custody Allowance | |
0x4198cc22165c3e4c1fb7ba0f5a4cee1987d83c39fcb6d0f3cd34bd469b17f24e 14355178 1646863606 2022-03-09 22:06:46 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003692416913 4.039873344 2733.05 Withdraw Funds | |
0x64f6a64655b10834c87bee0d4508080d65fc9298dd609bcca2ed3c63022895d3 14355261 1646864537 2022-03-09 22:22:17 0x881117211e99ab4db61c5bba916c0e9ea8532e75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00294327383 3.220235898 2733.05 Deposit | |
0x068b2dc61a58d4f7fa0b57938d892b2d32ea3ee6c674ed00e621dafee6c91cb0 14355269 1646864671 2022-03-09 22:24:31 0x881117211e99ab4db61c5bba916c0e9ea8532e75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001401401478 1.533273357 2733.05 Increase Custody Allowance | |
0xf4b15739c58fa9acaa6fb26a0c78f8df8e95965c6eb165cbc4e99b71ec64ae23 14355874 1646871994 2022-03-10 00:26:34 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003291179748 3.600879762 2608.64 Deposit | |
0x27e73283b27968c542f7299002215c075bc6ab162324dc73c26305144a328d81 14355933 1646872829 2022-03-10 00:40:29 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001596237852 1.746443833 2608.64 Increase Custody Allowance | |
0x06b343d2d1addeb3e12d3b1da394bc6db9720c60a51d0c4b6a09ddfdbd27ace7 14356853 1646885663 2022-03-10 04:14:23 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003991742247 4.367365193 2608.64 Deposit | |
0x02f7e0ec1a7724e2e6682c1593d55068a2ee68e1c26b5bff91847f1fb35390b1 14356860 1646885772 2022-03-10 04:16:12 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002297913228 2.514146862 2608.64 Increase Custody Allowance | |
0x2c477129f89bb737f9e2e8f3f63f7e6b93114bd666a2b1d77904d5e56c7842da 14358049 1646901070 2022-03-10 08:31:10 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003278149523 3.586623393 2608.64 Deposit | |
0xc8ea0cd4808e7d3094d4b252601a25923673a50cae3764154815eabbba34ac9c 14358054 1646901116 2022-03-10 08:31:56 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00105861919 1.158235256 2608.64 Increase Custody Allowance | |
0x58cb2f273193758687731e096050b50a3cb19c6dc0197a319dca3fb6e34c3d46 14358120 1646902069 2022-03-10 08:47:49 0xfbe4e7121b417b6b9bca1e97229d2ed3b09d4735 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00383638558 4.197389463 2608.64 Deposit | |
0x54f330b5813fff237d8e7fd5efca71ed9e400c6d7f1d729a4857613af6256ac9 14358169 1646902619 2022-03-10 08:56:59 0xfbe4e7121b417b6b9bca1e97229d2ed3b09d4735 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001641281908 1.795726536 2608.64 Increase Custody Allowance | |
0xad24814639ba50b824ad400241dec34fce5f8b1d265346fa1fb2e2ab5ed9400c 14358426 1646906166 2022-03-10 09:56:06 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001948945012 2.132340737 2608.64 Deposit | |
0xe3799ae89d7437dbd33fb84ff2419be2d04f17a2220d1d96e1a05b5029469664 14360553 1646934936 2022-03-10 17:55:36 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005548095555 6.070171347 2608.64 Withdraw Funds | |
0x11e91865cbde2d69543f95fbb6b617e61048ca4745bc70921fa783bd27f6ad4a 14360582 1646935342 2022-03-10 18:02:22 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007246567084 7.928469047 2608.64 Deposit | |
0x38b1fcdeef114828097b02dee0880febc54aea5c1c3914f7e984aadfa5d886a2 14360585 1646935391 2022-03-10 18:03:11 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002703700769 2.958119012 2608.64 Increase Custody Allowance | |
0x99b1201d7457c093d5e2f302ea49d1cfaff8acc8c321b81da7755fae15007226 14360589 1646935435 2022-03-10 18:03:55 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001676574161 1.83433979 2608.64 Intend To Withdraw | |
0xb29be655d997576e0a6e6ad0da4aeb0afbcd983ed37378f3a94dded2519e80de 14361842 1646951819 2022-03-10 22:36:59 0xb7f1ea585d7bf0f04941a29a03465cb74844c0cb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004386885915 4.799691879 2608.64 Deposit | |
0x2ea7df9601f3d53f3ba4d8649b3b6db4d8c54c1a17bd26e9b8a75bc00d55d639 14361850 1646951918 2022-03-10 22:38:38 0xb7f1ea585d7bf0f04941a29a03465cb74844c0cb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001769966199 1.936520018 2608.64 Increase Custody Allowance | |
0xe82d9818963f6437af1fc47a9f1efb81965972a1c07f3d824be5915483608bae 14363953 1646979793 2022-03-11 06:23:13 0x02ffb9b4bbc29f9a59b20c541d369c5add62a5a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001753503526 1.918508208 2557.57 Withdraw Funds | |
0x00652c4ceb1b86a8bff6414f23daf3f82e46115b8d381aa47c6e9f1791a86d8d 14364545 1646988233 2022-03-11 08:43:53 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004522716886 4.948304545 2557.57 Claim | |
0x3bed5ef1b1524a097bdc6f1656d4234a31310f58215f2ebcc4e8fc64b2c3c741 14364550 1646988276 2022-03-11 08:44:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004519006836 4.944245379 2557.57 Claim | |
0xb27b6f11c3549ecbce222ac2b814ccd25845b2310206ea495e23ac9ea5872622 14364553 1646988333 2022-03-11 08:45:33 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009378860915 10.26141173 2557.57 Fund Loan | |
0x77d83694c357f09e035c4f0c41a6e32980be83c5bf27c2078e2cc625cc29d35e 14364558 1646988386 2022-03-11 08:46:26 0x775f6a8eaa17775eb19e7f873ae2d8a807b20b95 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001929850796 2.111449755 2557.57 Withdraw Funds | |
0x584c969a6359e60c174020c61ac8ab12ebfb8bee82e782c3dfe11c31fa6abd57 14365509 1647001371 2022-03-11 12:22:51 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001694967257 1.854463676 2557.57 Withdraw Funds | |
0x91b77d0bae3e664b1c24583d357f01a04117102b2f52b7b0b0d458b14719aadb 14365531 1647001569 2022-03-11 12:26:09 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001778293057 1.945630434 2557.57 Deposit | |
0xc3ffc8a06596d069e77693842c46b1e3fc1230cc71b6ebb383f4d8baf1a524b0 14366323 1647012091 2022-03-11 15:21:31 0xacd44152e64c83542183fe27f30a9ee43d443e74 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00328833337 3.59776554 2557.57 Deposit | |
0x506a905b1cdeea3b82e0dc48b4858519f4e6d1786ab8025bb7e819a87156c476 14366326 1647012120 2022-03-11 15:22:00 0xacd44152e64c83542183fe27f30a9ee43d443e74 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001566422854 1.713823244 2557.57 Increase Custody Allowance | |
0x1b9af9342dd25aba4c248edaefe1e05f13d682b58f97b3270f4ae8dd80905ef2 14366829 1647019436 2022-03-11 17:23:56 0x32e580eb62d4f4d145fbb34b1235b3831985750f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002961114 3.239754827 2557.57 Increase Custody Allowance | |
0x6111421dd07ab4bc9dbfd7b5cd943283d8be9ae2a7a83081d97cb81ab9d631b5 14367117 1647023355 2022-03-11 18:29:15 0xa093284c707e207c36e3fef9e0b6325fd9d0e33b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001437437682 1.572700568 2557.57 Intend To Withdraw | |
0x902d38c91bb39999fe475806268c9f6e94e2b23415c737786f48930c6b1cc868 14367134 1647023598 2022-03-11 18:33:18 0xa093284c707e207c36e3fef9e0b6325fd9d0e33b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004514625652 4.939451926 2557.57 Withdraw Funds | |
0xdf556526236f48187e49d60ab049d06dca6ae6d1eb7272111286f64ea2c4abf3 14367558 1647029281 2022-03-11 20:08:01 0x4857d1c4b89a046f834fd9f271b0a82f5159889b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005454760019 5.968052937 2557.57 Increase Custody Allowance | |
0x6a81fa57f8ac17fcf32e58ff75b5b05032b47cd3ff510eccb46489abc23d97f3 14369591 1647056145 2022-03-12 03:35:45 0x638c1ee06500ca91255fa26e34b98dff97bbe96f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002774417503 3.03549019 2569.87 Deposit | |
0x1d5ccff744ce4808010f686f8168762a0cb3e8f5074489da0f57dba11fbf0bb5 14369601 1647056281 2022-03-12 03:38:01 0x638c1ee06500ca91255fa26e34b98dff97bbe96f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001328847399 1.45389194 2569.87 Increase Custody Allowance | |
0x286804bd615981e5135058bce2dd89b966418d63f2e6a6a7e991a35a27caeb39 14370256 1647065853 2022-03-12 06:17:33 0xb3a9b31e0e678a9db4483bb19ce8298717cbd37f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00305693506 3.34459265 2569.87 Deposit | |
0xc673ae6fcb1b8779fcb86c25a7c67806318a8aea2a9bce26156e5f0567391149 14370260 1647065923 2022-03-12 06:18:43 0xb3a9b31e0e678a9db4483bb19ce8298717cbd37f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001485515174 1.625302151 2569.87 Increase Custody Allowance | |
0x4f1bfd8e9fb9fe60524c7ec9d09cc203a9dc985e0145af9554f418ec36849cda 14370293 1647066349 2022-03-12 06:25:49 0x929ad05bea8b88aa303fe68aee4fb8d3b74d60fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002389382772 2.614223691 2569.87 Deposit | |
0xc535876d334eb365af1470623cc4bbd9f853f66286a7237af0406524377e8048 14370328 1647066779 2022-03-12 06:32:59 0x929ad05bea8b88aa303fe68aee4fb8d3b74d60fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00129115 1.412647215 2569.87 Increase Custody Allowance | |
0x1d0f49e95734660168ba5f70a6056c5cec7ba3e4e9f1f33256b4beb5f928f2d6 14371206 1647078064 2022-03-12 09:41:04 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001137216 1.244228026 2569.87 Withdraw Funds | |
0xf387649984f5827c8cad43eb411d36d6699969a7108d3b689b84fa550cbcf7cc 14371627 1647084034 2022-03-12 11:20:34 0x929ad05bea8b88aa303fe68aee4fb8d3b74d60fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002088178 2.28467555 2569.87 Deposit | |
0x2bd785fc4f5d3f4ddfccddfe58c6ebcf605e51571e6415d30bc39db904bb02f7 14371641 1647084148 2022-03-12 11:22:28 0x929ad05bea8b88aa303fe68aee4fb8d3b74d60fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005939678682 0.6498602446 2569.87 Increase Custody Allowance | |
0xfd3cf626be6d36a7456a9b88ddaae3510b1579245aca2cf2acc602c1e89ff8f2 14372174 1647091231 2022-03-12 13:20:31 0xab90d14fe1b984e633fbfc87c6f284b8814170fc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004140991877 4.530659212 2569.87 Deposit | |
0xf4103d7079cce3c7baef6e492e53a4513c6f49fbea60ffc486af206c3507f22f 14372184 1647091351 2022-03-12 13:22:31 0xab90d14fe1b984e633fbfc87c6f284b8814170fc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001664936772 1.821607323 2569.87 Increase Custody Allowance | |
0x63c5a66fd3f1ac9341b34d4c0356bdcbf7561d5e966916dafbe0ddaf446f96de 14372452 1647094997 2022-03-12 14:23:17 0xe7fb225efea23bf8b17345f1f3bb941c098efeeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001024949269 1.121396995 2569.87 Intend To Withdraw | |
0xe8f17ddaf8c26f438b9106ba87845fede8437079c7b930c7ba7b3c1ceb9674e4 14373273 1647106127 2022-03-12 17:28:47 0x32ad379d17a523c79cba370a2bd645637ed4f4af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003027741413 3.31265188 2569.87 Withdraw Funds | |
0x6f9d434ff61df4fada2eeb8b185fa2a075d36412ce4cdc1e415b8e5b19262ebb 14374065 1647116353 2022-03-12 20:19:13 0x19282e37b5319727501e9577d79dbcdf43803883 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001280582762 1.4010856 2569.87 Intend To Withdraw | |
0xecad94189cc3ff041c4c5412bd37eff1e4ee7c29c8dc3e84be8832e6ad8360c0 14374375 1647120480 2022-03-12 21:28:00 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007839724023 0.8577442054 2569.87 Intend To Withdraw | |
0x7cad66b587cc21f2cd2642558406c823598541ae39aa54d9963e9e0200f41a1a 14375672 1647137721 2022-03-13 02:15:21 0xd995b8e12bd49982090258e874eb5734a7c9c263 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003692118667 4.039547033 2516.83 Withdraw | |
0x356a279cf3c0bcbfff4a25ab6101735186bab7af474cc8ea05da130d12f9bb33 14377090 1647157814 2022-03-13 07:50:14 0x116e91d0dceb6e3efc2e06918c9e85417b3a7008 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00218533016 2.390969728 2516.83 Deposit | |
0xd858a14f1725eb27a3d1eff131e8c571407decd5e9164e4f73a3415b7b3bf835 14377103 1647157995 2022-03-13 07:53:15 0x116e91d0dceb6e3efc2e06918c9e85417b3a7008 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001060008049 1.159754806 2516.83 Increase Custody Allowance | |
0xd0d0c80635d87e97656f8108b01b4dac0f28038777bf69dc1f237ee667a34cc9 14378096 1647171733 2022-03-13 11:42:13 0x3c229864378b3b0adf98ae247ca33986aed8ec1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002601756167 2.846581422 2516.83 Withdraw | |
0x6a267cec10829c9e2ffa7f48175141231ea23dc4c3e3b1eb69ed389ac60c4d8c 14378407 1647175936 2022-03-13 12:52:16 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01666699647 18.23536083 2516.83 Fund Loan | |
0x6662a9397f694da66bf9e4f88c2c5fbc63dbff86a8469ecb8c756da7dd2e3eab 14378412 1647175997 2022-03-13 12:53:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006236647225 6.823515729 2516.83 Claim | |
0xee4fbfb8b428c76488df2ac74fcf267abe3f2217c3411a47c4cfb4e49b007538 14378585 1647178206 2022-03-13 13:30:06 0x522764b3cc4081cb9c6b3d5be25c3a1cada542e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003679737156 4.026000422 2516.83 Deposit | |
0xe4a60770a45b75b999d4620d1d7997c0f57c52dc19b4cc114bb022f01dc9a678 14378663 1647179164 2022-03-13 13:46:04 0xc3c14f31c8db2417d1695fa6c8bebe8f2804677e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009135974683 0.9995669901 2516.83 Intend To Withdraw | |
0x3c410e055b6a6f413a811904e09478df36dfa30636ad15615bd57e8185f8d15b 14378691 1647179433 2022-03-13 13:50:33 0xc3c14f31c8db2417d1695fa6c8bebe8f2804677e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0018340678 2.00665358 2516.83 Withdraw Funds | |
0x4a7f26293753a282595dffceab217d98311b430a06d527d596cebce486d8c9a8 14379180 1647186622 2022-03-13 15:50:22 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003764591428 4.118839481 2516.83 Withdraw Funds | |
0x9ac33826300296f589ea47583ea92c06c969eb7922ce32135dde0b6932728b99 14382223 1647227362 2022-03-14 03:09:22 0x3b87f7d473550ef9e53e46baae856608f8b8a0c4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0059758201 6.538144771 2591.45 Deposit | |
0x8df94679f12fe5a59c6bb51dc0f14e358dd641651e934cdbd771fef9422b91fe 14382229 1647227447 2022-03-14 03:10:47 0x3b87f7d473550ef9e53e46baae856608f8b8a0c4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002602868836 2.847798793 2591.45 Increase Custody Allowance | |
0xfbe600785bdfffdf0fc00707c848f0a224c73300740c8fb632a5bfd359aed47a 14382239 1647227564 2022-03-14 03:12:44 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003735477993 4.086986472 2591.45 Withdraw Funds | |
0x4d42857c27820ca135df9273a8c54572b52d892195aba02c610176f3af07f02e 14382396 1647229680 2022-03-14 03:48:00 0x6be7c59f17a06520170ccc733688f30556a01eeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004039060398 4.419135981 2591.45 Deposit | |
0xb0327e5b29d3d5d13a98bfe12e5d6c9fd0dce930502f2fbfdfc3477f47292292 14382920 1647236258 2022-03-14 05:37:38 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0004368863125 0.4779973146 2591.45 Intend To Withdraw | |
0x02ece1271a4b353b479e0859f016ed7c4ddfda74e63f2d64fe0cf7591d705169 14383096 1647238790 2022-03-14 06:19:50 0x5e7ee474cb16df442bc63e14684b5b00edadb3c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007639181263 8.35802822 2591.45 Deposit | |
0x9d767e462d98d876d6f5c74e87aaf79020b99845241816aa41451f80e525c981 14383106 1647238952 2022-03-14 06:22:32 0x5e7ee474cb16df442bc63e14684b5b00edadb3c0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003485760485 3.813770547 2591.45 Increase Custody Allowance | |
0x7222e21fdc49e41e9f8a92876d1a77974bf8a710595d7438bb396154d018c286 14383426 1647243543 2022-03-14 07:39:03 0x522764b3cc4081cb9c6b3d5be25c3a1cada542e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001408719263 1.541279745 2591.45 Increase Custody Allowance | |
0x4faf48880e0ecaf46a68b7d9890d516b3093440e675631e05aa16871c9cc99c5 14383503 1647244776 2022-03-14 07:59:36 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001959778879 2.144194071 2591.45 Withdraw Funds | |
0x3494a98b6b3ed5556e2296d7fe5f88108c025aa40c1602b042226c9b67fb960a 14383587 1647245712 2022-03-14 08:15:12 0x196589d9220a38bb798527b0b946a3dc44bcad73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002510726138 2.746985467 2591.45 Withdraw | |
0x49735dda0ba18bb4b775ae05c2cebb7474db2d0d3ec48b3f9fd701deaa0224bc 14384027 1647251971 2022-03-14 09:59:31 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001789888 1.958316461 2591.45 Withdraw Funds | |
0x2fdae94feffc154353adbea502085825f399a01b98aca4bbe395566df685ab7f 14384028 1647251973 2022-03-14 09:59:33 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0006584657 0.7204273224 2591.45 Withdraw Funds | |
0xaadca378d2366df77ca930bf6d6d625f4a37dee41abeff2b79e326b793c37e16 14384159 1647253594 2022-03-14 10:26:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005042199742 5.516670738 2591.45 Claim | |
0x772c8b357179abb528bdcb01a7c46f41e2d80c845df1b6c9ec68e23e6dd48d55 14384171 1647253711 2022-03-14 10:28:31 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004709827134 5.153021868 2591.45 Claim | |
0xf5ba39b2b75a5c930cedab6e5502aba5c1994e37fad5052d1417a9aab13520c3 14384349 1647255967 2022-03-14 11:06:07 0xfb27c8582976f1a29d58e89bcc89da1e54d78076 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003289824629 3.599397126 2591.45 Deposit | |
0x396bf1efad7629e8b007b6000b40dc92ab42c58db8a59818e5f20d00cafd493e 14384355 1647256009 2022-03-14 11:06:49 0xfb27c8582976f1a29d58e89bcc89da1e54d78076 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001292651381 1.414289876 2591.45 Increase Custody Allowance | |
0x092124bd82dc0774cc13d38af0c5af93fc31c9550b885038e279327f34913c90 14384892 1647263168 2022-03-14 13:06:08 0xf92dfc9450dedda906d944d15b8d511060a1753d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001993480323 2.181066822 2591.45 Withdraw Funds | |
0x2cc51ee40fd8752d68e31b426e9e29d2a74b1f97bb729950dc1a24678e40ca1b 14385243 1647267658 2022-03-14 14:20:58 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002293390098 2.509198106 2591.45 Withdraw Funds | |
0x9ca29ea8650711db016e7be2ba7bedc97e20f70500dc038ce079312125391e3e 14385300 1647268434 2022-03-14 14:33:54 0x35356cf258a395072d63f28111848387e9440531 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003027186146 3.312044362 2591.45 Withdraw | |
0x4e6c84f263f5cd371dba7b9336fbfe9280b6492db90908438a29ec274faa3f71 14385874 1647276237 2022-03-14 16:43:57 0x4c4b17543e24106201b3f7c888918c5a478bdb3b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001545857944 1.691323177 2591.45 Error(0) Reverted Withdraw | |
0x0378fb9e00e9e1954a9ed15175d6c26ce44f0bb98eb7a49e1953bd3a3fee0360 14385933 1647277001 2022-03-14 16:56:41 0x4c4b17543e24106201b3f7c888918c5a478bdb3b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001075973233 1.177222315 2591.45 Intend To Withdraw | |
0xefb6ad87fc217f87205fef66bab08fb45842aee34d168c1decf1a191b4d94db8 14386128 1647279336 2022-03-14 17:35:36 0xd3ed2a824a3fc4ab35ec49bb3a7545c4f53a6bdd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005214499675 5.705184094 2591.45 Deposit | |
0xf7dfc5bcb825221fd416a57105029fd58dd3ab85204f7279fccb3415b25de848 14386131 1647279440 2022-03-14 17:37:20 0xd3ed2a824a3fc4ab35ec49bb3a7545c4f53a6bdd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003106220151 3.398515468 2591.45 Increase Custody Allowance | |
0xbf771b4a72e4b921344740bd1b26bc7c3dbc7f2d034bd1a127216249d7fbc55c 14386217 1647280838 2022-03-14 18:00:38 0x87bd9a25daf00d6c10bc6f4cbb8d760891306ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006822011416 7.46396269 2591.45 Withdraw | |
0xf0c110660d2d03ac2658ae0392480f896bd4fa04858774cb683cb97ba55b328e 14386256 1647281323 2022-03-14 18:08:43 0x87bd9a25daf00d6c10bc6f4cbb8d760891306ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001293830491 1.41557994 2591.45 Withdraw Funds | |
0xb0ad41afa605389ce5b5fd7ccaf6a87e1fc864de281cbb93fc89ff66b9005b8a 14386289 1647281760 2022-03-14 18:16:00 0xffd0a90d886bd980cb7e62da012119de86c4c804 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005797802203 6.343375391 2591.45 Deposit | |
0x1e09754787f2b3d2aa962b913c80ed93bcef3ed60a6ce0a00512115d14172e53 14386382 1647282894 2022-03-14 18:34:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0256960447 28.1140425 2591.45 Fund Loan | |
0x163186a7ddb3ff8c136e7b9c783ef4f80697e174f2bf52879ef37f8ef4164fb2 14386480 1647284323 2022-03-14 18:58:43 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001725553345 1.887927915 2591.45 Set Liquidity Cap | |
0x0d156288e70a7f6dc223e0a15e4acd8124920d805a5ca05d3c7e4b387923dfdb 14388739 1647314453 2022-03-15 03:20:53 0x7702d9af72e914dd619892e626220696e185da44 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000917129518 1.003431406 2619.61 Intend To Withdraw | |
0x72fbb2192944509e14a43315b220d502e22934c9c3209e31c7c98d47dc5aabb2 14389256 1647321774 2022-03-15 05:22:54 0x6be7c59f17a06520170ccc733688f30556a01eeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001763930465 1.929916322 2619.61 Increase Custody Allowance | |
0x6546e1963abc112735f3a5cc5fe1036d58d89c77202bb4a3442dcf36b7eaff0d 14389341 1647322736 2022-03-15 05:38:56 0x6be7c59f17a06520170ccc733688f30556a01eeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002051613382 2.244670201 2619.61 Deposit | |
0xa5a1bb1427cc7b16a3e31b58111ac362892bb269d2cc478d8755f3bd8ac0ce3a 14389355 1647322956 2022-03-15 05:42:36 0x6be7c59f17a06520170ccc733688f30556a01eeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0006646451633 0.7271882732 2619.61 Increase Custody Allowance | |
0x00f5d482cac5c1e90e80845a48edeffe408048820280f7b8edb0cbe38fc64cd8 14390417 1647337651 2022-03-15 09:47:31 0x361042cb65a69efde49bf68ceca58e4f44d6ced1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002943649083 3.220646462 2619.61 Deposit | |
0x7dc41cbb3f8919f3bb31609e47b15deb0ca0e7a66d6c2ef4042f5118fffc41e9 14390426 1647337738 2022-03-15 09:48:58 0x361042cb65a69efde49bf68ceca58e4f44d6ced1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001135785259 1.242662652 2619.61 Increase Custody Allowance | |
0xfad454b72945ca2c0ede19097c2a0197048c08d8c4635c71e2cd4f0c58ac09cb 14391022 1647345498 2022-03-15 11:58:18 0xdc513ee74c040213c50d39e516532748e84902e6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002254920464 2.467108479 2619.61 Withdraw Funds | |
0xd47425fda9831e1569d7c09ba17311d3811abc9ddd2b505abd0071b9b380834b 14392014 1647358713 2022-03-15 15:38:33 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00588745799 6.441467787 2619.61 Withdraw Funds | |
0x289d5ef05a85b20f4377ac119790c7d2b63fdcc38704b9d29ec39fe3cae6ad95 14392636 1647366472 2022-03-15 17:47:52 0x844b4bdab7b27c77a1535a8145a4a9d5c44b663f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008099055397 8.86117651 2619.61 Deposit | |
0xe8a357cbb263bd5c651fa66edda8c3e786e262da7e0a07f8b9b5ed93dab575c0 14392641 1647366549 2022-03-15 17:49:09 0x844b4bdab7b27c77a1535a8145a4a9d5c44b663f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003482314373 3.810000155 2619.61 Increase Custody Allowance | |
0xf8c47a0d6d5fa3d423c407d09aea23002def23a27617a1812ba2cdd71f4b8ddc 14394022 1647385514 2022-03-15 23:05:14 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004286490487 4.689849242 2619.61 Withdraw Funds | |
0x5b25a0512e8e1a07667e1d1fdaf8295e0bfbb189279dced3e1ae85af64bf1566 14394643 1647393991 2022-03-16 01:26:31 0x254285f14dea6ee112681b9d2f16e59b1a5d33f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005298369257 5.796945804 2775.15 Deposit | |
0xbfc5b76c3b027ecf54726f3769c0b41e511ba0b906017f1fdaa85ce832dca677 14394648 1647394083 2022-03-16 01:28:03 0x254285f14dea6ee112681b9d2f16e59b1a5d33f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002868707578 3.138652961 2775.15 Increase Custody Allowance | |
0x49b539c3588dc0ae73aaa01749b06929b9a9b562fabc57cefc4e29fed1692c5c 14394765 1647395932 2022-03-16 01:58:52 0x254285f14dea6ee112681b9d2f16e59b1a5d33f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005596748969 6.123403047 2775.15 Deposit | |
0x75590e7a130486a2c0683dd8f3bfe46b1efa30c45f56c1186f5aa2cea290f270 14394767 1647395987 2022-03-16 01:59:47 0x254285f14dea6ee112681b9d2f16e59b1a5d33f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002165734048 2.369529622 2775.15 Increase Custody Allowance | |
0x162bb46a13521653a4e8cbc64317a6c87c9140a229628a528236833b316d78c0 14395487 1647405403 2022-03-16 04:36:43 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007197216574 0.7874474654 2775.15 Intend To Withdraw | |
0x0be4983560844e42184f9a3e2307b36c72f05f3e50a55a7574da0127a778e15c 14395494 1647405535 2022-03-16 04:38:55 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003152330568 3.448964874 2775.15 Withdraw Funds | |
0x4a6f58c81e085d7a836d1f1228c4bfff4310183693e46ab04356bc3718371086 14395590 1647406693 2022-03-16 04:58:13 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002354138116 2.575662513 2775.15 Withdraw Funds | |
0x9ebb463c481cd277f92ee8fd4d15846f41fe9556e175d6b7c17957ad1f490f80 14396663 1647421230 2022-03-16 09:00:30 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001490231747 1.630462554 2775.15 Withdraw Funds | |
0x8efc76b579196aca4eee5edf64b8285ef51509fb0cf9b7445ae308cb9219c641 14397137 1647427791 2022-03-16 10:49:51 0x9a8a9958ac1b70c49cce9693ccb0230f13f63505 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004354660643 4.764434209 2775.15 Deposit | |
0xffc605d9e58f3f144cd40f2add55e1f925c2ff2284b71a5a5873f713016f3ec4 14397892 1647437786 2022-03-16 13:36:26 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002709930764 2.964935248 2775.15 Withdraw Funds | |
0x5245ae3a78c3b71d1eb1e880cebf74380c3183b0f103a947ced54628adec0052 14398240 1647441964 2022-03-16 14:46:04 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002573337797 2.815488884 2775.15 Withdraw Funds | |
0x23b8bf5f30228b06278f3430437d0ea2d15a141a90198b12b2dd6e193775b845 14398282 1647442472 2022-03-16 14:54:32 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01253411403 13.71357416 2775.15 Claim | |
0x7fe2e943c08216133030fc459567ae8d509e33101b7bad9b3002a53d98cea3c1 14398752 1647448836 2022-03-16 16:40:36 0xac7c2135f681fdeeea21a3e67a3d1cb323b8407f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006654329899 7.280502343 2775.15 Deposit | |
0x16a42a6243dfddb0944dc730d87c070f608e90f3f603e5a090cd2f40d5757407 14399937 1647465087 2022-03-16 21:11:27 0x243841daa2a01d070f0cc70507266f025324ccf5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008813016435 9.642321282 2775.15 Deposit | |
0x4e572136b5371ba44b3546761eb769f4eb16ae52440ac62e5c79206ff805576f 14399941 1647465139 2022-03-16 21:12:19 0x243841daa2a01d070f0cc70507266f025324ccf5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003875400365 4.240075539 2775.15 Increase Custody Allowance | |
0x332062c23eb2b283292630646115677c1fed8aabeb1a060fc07327517f694d88 14400278 1647470017 2022-03-16 22:33:37 0x7d96a6f41fd31c7624f7069415be58b5e3576d34 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002640380139 2.88883991 2775.15 Intend To Withdraw | |
0x8ba2eea2c430c87b2e3ade03d3c9d783868b0869b1c3ef44f70b0cbce03bd070 14400539 1647473649 2022-03-16 23:34:09 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001688110203 1.846961373 2775.15 Intend To Withdraw | |
0x620efeea55d3e2f71144cc49db5f4a318caca366f1738b3956dd4d80fb3eb3a9 14400575 1647474239 2022-03-16 23:43:59 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005690941125 6.226458685 2775.15 Withdraw Funds | |
0x90f6af8199988f697b0a9d84050719b8afd9ff63850117ce7223a1145790d33f 14400583 1647474373 2022-03-16 23:46:13 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005500993871 6.018637394 2775.15 Withdraw Funds | |
0x8afbdd8b4dde1087805b538899558f8a0166636bc87fd36ff255a804773654ef 14403366 1647511324 2022-03-17 10:02:04 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002033906895 2.225297534 2816.26 Withdraw Funds | |
0x5baa072801462f5a380544d924db217bc68c5c5ad9c415bcdc25174d484ed4b9 14403432 1647512233 2022-03-17 10:17:13 0x9a8a9958ac1b70c49cce9693ccb0230f13f63505 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001628714089 1.781976084 2816.26 Increase Custody Allowance | |
0xf37a480a8caaff5f293f448b4b2bd483b420abc57b44095ceb847e55ef5f26e7 14404865 1647531102 2022-03-17 15:31:42 0xbc79d25d0f713f6ad95b38b4850d253ba9548bb5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009628457918 10.53449581 2816.26 Withdraw Funds | |
0xee8aa01644a9f21ceb84b88baf9f7eb3d6cb4780313919285615949757bba047 14405104 1647534678 2022-03-17 16:31:18 0xbc79d25d0f713f6ad95b38b4850d253ba9548bb5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01640366513 17.94725002 2816.26 Withdraw | |
0xa61ac7296cc96279111bcb17981646b53647061c5cef78069a91c5db8e806a38 14405519 1647540577 2022-03-17 18:09:37 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005885302285 6.43910923 2816.26 Withdraw Funds | |
0xb921c6f60bce4e68f727424e7deca49397f12bc76322de4d088e2914ad0226d0 14409819 1647598478 2022-03-18 10:14:38 0x54d020c2fe9d0c9d9b562fa1ffdbc6fa8a0bab93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00349695135 3.826014473 2941.32 Deposit | |
0xbc1f0c90a779ce2ed43a41e6cb1d337cc760f59ba82585de155815354e9df3e2 14409821 1647598517 2022-03-18 10:15:17 0x54d020c2fe9d0c9d9b562fa1ffdbc6fa8a0bab93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001469642992 1.607936398 2941.32 Increase Custody Allowance | |
0x374e688fe9980652e4911c6ee8a8fedf37a0dff2bf1525d198e77646eada0d1f 14410724 1647610563 2022-03-18 13:36:03 0x1465e375f1d4da50c7f976d7aed564730c164ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004592426211 5.024573518 2941.32 Withdraw Funds | |
0x8128ec05e0af2c351ac7ca460044f783f2dd55595f0429396aba1b5e90d21483 14410728 1647610588 2022-03-18 13:36:28 0x1465e375f1d4da50c7f976d7aed564730c164ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005276280591 5.772778594 2941.32 Deposit | |
0x387c6bb85e33b4151c565cd46ecfa2919a63ea486993264e00d47c664f5ea696 14410734 1647610686 2022-03-18 13:38:06 0x1465e375f1d4da50c7f976d7aed564730c164ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002032355368 2.223600008 2941.32 Increase Custody Allowance | |
0xe71b6e4ff646403f0105964872ff41eb9fdeb2a825c8f127b7403dd802f6c8d9 14411432 1647620265 2022-03-18 16:17:45 0x2ef3d49f6cb7a04e4164902748c09bbd3ffa786f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0127529776 13.95303279 2941.32 Deposit | |
0x8f8a9fc42eace90c866bfbd4e1b3a3cf8e359dd7293859755b2f32253b8f8668 14411436 1647620317 2022-03-18 16:18:37 0x2ef3d49f6cb7a04e4164902748c09bbd3ffa786f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005821853244 6.369689634 2941.32 Increase Custody Allowance | |
0x68fd1147334fe5186006b443c6a3b8bf9ad56e998daf3eedfd2ffc033fd8633f 14411709 1647623930 2022-03-18 17:18:50 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009687864061 10.59949207 2941.32 Deposit | |
0x657da976fb862492339b9ff99271ab684629ba9e97be8689fbd26ed073e0656b 14411714 1647623977 2022-03-18 17:19:37 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003129634285 3.424132871 2941.32 Increase Custody Allowance | |
0x75f84e64dd575a5fe512c2f50aac4ceae70ce4b048c2d33c126308ee9312ba74 14412431 1647633248 2022-03-18 19:54:08 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007692931176 8.416836 2941.32 Withdraw | |
0x4e8acb3f5e4070abd27ca90bb90f9846493587943d436f7cb8ffbeb960623506 14413592 1647649293 2022-03-19 00:21:33 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003324315979 3.637134113 2952.64 Increase Custody Allowance | |
0x0f6e4d9d5adc68699573407dbb064ab1ef63e09894ced83287064e51561c92d3 14414015 1647654728 2022-03-19 01:52:08 0x01efdb9d1a2c737c0ded5544e655628d973e2f48 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005384080342 5.890722303 2952.64 Deposit | |
0x857f5536ee47c1bc41bed0374bdf4bbd47f897bbc39b97abb25ac971a8346956 14414020 1647654788 2022-03-19 01:53:08 0x01efdb9d1a2c737c0ded5544e655628d973e2f48 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002493207389 2.727818205 2952.64 Increase Custody Allowance | |
0x2447ae6c14da0c83d531c4656f26bdbe180e0a1d01375d377399286b83ed3e6c 14415628 1647676158 2022-03-19 07:49:18 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005316823928 5.817137059 2952.64 Claim | |
0x5bcc1e507b789eab5f19df56c10608be760169b3f632b1a78b2320d2d57bc86c 14416011 1647681376 2022-03-19 09:16:16 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002156372119 2.359286736 2952.64 Deposit | |
0xd036c3ba8c26a67c5c34f7e62c2571f78b0cba09ea51aff42d2bfe00c3dd9809 14416019 1647681464 2022-03-19 09:17:44 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008466306539 0.9262985985 2952.64 Increase Custody Allowance | |
0x9a16707aa70400db97f2b0caa35bfda25895d1afdffe0231c0c996b18ef42703 14416124 1647682923 2022-03-19 09:42:03 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002549268722 2.789154909 2952.64 Withdraw Funds | |
0x4888663068d3bd48faed066a98b9b72860394bc3084b624781b54e763d03016d 14416224 1647684403 2022-03-19 10:06:43 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001741635459 1.905523356 2952.64 Withdraw Funds | |
0xe89fa6ca164e31c7e2ed5046873fd4cc3014d8055c86ee659b2885534ee78477 14416266 1647684882 2022-03-19 10:14:42 0x70978f453c9ac86817bb4ae2fe3fb985f3aa5c0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001722509326 1.884597454 2952.64 Withdraw Funds | |
0x8852c66adc54b80ac1fc924e3e62164a33e4228c1245ab949511ed0a6418cee6 14417886 1647706914 2022-03-19 16:21:54 0x75301b375de52686750b0de1766838719e08db75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00317144091 3.469873499 2952.64 Withdraw Funds | |
0xf593d4645352003fb679864ac387c62d1e970d4d2b5b1e88b49d584e914de05f 14417959 1647707786 2022-03-19 16:36:26 0x69b76190d82c540adf627cc70b45d85f0c2a5ebc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005410867947 5.920030621 2952.64 Deposit | |
0x36e76f355ea1ae6d83665a84fefd1f5f0c837b38633dc83ac6adb85b1b4c7af3 14417964 1647707864 2022-03-19 16:37:44 0x69b76190d82c540adf627cc70b45d85f0c2a5ebc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002132340471 2.332993709 2952.64 Increase Custody Allowance | |
0x93989db861af74e3a848ee8f4bdd52c8534d6ee7f81d4d71c0d828d77976f06b 14418511 1647714461 2022-03-19 18:27:41 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001982668392 2.169237487 2952.64 Withdraw Funds | |
0x914f37770369e818785928b7e086c085fcb0dae8308cc16d59d8db9cc8d99233 14418516 1647714516 2022-03-19 18:28:36 0x4f95ee90a5017fa8f9c972f9b3a839ca63f72a91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002368786971 2.591689825 2952.64 Withdraw | |
0x9eeeb899908590c90911c10c369cf6ea0076d0d0b28110002a6f196d83f68dfc 14419320 1647725493 2022-03-19 21:31:33 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003676884861 4.022879726 2952.64 Deposit | |
0xbc45b994e8bae9ae9c8f753d5af7a378b5fcd220393bb95cda456bcb27f9f810 14419326 1647725583 2022-03-19 21:33:03 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001096209192 1.199362477 2952.64 Increase Custody Allowance | |
0x2a6c0713a2b1a9a4d3b4f99a7adca080e137bc393ff6b003335f0365ebdf8bb8 14419870 1647733509 2022-03-19 23:45:09 0x72c2fc6963cd8e7577ce3a125afd1153c88ed7b5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003841850905 4.203369075 2952.64 Withdraw | |
0x48f480c8cf5a24c0f1765450133e699209613e086d0c30293b15de0cbcd73133 14420548 1647742636 2022-03-20 02:17:16 0x51332610225dafabdda9b5e3e05475d87402752c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002705598097 2.960194877 2861.26 Deposit | |
0xcd4ad9861b181fc4fd7887540e9cedc5733c59cb9e64e2093aca11c0965e919a 14420559 1647742747 2022-03-20 02:19:07 0x51332610225dafabdda9b5e3e05475d87402752c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001101417258 1.205060621 2861.26 Increase Custody Allowance | |
0x6ffa369c650f1b6e22fcde3141e44a64057b941768c8b219fe78d8effe44df28 14421318 1647753629 2022-03-20 05:20:29 0x0dc874fb5260bd8749e6e98fd95d161b7605774d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001373984566 1.503276514 2861.26 Increase Custody Allowance | |
0x2f53d4891186591ea7a7ae02a540c2b465aaad5410cadaab5b60cb79e88c1765 14421752 1647759722 2022-03-20 07:02:02 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007006441834 0.7665748011 2861.26 Intend To Withdraw | |
0x7200a453b2145c079393d90e2bf7cfed1cf2fab2a17b54db33358abc17467c98 14422334 1647766955 2022-03-20 09:02:35 0xa583f99495077952103235ad50606246d69e829f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001552100654 1.698153326 2861.26 Withdraw Funds | |
0x66f290c1f567343ac9db9ce57a7fdae72f49c157987bc4fadc83be8d68bd9895 14422347 1647767135 2022-03-20 09:05:35 0xa583f99495077952103235ad50606246d69e829f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001933972297 2.115959091 2861.26 Deposit | |
0x61ba25a763fe5ee10f201772440ee366a4850937c3db5e2c38bed18cf8fd7b9e 14422359 1647767303 2022-03-20 09:08:23 0xa583f99495077952103235ad50606246d69e829f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005475576812 0.599082859 2861.26 Increase Custody Allowance | |
0x32b8b0f45e478d4f6094e3cd89b3834e2551354a1615ec3cfb99aac7b03ea471 14422918 1647774821 2022-03-20 11:13:41 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001908002831 2.087545898 2861.26 Deposit | |
0x9e5b50853f1f0ebaf05f0b5508f8a4c56848f97681cc7c6ed98477276c178ff7 14422923 1647774882 2022-03-20 11:14:42 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008945608399 0.9787390149 2861.26 Increase Custody Allowance | |
0x7e7201dad304522b70dd4089a079398d6b90bb64266faa4a472d68769ac9185b 14424548 1647796788 2022-03-20 17:19:48 0xccded884158e192492e1d2e522cd573c4a9903c9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00117859765 1.289503688 2861.26 Intend To Withdraw | |
0xe613259765356e80f516d12a873b35bd8171a117a416ee48462d7a393914d92f 14424860 1647800767 2022-03-20 18:26:07 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002794784608 3.05777384 2861.26 Withdraw Funds | |
0xd98e4348c6cb19c18b79cea10aca8bf7fc8bcafa122b8394c9b2ef86107be4b6 14424877 1647800958 2022-03-20 18:29:18 0xbe6394198fc55a5f9748650883f15504640d5f7f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003518715759 3.849826912 2861.26 Deposit | |
0x0f565de464d4dcc612eed94eae4f4b572a13e355be6db613d544def984cd3c3b 14424885 1647801022 2022-03-20 18:30:22 0xbe6394198fc55a5f9748650883f15504640d5f7f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001234762358 1.350953496 2861.26 Increase Custody Allowance | |
0xd062bbf805c2390d731e458552f5e9eb07261f1caf2ab07a7a23d9e6892df7f1 14426503 1647822434 2022-03-21 00:27:14 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005506603984 0.6024775419 2895.01 Intend To Withdraw | |
0x95b869a9e0152b055f40cc27828aab2e4134700149a70f50fbbb89e50653949f 14426813 1647826403 2022-03-21 01:33:23 0xf9650d59a86b3a6fa36f32700dd98fed9131602b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004839546575 5.294947907 2895.01 Deposit | |
0xa1d981f5fc999cea7698fa3e8a99e628351dbee233b4ddd345a419f3fafbfaec 14426815 1647826423 2022-03-21 01:33:43 0xf9650d59a86b3a6fa36f32700dd98fed9131602b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00198921367 2.176398676 2895.01 Increase Custody Allowance | |
0xf1621ff793120788423d192338d3a122f53b246f5b8b29e6d4a79fb3f92cd77b 14426842 1647826827 2022-03-21 01:40:27 0xf9650d59a86b3a6fa36f32700dd98fed9131602b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003357130356 3.673036322 2895.01 Deposit | |
0x1bb5a4e8e05ef6e84228f4def7dfc773f7f44532782279fde27f1b9a992608a9 14426849 1647826872 2022-03-21 01:41:12 0xf9650d59a86b3a6fa36f32700dd98fed9131602b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008260749159 0.9038085655 2895.01 Increase Custody Allowance | |
0x8360ac3d89afe35f451703b47f8a36a7392e45a7475520cc02f35f898f65d9f4 14427231 1647832156 2022-03-21 03:09:16 0x06ad5f1df17d278473136786353695b0749d8c9e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001047518214 1.146089678 2895.01 Intend To Withdraw | |
0x63c7a2d2ce4dff549ad32c506a26dfcb0756e14c0bea5dc2089c8539334c629f 14427246 1647832373 2022-03-21 03:12:53 0x06ad5f1df17d278473136786353695b0749d8c9e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002427715114 2.656163106 2895.01 Withdraw Funds | |
0x411e834f1ce482d2d8f1dc4525f466acd745ffd962e6d6edf4427cd7ac03bd01 14427915 1647841607 2022-03-21 05:46:47 0x2ea543c417a2152e6cde1cb3e5a3227871208984 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005907562567 6.463464204 2895.01 Deposit | |
0x4a8e8892456e48c52d02cc2b47a750543c4d648d6e705bac42badca5e87dad0e 14427920 1647841659 2022-03-21 05:47:39 0x2ea543c417a2152e6cde1cb3e5a3227871208984 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002337007901 2.556920345 2895.01 Increase Custody Allowance | |
0xd376776a08a56d0e3bc7ad820a1f0d5a1c72c00d088382966d66c8606976ce00 14428452 1647848928 2022-03-21 07:48:48 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009000058154 0.9846963626 2895.01 Increase Custody Allowance | |
0xbcaa77d92c5d54183687ead0fe872f8e60cc1db6bb5d221e7ac8cc50e2cd9699 14428513 1647849546 2022-03-21 07:59:06 0xab601f86b3ecef94d0f43ea71b0d7b39a13e22d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002412360721 2.639363864 2895.01 Deposit | |
0xf86bcc976f3469d046bb1a67181fe79c8b449b51af11d57f6cb22f6f18eff0d5 14428534 1647849859 2022-03-21 08:04:19 0xab601f86b3ecef94d0f43ea71b0d7b39a13e22d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001278677363 1.399000903 2895.01 Increase Custody Allowance | |
0x7d6953dfe9f5b74dc63f67bad948fa6c6e0c4561b761a2811091983d744fe1af 14428583 1647850539 2022-03-21 08:15:39 0xab601f86b3ecef94d0f43ea71b0d7b39a13e22d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002098491705 2.295959774 2895.01 Deposit | |
0xec4c17085f5b03a922f848f4e918e4361c0651b103b693b88daaa2bd0bd027a8 14428589 1647850609 2022-03-21 08:16:49 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001741661897 1.905552282 2895.01 Withdraw Funds | |
0x3b8af8b29016ad411768077e708c0d67b05cd9cd81e59c7756a7e3189815d741 14428610 1647850859 2022-03-21 08:20:59 0xab601f86b3ecef94d0f43ea71b0d7b39a13e22d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0006864003314 0.7509906026 2895.01 Increase Custody Allowance | |
0x92b86075c2f6e71eb54935d8244b268e169ad3ee0d8bcbcceb9dad4fb0dd97ef 14428615 1647850937 2022-03-21 08:22:17 0x4f2b82190998a41f905b7d6915430697242c82e5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002195750646 2.402370782 2895.01 Withdraw Funds | |
0x0396953e55ff063ead944ef1d8105bd382328dec164d6d1a37e683c71df5c4be 14428618 1647850981 2022-03-21 08:23:01 0x4f2b82190998a41f905b7d6915430697242c82e5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005639786466 0.6170490372 2895.01 Intend To Withdraw | |
0x1dccbbc3bee8453a1d212055e3d6bcb1e409414d137716ecc394c665542e5aa6 14430030 1647870248 2022-03-21 13:44:08 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003913301297 4.281542949 2895.01 Withdraw Funds | |
0x3ff19e191c215708d533e6072848e580231a174c0ce1a2bddd7398030aae5838 14430077 1647870870 2022-03-21 13:54:30 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009805885973 1.072861984 2895.01 Intend To Withdraw | |
0x3a9ad51521ab60df0ff55437a47b2ab1498ac0ffdc1db01151891ff52748131e 14430490 1647876104 2022-03-21 15:21:44 0x6b6310bd7fb278c7d6a12f888a0360b44d209e33 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003386938665 3.705649594 2895.01 Withdraw Funds | |
0xc906e57d8cc67e6b8e42030e5985a59e16f66d14c2595dfa847d8c4308161f01 14430512 1647876358 2022-03-21 15:25:58 0x6b6310bd7fb278c7d6a12f888a0360b44d209e33 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003947679225 4.31915584 2895.01 Deposit | |
0xa41b1b46e88c1894d5baab458bbe1b5e2b7bd0551ce10f75c8d83e26a44f1bf2 14430635 1647878031 2022-03-21 15:53:51 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01117738369 12.22917549 2895.01 Claim | |
0x94fb3d9554cd143021b314cacb57737ce8d3ed12a3c3be4b4220efbceae15e03 14430639 1647878047 2022-03-21 15:54:07 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007597618132 8.312553998 2895.01 Claim | |
0xabfa168f28d81c44492e0635623cf2113a65ea447672d6dcd2f60583122c503c 14430646 1647878139 2022-03-21 15:55:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007648592437 8.368324986 2895.01 Claim | |
0xee7e61a8676dfcbbcdafd2dc565e39fe6f2b769d1e6f720de9fbe78da32442ca 14430804 1647880470 2022-03-21 16:34:30 0x9a568bfeb8cb19e4bafcb57ee69498d57d9591ca 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00755703598 8.268153065 2895.01 Deposit | |
0xcc220cf519b8ef678f97a927f60fcee6b5c4e418bd7a0f3ae97b7a13849c8711 14430811 1647880521 2022-03-21 16:35:21 0x9a568bfeb8cb19e4bafcb57ee69498d57d9591ca 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002986016686 3.267000857 2895.01 Increase Custody Allowance | |
0x44cc881fb414c07347b7ab9de2c7e6465516a581412c25fe19307cd016f4da0e 14430840 1647880898 2022-03-21 16:41:38 0x3005af5497ce6e25c3683ceff11fb2817e0c7154 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007308557362 7.99629261 2895.01 Deposit | |
0x32640fe4c6407c216d5a68d1e019f961b045c589b15ee2ac3257ee8b59801acf 14430846 1647880990 2022-03-21 16:43:10 0x3005af5497ce6e25c3683ceff11fb2817e0c7154 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00366621266 4.011203272 2895.01 Increase Custody Allowance | |
0x4af98a2290e19a8731c249ad5a378a821cc842d6dcbdc727e955d689b5875cb5 14431147 1647885015 2022-03-21 17:50:15 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01602770689 17.5359141 2895.01 Deposit | |
0x877397eb64d39e4ab9b880bd4604c8b6147742d55d4408948dbf4d8a8cfef47d 14431152 1647885072 2022-03-21 17:51:12 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005575915524 6.100609174 2895.01 Increase Custody Allowance | |
0x5fb4c3b1afb8882eb2afdb674d0a732acb2f974c66fd0c990f389165e9c115d3 14431391 1647888339 2022-03-21 18:45:39 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005654678507 6.186783754 2895.01 Deposit | |
0x31e7ae65e0ead57f4fa995be71d3e92d9878e0fbd72dc4f77e8cddac5b42852b 14431399 1647888441 2022-03-21 18:47:21 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002494806506 2.729567798 2895.01 Increase Custody Allowance | |
0x4d12f8859947a2e3bf0b6e446a235a5695927523b72cb49c84309c318c175897 14431510 1647889917 2022-03-21 19:11:57 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00345884845 3.784326089 2895.01 Withdraw Funds | |
0xd61f083b15f2757028249c10bb67089043c036810a73b5b998fe73d8d14b004c 14432853 1647908309 2022-03-22 00:18:29 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007861185727 8.600923304 2970.47 Withdraw Funds | |
0x50fc8b50756dc9e92804fd9cfef309ae252e177e124856e588a950a7db820104 14433163 1647912335 2022-03-22 01:25:35 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003192161101 3.49254346 2970.47 Withdraw Funds | |
0xef882e77f3e519485a97252898da1a40c051ebcbe01fb6fce68f89fa3a60f453 14433166 1647912375 2022-03-22 01:26:15 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00382495765 4.184886165 2970.47 Deposit | |
0x3ec8d20c9bff97c2760b59662338e9bb766d6c95307a8da1f71f8bea028de7e1 14433171 1647912418 2022-03-22 01:26:58 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001443480179 1.579311663 2970.47 Increase Custody Allowance | |
0x86b870e1f29ebd60c777c1d5e3ad22c6850088e558166cfc9997481cbffd6957 14433426 1647916175 2022-03-22 02:29:35 0xac7c2135f681fdeeea21a3e67a3d1cb323b8407f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005132979252 5.6159926 2970.47 Increase Custody Allowance | |
0xc6c02352e63767bd7451387cbf859beaa47d16189c2e2689984d68f1cfd4bd30 14435128 1647939012 2022-03-22 08:50:12 0x5a59938832e5a6cf505b1934cc7f32e29ee326d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002283413305 2.498282497 2970.47 Deposit | |
0x4707eba175ec1586fe4b78a97fb952e1c5f6f69887a5dde0be08a42c7d688dfd 14435184 1647939869 2022-03-22 09:04:29 0x5a59938832e5a6cf505b1934cc7f32e29ee326d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00257936 2.822077776 2970.47 Withdraw Funds | |
0xd12e9a0222f96a4086ce62378966fafd893d5cc9128746546843ed404ad07857 14435184 1647939869 2022-03-22 09:04:29 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00189536 2.073713376 2970.47 Withdraw Funds | |
0xeca0feae0316cc81a529cc8e1d6ada8c0586149eb31883e98c660e3426f204da 14435331 1647941643 2022-03-22 09:34:03 0x5a59938832e5a6cf505b1934cc7f32e29ee326d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00235674596 2.578515755 2970.47 Deposit | |
0xf1f49a5d83ef2ce7b5cd49e99ed1f7611f2cb58e510dddb7acacd4bc17b0e8c9 14435966 1647949976 2022-03-22 11:52:56 0xa8f49d90b24d6a007e5f47bf86d122a9f3211734 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002135136967 2.336053356 2970.47 Deposit | |
0x6f824d4c13e0bf4b10fab97318aeeab4bf726565649cf293b682eb37c923180d 14435971 1647950043 2022-03-22 11:54:03 0xa8f49d90b24d6a007e5f47bf86d122a9f3211734 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000773025481 0.8457671787 2970.47 Increase Custody Allowance | |
0x0436e19888a2f6ef2f840af69e926d10c9ee0bbf2b6c619fcaca7b2fcfe0c003 14436496 1647957503 2022-03-22 13:58:23 0x9a568bfeb8cb19e4bafcb57ee69498d57d9591ca 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004490821982 4.91340833 2970.47 Deposit | |
0x1fc8a0f0e83e4742b623d24ab4589ca71ab46126be99ea269da2570c00f4f664 14436501 1647957545 2022-03-22 13:59:05 0x9a568bfeb8cb19e4bafcb57ee69498d57d9591ca 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001484322112 1.623996823 2970.47 Increase Custody Allowance | |
0xd09d719f96f65bfd3fe9b758c156d7e0e095215be6ccafe0879c5583a6ed891e 14436573 1647958653 2022-03-22 14:17:33 0x115d0d8822efc9607c52b04628098b48970b993b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007885561295 8.627592612 2970.47 Deposit | |
0x45f41216f5ab4b540d2f9746c199d8c96b1db500fc4bcde5b95844758c479c3f 14436576 1647958735 2022-03-22 14:18:55 0x115d0d8822efc9607c52b04628098b48970b993b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00421766532 4.614547627 2970.47 Increase Custody Allowance | |
0x8b23d239cc4c2fb6a587ce46c94c23dc0d797134008db68c51f2a56747db2267 14436852 1647962668 2022-03-22 15:24:28 0x11f1135c6ce5d375d4e621d43c40958090511d75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008007370227 8.760863766 2970.47 Deposit | |
0xa7c01fef269921574e5246d25fd662d1e502d24b8ecd05ab5f86b62fcc2e2e51 14436871 1647962880 2022-03-22 15:28:00 0x11f1135c6ce5d375d4e621d43c40958090511d75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002470410829 2.702876488 2970.47 Increase Custody Allowance | |
0xd3d2ed6d0ebbf17175ea7462fe34921f7fa364893df9deac0dda7d46cb8c993e 14437368 1647968980 2022-03-22 17:09:40 0x182d2d31ce99ecdb33a2d603b0916fb431707a40 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01091305428 11.93997269 2970.47 Deposit | |
0x2b62121ddb39f798242a214a3e001570d9e93ff7d030c05b6cdbdc9b317f9b84 14437378 1647969116 2022-03-22 17:11:56 0x182d2d31ce99ecdb33a2d603b0916fb431707a40 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004196239047 4.591105141 2970.47 Increase Custody Allowance | |
0xad72fbeac8ee6a002a8a40a076ed98c06d7b95468e7af7181fb9e963577ed293 14437827 1647975142 2022-03-22 18:52:22 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00476812814 5.216808998 2970.47 Withdraw Funds | |
0x1f6e7cd7240b070fbeaea92cefeae15616c7c81be3241c979c26fdba7daed5b3 14438466 1647983403 2022-03-22 21:10:03 0xaec54494c63ab9180fa2942230cba25cac7d1bed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008711476377 9.531226305 2970.47 Deposit | |
0x092f84292050375b5356ad12e00a9b2fa8e1e64cfa8ab35fa2dbabfa73ff49b9 14438476 1647983486 2022-03-22 21:11:26 0xaec54494c63ab9180fa2942230cba25cac7d1bed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003339202775 3.653421757 2970.47 Increase Custody Allowance | |
0xed7d9a5ae0b5b82c418776fd6b80f19fbf0569d606d452514847ed0c378fb77a 14438509 1647983962 2022-03-22 21:19:22 0xcef64d127c94544e312be9dcacaf83fe42154072 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008253952 9.030648883 2970.47 Withdraw Funds | |
0x75d776cf90f8ffbbbd8216c050bfd77ef1893ef4917f07657ce9337727aec286 14439067 1647991339 2022-03-22 23:22:19 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003527549524 3.859491934 2970.47 Withdraw Funds | |
0x6b3381947cf4983223380fef04255719be0add74bb4df8262b19723e2ea69854 14439073 1647991392 2022-03-22 23:23:12 0xa2e759bdb0bf658ed2812ada1ecff0d6ca4f68ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003455580778 3.780750929 2970.47 Withdraw | |
0x7600ec4609e933302320c8165b901d83a723448209e34ba8c8809f740f8c78af 14440307 1648007946 2022-03-23 03:59:06 0x3dfaedfe38c3f3c10596c974bdc9ed92e76d01fb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005811654196 6.358530856 3032.98 Deposit | |
0x9f3f0956f3aa77014d5eab3cd5f5abfef234f77bf671face8d5a0dcaebb48a28 14440311 1648008005 2022-03-23 04:00:05 0x3dfaedfe38c3f3c10596c974bdc9ed92e76d01fb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002549543517 2.789455562 3032.98 Increase Custody Allowance | |
0x3b4fb3d225c727a046ac5bb7f5068b587193fc9a4631f955b6b396d93c38c7b7 14440754 1648013993 2022-03-23 05:39:53 0x19282e37b5319727501e9577d79dbcdf43803883 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003714167887 4.063671085 3032.98 Withdraw | |
0x1ff93f45704b8e5282a2ac40139f0aa9682ce72b7a7562b8d036597f8cb9b6f2 14441212 1648020212 2022-03-23 07:23:32 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002571247805 2.813202224 3032.98 Deposit | |
0xaf2f330f8e2c590f5c128e5d3f5755e95d83695699460e5de79a3382e3a39d1e 14441340 1648022281 2022-03-23 07:58:01 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001082526758 1.184392526 3032.98 Increase Custody Allowance | |
0x80708981dbf29a3d6af564b622b669e963a98952451273c1a9efeb51b62defd2 14441979 1648030906 2022-03-23 10:21:46 0x1d98502c64034c04c9ab4036b4d72ecf02270d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002682317565 2.934723648 3032.98 Deposit | |
0x33f21d150ceff0a426906967ed53dfdd19fbeea3e77e2f215053813bac79e456 14441983 1648030988 2022-03-23 10:23:08 0x1d98502c64034c04c9ab4036b4d72ecf02270d6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001206398857 1.319920989 3032.98 Increase Custody Allowance | |
0x11f14d668e312508dd73b29d7e5637d635cd10f2df17a66f3727608603c33df8 14443141 1648046426 2022-03-23 14:40:26 0xf7fc22bc08dd5b5efe87d2a2bfd06dbccb532201 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003646625884 3.98977338 3032.98 Increase Custody Allowance | |
0x3ac4a5a8a9245cda7b4d5d90804d2cc38329edb48dfa9c895d9d1e4a704b1282 14443314 1648048729 2022-03-23 15:18:49 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00587112108 6.423593574 3032.98 Deposit | |
0xa9286fb668093e50c4faa7b1b2820a6d20d3d18905c5a7cb3df808b0e067f242 14443317 1648048769 2022-03-23 15:19:29 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003622775956 3.963679174 3032.98 Increase Custody Allowance | |
0xb2730b87526dfbc346f5c6926cbe03a8468b32a95fe3ade634c562376bfd1d17 14443478 1648050864 2022-03-23 15:54:24 0x0c928f80a2d132c436cf160e1a27a4a87f49ee4e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008054978229 8.81295168 3032.98 Deposit | |
0x5649685c8a9331f6efb4bf57bb729411dc76775225b71ccb00bd3df25d42cf69 14443481 1648050911 2022-03-23 15:55:11 0x0c928f80a2d132c436cf160e1a27a4a87f49ee4e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003604731635 3.943936882 3032.98 Increase Custody Allowance | |
0x21517afa84085e471f08111fc6e3a1b294bd23c1cf2c166a05b8c39728dd8f41 14444632 1648066086 2022-03-23 20:08:06 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007720694519 8.447211873 3032.98 Withdraw Funds | |
0x23ce99ff8c0d67d44de4faf295cb64aac96982cf38783b3e490e1990873bdefa 14444636 1648066172 2022-03-23 20:09:32 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008711502039 9.531254381 3032.98 Deposit | |
0x0c717c59e135b5582a326904badb39e702e6b2267432491dc84ecf87c30dd6fd 14444640 1648066224 2022-03-23 20:10:24 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002815228831 3.080141864 3032.98 Increase Custody Allowance | |
0x7bae50c66ff2593df63d2401dd767719dc1db6611e676ef234098048af91be4d 14444861 1648069079 2022-03-23 20:57:59 0xfd225193f80f40053fd1a1548bca6cf0e6577bb4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005961865112 6.522876619 3032.98 Deposit | |
0x379616d4c81365e182c0ffc5240e1066cab2054933109d650d554f68106b9979 14444873 1648069191 2022-03-23 20:59:51 0xfd225193f80f40053fd1a1548bca6cf0e6577bb4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002468301351 2.700568508 3032.98 Increase Custody Allowance | |
0x57008ccd07fbff0ce56259d03d5a60073e4a2df90e3bc6c341f005ea1064a4d3 14445108 1648072319 2022-03-23 21:51:59 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00411046876 4.497263871 3032.98 Deposit | |
0x7f8e2a037c78ed94994fdd895ff44f92cff7f8ad5284cfda07bb30da67ecce9a 14445115 1648072384 2022-03-23 21:53:04 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001179896018 1.290924234 3032.98 Increase Custody Allowance | |
0x4276e887b768c9d1151d4aba0c018b4d5589a6bdd41ae7c33f965fe090a5235f 14446145 1648086749 2022-03-24 01:52:29 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00473766265 5.183476705 3112.85 Withdraw Funds | |
0x8068704dfc4983319589eb03deb282f5cf24698cb6917e788d44e233ae6faba7 14446867 1648096423 2022-03-24 04:33:43 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003574091528 3.91041354 3112.85 Withdraw Funds | |
0x0a73fcd3050614d72f4f2a451d1c0b955fee24ac059f82bcc83740dc9befde32 14447409 1648104100 2022-03-24 06:41:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004809845397 5.262451849 3112.85 Claim | |
0x19d3d13f94aca988ccf3d467486e04fbf8f22165a49db425afb4bcebb0e18b49 14447411 1648104121 2022-03-24 06:42:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005298946735 5.797577623 3112.85 Claim | |
0x174feaf160801c7770d123ab03b50bcee56506482bdaca8654f76518894f8bce 14447415 1648104166 2022-03-24 06:42:46 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00666848045 7.295984461 3112.85 Claim | |
0x97cf4cd949e3bbb285e18740178734b2bcd893693af986449b3b67c9ee7ebd71 14447417 1648104232 2022-03-24 06:43:52 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01359581485 14.87518103 3112.85 Fund Loan | |
0x4b4f23ced83cf892f8e591f0dd998d0cfceae538f7382354c66844d0930c6828 14447502 1648105577 2022-03-24 07:06:17 0xf819ae20e48a140ed9bf01493a0b1174e853b937 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004519709062 4.945013684 3112.85 Deposit | |
0x99ee2ba653a79c0ff41384b50b123b8e6f2d391ff8bd2b92d37979b2731c48c9 14447509 1648105660 2022-03-24 07:07:40 0xf819ae20e48a140ed9bf01493a0b1174e853b937 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002230419504 2.440301979 3112.85 Increase Custody Allowance | |
0xabfb4d475e7d00114ab7d122f11b5e845ef0deb42ba6400839c58e9c5b07a342 14448263 1648115687 2022-03-24 09:54:47 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009103479718 9.960117159 3112.85 Deposit | |
0x1b7c6034ea6dd7a96d37b14347ff8bf3bcbbc3ab0ba5c337e991b4809a80d0ec 14448281 1648115864 2022-03-24 09:57:44 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002370707762 2.593791362 3112.85 Increase Custody Allowance | |
0xd68ab5f1636d0ca2e3e39d83adf903e932093cd300e930c226f0245b5945768b 14448602 1648120096 2022-03-24 11:08:16 0xe7fb225efea23bf8b17345f1f3bb941c098efeeb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004394043745 4.807523262 3112.85 Withdraw | |
0xe6c7e55993da2793ee7a005aa9e7be7c21ad917c88a0be001f091893f3e881b7 14450196 1648141022 2022-03-24 16:57:02 0x4c4b17543e24106201b3f7c888918c5a478bdb3b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01127540242 12.33641778 3112.85 Withdraw | |
0x19acce8d963d18a90fdcd8ec343a4c52cd65bdd702d3900e24c32b5354d4b4a3 14450482 1648145117 2022-03-24 18:05:17 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007422725183 8.121203622 3112.85 Deposit | |
0xe842960b89168d10b10f94453ac91cfb6215dbcac76c59655da39ed531f61c86 14450488 1648145161 2022-03-24 18:06:01 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002807264968 3.071428602 3112.85 Increase Custody Allowance | |
0xfdc9432461e360d5022bcd9af28cabd0045f4d2dcb91ae43f0a28ab4158b8df3 14450878 1648150222 2022-03-24 19:30:22 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005055581384 5.531311592 3112.85 Withdraw Funds | |
0xa9d3ce67aee8f200e8300bf45ccd3189fbe939e519c91bf2ab7480778db85225 14452221 1648168302 2022-03-25 00:31:42 0x9a6f0de94cf51e9ffde08977f5340764131e46c6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007708485668 8.433854169 3104.04 Deposit | |
0xf63d56cd45248aabf8a9edc39a60a40c59f337294f2ba3bc1d7ce69cba54cdcc 14452226 1648168393 2022-03-25 00:33:13 0x9a6f0de94cf51e9ffde08977f5340764131e46c6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003677816938 4.023899512 3104.04 Increase Custody Allowance | |
0x79f0b4998c192c0828592f7e488616cf9fb9731c284778e675afb8f2fec1f440 14452740 1648175219 2022-03-25 02:26:59 0x2ea543c417a2152e6cde1cb3e5a3227871208984 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004699099035 5.141284255 3104.04 Deposit | |
0x1b68b66bdc32d9a4dc3c10b54ba26fbe40fdc55d310125862345aa7f3c8282fe 14452742 1648175236 2022-03-25 02:27:16 0x2ea543c417a2152e6cde1cb3e5a3227871208984 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001555168642 1.701510011 3104.04 Increase Custody Allowance | |
0x6186c25fcbce925b558600b4d52ea56ff9cffeb422697d115014fda9291377b4 14453048 1648179377 2022-03-25 03:36:17 0x7702d9af72e914dd619892e626220696e185da44 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004702539572 5.145048545 3104.04 Withdraw | |
0x1a1ae9aff29a28f7c8d85a15dc2d7a9f4a268aaed64ce2f3f101e34e4c124aa6 14453925 1648191267 2022-03-25 06:54:27 0xc6708c7337f981eda06c428bb5b33d93b65a34ac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003696759473 4.04462454 3104.04 Deposit | |
0x1b83c3d20a44a72b5837f272bb80db23fa445dac28ebfbc9b2a1a57e254285b8 14453932 1648191414 2022-03-25 06:56:54 0xc6708c7337f981eda06c428bb5b33d93b65a34ac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002206413215 2.414036699 3104.04 Increase Custody Allowance | |
0xf0391d91f58bdd58e48f8fd37ecf2dde2c6a6b83e2a647d56a8327ad613d2425 14453952 1648191779 2022-03-25 07:02:59 0x2fc2f705110a7f46ce85f701d7217ef1018f01a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002674275021 2.9259243 3104.04 Withdraw Funds | |
0x007f60670cca8eaa63cb7d95e860cac6c9f3ceeb3588afbf8d2208dabedb1292 14454066 1648193267 2022-03-25 07:27:47 0xfae0b73f73f42e3cbd07d5500fa9c45d3c1cc01a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003965402844 4.338547251 3104.04 Deposit | |
0x1e39a32bac7cd63847c8547633a14f02433f27155bca656fe9233aee59517378 14454676 1648201275 2022-03-25 09:41:15 0xfae0b73f73f42e3cbd07d5500fa9c45d3c1cc01a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001981987192 2.168492187 3104.04 Increase Custody Allowance | |
0xe8d257b0e070a9bb91edc628495a6847e126570bc5eedf43fbbeef05cfc86be4 14455050 1648206265 2022-03-25 11:04:25 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002144774919 2.346598239 3104.04 Withdraw Funds | |
0x497789af5a646e9b2b45cdafb9c63acc9b5880378d2e05b2ec2248774cf9f863 14455197 1648208235 2022-03-25 11:37:15 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004163154995 4.55490788 3104.04 Deposit | |
0xd93aa0901ffdef48c91ef11bb97377aa6f3d1b5762757a4560f216f4763a9148 14455201 1648208271 2022-03-25 11:37:51 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002063670855 2.257862282 3104.04 Increase Custody Allowance | |
0x1d75fcc8c5ed19b57a8fb860b4574d4622e922a29dd86c3940ff82cdd25b23bb 14455641 1648214061 2022-03-25 13:14:21 0xb2e083b127986a9342a6918e1d7a8c0053e828a4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003193684 3.494209664 3104.04 Deposit | |
0xd5363920d92874a289d4b236a92f393ee053eee48931016fc9a271c64b8bfba5 14455736 1648215215 2022-03-25 13:33:35 0xb2e083b127986a9342a6918e1d7a8c0053e828a4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009327499634 1.020521735 3104.04 Increase Custody Allowance | |
0xe69df2fb307a9b8b997ba477e35ddba9269d8453d3b2b8aab0664a037598c900 14456249 1648222012 2022-03-25 15:26:52 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007604263596 8.3198248 3104.04 Deposit | |
0xb5fd919070844a43818bad88e15537b9eab700363fd07114cbc949b4e3e0783c 14456250 1648222018 2022-03-25 15:26:58 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002549627146 2.78954706 3104.04 Increase Custody Allowance | |
0xab8ce0977aee9c50c623867c19ae7276c44237b0054df2afa46a0099aed2fe0c 14456361 1648223575 2022-03-25 15:52:55 0xc3c14f31c8db2417d1695fa6c8bebe8f2804677e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002237152513 2.447668564 3104.04 Intend To Withdraw | |
0xb054af8d1dff4b5a23c7c3931eb751756a817d6b093e29731e6e59ee1f0d1548 14457574 1648240428 2022-03-25 20:33:48 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005132274063 5.615221053 3104.04 Withdraw Funds | |
0xf6a7791e781879772584d973c43881fb34c043a993ab342e741ed408b24602d3 14459743 1648269287 2022-03-26 04:34:47 0x3631401a11ba7004d1311e24d177b05ece39b4b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001051143367 1.150055957 3146.36 Intend To Withdraw | |
0xbf2046fe7aefca027fbf2ebe3c1c75b14ef8b46d8de5c309dc168706eb655c07 14461213 1648289420 2022-03-26 10:10:20 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002598458734 2.842973701 3146.36 Withdraw Funds | |
0x9bb90534eefaf73897482a23eb0d12cfd9448cbc16084665ef3efd47fe9773ff 14461222 1648289493 2022-03-26 10:11:33 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002353464151 2.574925127 3146.36 Deposit | |
0x385d40b2f0d28d040d773f360671f2eb6b72c58a0e6c38f7c8542439867d5dec 14461239 1648289710 2022-03-26 10:15:10 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008164347619 0.893261273 3146.36 Increase Custody Allowance | |
0xa51fafae61f85bd20d1636f5b9a9f2c428a6bc0af6922ec991a15b5d91da2fb4 14461265 1648290048 2022-03-26 10:20:48 0x58d3d0aac31b61471fb38676556569f46b3519d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0021031184 2.301021841 3146.36 Withdraw Funds | |
0x3b802c47c9723108b0c0ba94301ddeb1fdc293ffa3869d0fbefe84b7964a1fd2 14461316 1648290716 2022-03-26 10:31:56 0x9a8a9958ac1b70c49cce9693ccb0230f13f63505 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001119903838 1.225286789 3146.36 Error(0) Reverted Transfer | |
0x6ca291d0549915c9a487e348f046da31fa42e0a107de99522470b07e487c1ee8 14461546 1648293881 2022-03-26 11:24:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001142617764 1.250138096 3146.36 Set Liquidity Cap | |
0x7a91dc5f530bea8e14fb384bc3d4bb579561277c53041540890a004f995caa9b 14461552 1648293934 2022-03-26 11:25:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005211187764 5.701560532 3146.36 Claim | |
0x7929a920b303409d72beebf2bfcaced841e65901e5c3a724e0ce116a64b870eb 14462330 1648304520 2022-03-26 14:22:00 0x56871442f1c717bef8ad1b315c3e5df811a2e7f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002733642783 2.990878569 3146.36 Deposit | |
0xf24029c8f78fe212aeee12c461e3218d8ffa6ff2816cac77f62b0f73b9875f8a 14462339 1648304712 2022-03-26 14:25:12 0x56871442f1c717bef8ad1b315c3e5df811a2e7f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001179102438 1.290055977 3146.36 Increase Custody Allowance | |
0x6d72c96d54011a4cda317ebe1c748f762bb1c53cf1c2eae028ae59c4294a5729 14462890 1648311806 2022-03-26 16:23:26 0xa5b42880846634a466dd9a56edfc489fbe435efe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005652549787 6.184454722 3146.36 Withdraw | |
0x579d11614d97b2180044e2b62c5595162c53ce3a518cb8c53da1f8a1d4a437a4 14463942 1648326410 2022-03-26 20:26:50 0xd711f7e1adcea92bbf0b374c229122a9b6d611b6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001894352243 2.072610789 3146.36 Intend To Withdraw | |
0x1f6e0d119ae17b402e55f0cffb707dab3a70331cd3477366a41ac99a5359c139 14466550 1648361637 2022-03-27 06:13:57 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002477910721 2.71108212 3296.46 Withdraw Funds | |
0xd190282e6611557646d25ca3d0dbf9244fe688e7a1748bfa902ed17eb722446d 14466742 1648364288 2022-03-27 06:58:08 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001819118322 1.990297356 3296.46 Increase Custody Allowance | |
0x13b3f5aec30ab01594ba2645286ed15276fbb1bde6a7f94dea08476d3851caf3 14467296 1648371590 2022-03-27 08:59:50 0xc104f44c5e87bc7f75e4c17f60d18276fcc3a943 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002537236237 2.775990167 3296.46 Deposit | |
0xfd7b0a8f07cad83bc6e4d935431a4478ac9dac262fec5c131382d984ca25dc22 14467300 1648371655 2022-03-27 09:00:55 0xc104f44c5e87bc7f75e4c17f60d18276fcc3a943 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001300668952 1.4230619 3296.46 Increase Custody Allowance | |
0x395bce94e366f641125d5ccd7cd0ee6dc111990807f51ea518f5d8cb22a416b3 14467423 1648373461 2022-03-27 09:31:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003807198921 4.165456339 3296.46 Claim | |
0x7c7cd68b15dc48d0b0dbfd96a0ae4f18c48a8f9051a37474ca1948caee67a778 14467426 1648373540 2022-03-27 09:32:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011482381 12.56287306 3296.46 Fund Loan | |
0xd31b55a3a407054e41dc21bd912b646d54d3e2178acfbb69f7434cb536f10950 14468163 1648383108 2022-03-27 12:11:48 0xed44ceb196ea8d15654d677a3b49fee3b6724066 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002970517523 3.250043222 3296.46 Deposit | |
0x6c1b02a11c2a5ea964954688f7a72fe3f77c0dc8eecd1f583361b0a2356ee2e1 14468166 1648383187 2022-03-27 12:13:07 0xed44ceb196ea8d15654d677a3b49fee3b6724066 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001713508651 1.874749815 3296.46 Increase Custody Allowance | |
0x120d45d2c5fe8859f3ae4283010bd5f8877fe27e8d60e0a2f292ef607ab6b95f 14468170 1648383239 2022-03-27 12:13:59 0x1f02f8f9c2d0430d9f0475bc7ebfbbcc6c84dd75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00335875788 3.674816996 3296.46 Deposit | |
0xfac9f68bd8afed06ae2f640ee8133a33b6d6150bdbad8d8662a251c8711b72b5 14468189 1648383502 2022-03-27 12:18:22 0x1f02f8f9c2d0430d9f0475bc7ebfbbcc6c84dd75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001611857394 1.763533174 3296.46 Increase Custody Allowance | |
0x6d9d1a59cee129c9ab958aae122dd78b9666c354295a0dcb78a9518dc485ed6a 14468536 1648388290 2022-03-27 13:38:10 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002384637602 2.609032001 3296.46 Withdraw Funds | |
0x6c5e77231408470166a092a9c01420ee8c9a2d7d1875c04a8b191de5de5ccffe 14468555 1648388548 2022-03-27 13:42:28 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003592160314 3.9301826 3296.46 Deposit | |
0x48ab86c321311708154bc530f43ceccd087d6b1411c1dcae69723adb6e98c2ac 14468561 1648388585 2022-03-27 13:43:05 0x343b4f05481d70e4fc1f2be9218b1eb2f755d200 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008388654602 0.9178027001 3296.46 Increase Custody Allowance | |
0xfd7eb693a773083e3f94faf2fc64195002b270ba1cacb52b48eb8bc7c8a0b07a 14468756 1648391045 2022-03-27 14:24:05 0xb852084e0a989ce90359c2684195d66b0a243280 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004467370224 4.887749762 3296.46 Deposit | |
0x0d438726c2e76d15bf805052cc96e41b55c4f96347b88d58472fccd4f00b0682 14468761 1648391089 2022-03-27 14:24:49 0xb852084e0a989ce90359c2684195d66b0a243280 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00136619959 1.494758971 3296.46 Increase Custody Allowance | |
0x36040516f829a8871dee21b9f9c444ba2a8da47574ce75062d21589638a26b8c 14468888 1648392602 2022-03-27 14:50:02 0xe902c9339e0377cb22c7bb22bb878fe32b63c20c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00395456593 4.326690584 3296.46 Deposit | |
0x944474b157025b66fd779489399644baa04d7ce36410270be787b7317c2124f7 14469406 1648399418 2022-03-27 16:43:38 0x131c1eeac6ce18033be0c4c06350114ba9a94983 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007820073637 8.555942566 3296.46 Deposit | |
0xceec2e3b53ebcf5fc6de851b1820a7cef68ba2f3bbcaaa33f5f10838a3e00413 14469413 1648399466 2022-03-27 16:44:26 0x131c1eeac6ce18033be0c4c06350114ba9a94983 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002612525285 2.858363915 3296.46 Increase Custody Allowance | |
0x00ff88fc99e26b51f86bc09818757b242e6b176b856cc48e21ca826ed1ba6d17 14471051 1648421966 2022-03-27 22:59:26 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0043064982 4.711739681 3296.46 Withdraw Funds | |
0x4bb6e143327371e0822c6b26956b8c3ef4632f6c1710d3a7cdf27a000351ca18 14471358 1648426224 2022-03-28 00:10:24 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007147180453 7.819730134 3334.29 Withdraw | |
0x32c89d9fa58f7de87dc696f1e6536b3c40e6d36accbf5dd288654bec558ca6db 14471366 1648426305 2022-03-28 00:11:45 0xd6897f53b7120054be1afd8c47d68740fcadab7d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00546534163 5.979630278 3334.29 Withdraw | |
0xde6f055a3cd86eb1c2453f2b3b3002be83aa071062a1046fdc84f45609194dd6 14473498 1648454335 2022-03-28 07:58:55 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00189536 2.073713376 3334.29 Withdraw Funds | |
0x3892068ebc3ac6c56584c15a554639642ac3f7a42af728070c08e8706cc15f9f 14476334 1648492930 2022-03-28 18:42:10 0x9a568bfeb8cb19e4bafcb57ee69498d57d9591ca 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009663849479 10.57321772 3334.29 Deposit | |
0x144eb0a5d82df2a913ad70ec1256921d834fb367e214d586c9142fbc91b312c7 14476348 1648493143 2022-03-28 18:45:43 0x9a568bfeb8cb19e4bafcb57ee69498d57d9591ca 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003593895687 3.932081271 3334.29 Increase Custody Allowance | |
0x9174641530339863e4d9c1ff4e5363dfdc8b98b9a9fc17ef55267ae28a0a47b2 14477116 1648503213 2022-03-28 21:33:33 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005613096139 6.141288485 3334.29 Withdraw Funds | |
0xaa5e41d05adb4e2f34e77f934a1b506f9c5b90ce3cbd3f96b2acf7e8d72eab3e 14478306 1648519370 2022-03-29 02:02:50 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004534832801 4.961560568 3402.62 Withdraw Funds | |
0xdaebb095a3f8d98647d931ceb4b66fe56fb188262d0adbd8253fcde6681dcb78 14478874 1648526946 2022-03-29 04:09:06 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004598328168 5.031030848 3402.62 Deposit | |
0x44018cf711cce2019887c0213dbb3cd31fda9b9cf7a47ef27ab5b9086cfc8b01 14478878 1648526993 2022-03-29 04:09:53 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001397540076 1.529048597 3402.62 Increase Custody Allowance | |
0x175b7803f1d0d7698dd65abd01302f191d98785266648fb8f3ef4944d47169bc 14478991 1648528546 2022-03-29 04:35:46 0x311f17a7d0e8b062bb6496c929cfdada8ff98074 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004796266983 5.247595706 3402.62 Deposit | |
0x186e502511338c85fa97e1640b56b67b336e41517ab640c4a673a162ee0bdee1 14478994 1648528585 2022-03-29 04:36:25 0x311f17a7d0e8b062bb6496c929cfdada8ff98074 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002269526883 2.483089362 3402.62 Increase Custody Allowance | |
0x1793b45020bde5a77ef98a14973bb33ae79162239d40b85664c2af3b0290222e 14479563 1648536472 2022-03-29 06:47:52 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002832753971 3.09931612 3402.62 Withdraw Funds | |
0xc5a912598b225faf9a348586f4acf6de52fe525e7ff37e8fe862e9fd15d1a23c 14480578 1648549977 2022-03-29 10:32:57 0xff0d3d86db276aa5f554c8fe309aeb15f075cadb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006371626125 6.971196143 3402.62 Deposit | |
0xbdb55984e7c18744c1d3fa8b033f96903ff8c3d8bfee1b079fa5e30967b29a71 14480582 1648550034 2022-03-29 10:33:54 0xff0d3d86db276aa5f554c8fe309aeb15f075cadb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003292163427 3.601956006 3402.62 Increase Custody Allowance | |
0xbde139079549384240e9d220d496553eb3299f13e82b324f3c7bbd673aa1e3b7 14481395 1648560982 2022-03-29 13:36:22 0xe14d881747f8c136959e1e8eb4b18c4c2a7ffd6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006164940366 6.745061255 3402.62 Deposit | |
0xc12c9d9d60dc118e60741a17abb2c778f2148a72ea25036193264d0cd0820d49 14481470 1648561896 2022-03-29 13:51:36 0xe14d881747f8c136959e1e8eb4b18c4c2a7ffd6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002805181183 3.069148732 3402.62 Increase Custody Allowance | |
0x8ddbd919dee01d0ba660cee422c2afbfc68ea9d6a6dc619533f8f2e648750977 14481697 1648564991 2022-03-29 14:43:11 0xd0464a6a6e75dd3a92c5d85b343f053f81985759 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007581337043 8.294740859 3402.62 Deposit | |
0x52e62b5afe3c9fae2639b1026f3c115928e6092d2870f5ec09518e7d4279f7e9 14481719 1648565320 2022-03-29 14:48:40 0xd0464a6a6e75dd3a92c5d85b343f053f81985759 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00417612593 4.569099379 3402.62 Increase Custody Allowance | |
0xf7680bdb7432057f196d854333f9f7ba87ed61aae48528d135a3b29dd5d6d955 14482016 1648569235 2022-03-29 15:53:55 0x72583ae53ba95478d3893b0a99d7c081bdfcfd65 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008380401515 9.168997298 3402.62 Deposit | |
0xe686622196ab157bfde1ffe8a54e570e650441bfc7b972905bb5bd970a865f7e 14482023 1648569356 2022-03-29 15:55:56 0x72583ae53ba95478d3893b0a99d7c081bdfcfd65 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003988966911 4.364328698 3402.62 Increase Custody Allowance | |
0x50c80142bc919075bb3b454987b30370a55ca13fb7325d5ff49f437ad2b086dd 14482168 1648571340 2022-03-29 16:29:00 0x449052c3bce914d324bbfe911bf508b45a98ee4d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011515528 12.59913918 3402.62 Deposit | |
0xa957f9dda715d4fcfce39ecc3ee1b1a0783f0961fba1af0287f09997c7e1126b 14482206 1648571694 2022-03-29 16:34:54 0x449052c3bce914d324bbfe911bf508b45a98ee4d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002961582 3.240266866 3402.62 Increase Custody Allowance | |
0x41b1c62d706ee549344876d79022312b728f086710958cd0cd4e1f85c26309b6 14483416 1648587681 2022-03-29 21:01:21 0x4452700f01b6863dec653e3183c6c951020bc666 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007524919163 8.233014056 3402.62 Deposit | |
0x6b35290f6f9aad291f452a39ee6aba5261c57c294c54dd257daa9039f1d0c4f3 14483473 1648588438 2022-03-29 21:13:58 0x4452700f01b6863dec653e3183c6c951020bc666 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00435633402 4.766265051 3402.62 Increase Custody Allowance | |
0x403c03caf01c1f42a53698e857ba116d906469ec3c1f4038aa937a1737993fc1 14483543 1648589310 2022-03-29 21:28:30 0x5ae36d7acd459302876b2d1c312d5c2b0507b794 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003938048718 4.308619103 3402.62 Withdraw Funds | |
0x480d6962fe64a1a3472f18e2b363a8f5cd4ad5aec7cdc0275d04320017cccfcd 14483891 1648593892 2022-03-29 22:44:52 0x5ae36d7acd459302876b2d1c312d5c2b0507b794 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005206922831 5.696894269 3402.62 Deposit | |
0xff7a763d7b79dcfee7fab6ebfa9c42c42e3a07ef5abc3c54549eeb6bae5506c3 14483893 1648593938 2022-03-29 22:45:38 0x5ae36d7acd459302876b2d1c312d5c2b0507b794 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002084058183 2.280168058 3402.62 Increase Custody Allowance | |
0x758a0a4a58df6745aa8fe4014a545c71c03f4ca901a337656a824d583fb907e4 14483909 1648594138 2022-03-29 22:48:58 0xf0f5c8fae4d28bbdfe218aea5bd13bc8b61f94b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00678590535 7.424459044 3402.62 Deposit | |
0x980f99945babc6fefb3dafe6f1b5f5b1c22cc0dd34055d01e2e07e2374ceb195 14483912 1648594164 2022-03-29 22:49:24 0xf0f5c8fae4d28bbdfe218aea5bd13bc8b61f94b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003058944914 3.346791631 3402.62 Increase Custody Allowance | |
0x99d0c9a7273a129da7cb4432fa9f50af3754daeb6feae58ccea1a26d7bb65512 14484067 1648596290 2022-03-29 23:24:50 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006610670726 7.232734841 3402.62 Deposit | |
0xf169b000fedf4c9649b14c88930623d296570022b9ebf6de736753c7792ee5e1 14484071 1648596335 2022-03-29 23:25:35 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002519690914 2.756793829 3402.62 Increase Custody Allowance | |
0x0c0b71760a049e8bad903fc0564d59a9f19e39e46ace912f1d9c3a36fd5fb8c6 14484736 1648605380 2022-03-30 01:56:20 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005877136921 6.430175505 3385.11 Withdraw Funds | |
0xedea3c2e79a3e2441f62c744b6d269d44549a178a1cfe8f08bd68911afe605bc 14485007 1648608741 2022-03-30 02:52:21 0xe14d881747f8c136959e1e8eb4b18c4c2a7ffd6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00446160353 4.881440423 3385.11 Deposit | |
0x63dfe9b377f1bfafabcc1b483e88f50c27e91d4afe708049d71348629ef02b2d 14485017 1648608891 2022-03-30 02:54:51 0xe14d881747f8c136959e1e8eb4b18c4c2a7ffd6e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001724461559 1.886733392 3385.11 Increase Custody Allowance | |
0xee32ddfb2fa92cf09bf4c6d507a006bc88e768830fb3cc209b0963c7c2b8c161 14485169 1648610925 2022-03-30 03:28:45 0xb54228c2041dccd83a0613cbfce4fc3a779e2268 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005454341659 5.967595209 3385.11 Deposit | |
0xe60b01c54a47251845c9bd0023744a6a756a5d28c0d9a636aceb878748c4cbd0 14485171 1648610941 2022-03-30 03:29:01 0xb54228c2041dccd83a0613cbfce4fc3a779e2268 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002860658452 3.129846412 3385.11 Increase Custody Allowance | |
0x5950c864a625fd8b4e233022b152e52b5348b2901b8d0b13f7c26d0b68cbcc89 14485754 1648618997 2022-03-30 05:43:17 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004355383176 4.765224733 3385.11 Deposit | |
0x43a5f41f88a08be716b56cfdbfd7802b5bf1985c083727e92a2e12f9fba1f7a2 14485767 1648619179 2022-03-30 05:46:19 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00130031644 1.422676217 3385.11 Increase Custody Allowance | |
0xb9e7d30941808bfbe71a3ddb38949a9e5cf052b77803fc16f8d5acfc784490c9 14486125 1648623912 2022-03-30 07:05:12 0x64f704266e647efe2e45bdfa7f090e1570aa5cb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003348097931 3.663153946 3385.11 Deposit | |
0xd7e1651cf0c97355441812a55cde0290b90cc362e97c1ea5597771d5993f81d8 14486138 1648624016 2022-03-30 07:06:56 0x64f704266e647efe2e45bdfa7f090e1570aa5cb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001438524849 1.573890037 3385.11 Increase Custody Allowance | |
0x19c0e248f1b89d624a140b708189f6c981a7df58be8b7112a94d6b48b2bd2118 14486158 1648624349 2022-03-30 07:12:29 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01645167433 17.99977688 3385.11 Fund Loan | |
0x4432226deb210232b977a7560c1e557b1c98ed81a6bc568861d8b6fbaf1c44d7 14486160 1648624387 2022-03-30 07:13:07 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008969247971 9.813254205 3385.11 Claim | |
0xc2ef8ffd3f07908be8d6fa0929f303870e796de3f647b393cfe6c2adddb12cb9 14486163 1648624497 2022-03-30 07:14:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007981163359 8.732190831 3385.11 Claim | |
0xed1af1d7eb51a8b2e9ae71944fd8b26749797f9e8a4b425804bc674df133883a 14486164 1648624505 2022-03-30 07:15:05 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008800522348 9.628651501 3385.11 Claim | |
0xcce3dd87ac42ce051126afff256bb4dec265365ec54c0dc4dcf10115a1849b48 14487074 1648636402 2022-03-30 10:33:22 0x4452700f01b6863dec653e3183c6c951020bc666 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004802962558 5.254921335 3385.11 Deposit | |
0xc45c45e2b167831e38aa29300a6afd014ebd3fcbb66b65651a36e106a314d1c1 14487092 1648636604 2022-03-30 10:36:44 0x4452700f01b6863dec653e3183c6c951020bc666 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001107844259 1.212092404 3385.11 Increase Custody Allowance | |
0x601dd0ae7dfaaba7dd63d103a013c1812bbd3583b60a7e10bcd72cd11c9f6667 14488178 1648651840 2022-03-30 14:50:40 0x62a08f0535f01623890613f6acbedf19591a9ec3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009284118247 10.15775377 3385.11 Deposit | |
0x692e03ba50e04ec7298f29e0ac4e589c9faf68d38451c8f297c2ebcf1f8ff5e2 14488189 1648651963 2022-03-30 14:52:43 0x62a08f0535f01623890613f6acbedf19591a9ec3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003726881901 4.077581488 3385.11 Increase Custody Allowance | |
0xabd181e35bb790ca7aadc28616a5995e487215067314e86ebab4a012b1cfc834 14488476 1648655776 2022-03-30 15:56:16 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005064009743 5.54053306 3385.11 Deposit | |
0x0b172b3a9d3227cd1d6068b2a6e97994c1b9046bc859cc98601bd1057d822ab8 14488603 1648657675 2022-03-30 16:27:55 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003934978686 4.30526018 3385.11 Increase Custody Allowance | |
0x94543452d302ecc8465fdd9539f29eece4c9f924d1a9e8130ff35958201d9a67 14488863 1648661043 2022-03-30 17:24:03 0x76a059b6bffa9ef53d7f10c3acdb6ae4f7fd10d3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02100888531 22.98582142 3385.11 Deposit | |
0xc15a1cd4d605ecb01d0e2e1083422c8ed389c23fe90fd9e79f2cac0f0641659d 14489223 1648665906 2022-03-30 18:45:06 0xb0b57738f1a0752d860aa39c07955bc960284aa8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01013393772 11.08754126 3385.11 Deposit | |
0x605e614543415ff5148c5d6a15427f9f870ad04c7824c02c1f185df73a3c33e5 14489228 1648665972 2022-03-30 18:46:12 0xb0b57738f1a0752d860aa39c07955bc960284aa8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005289743261 5.787508102 3385.11 Increase Custody Allowance | |
0xee3636288645652093587759a5fc4564ab02a8932d33a810c7fd2ce6627ca50e 14489348 1648667593 2022-03-30 19:13:13 0xab29b629bc5d77b98825d13b0b5389d4d0fddbb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02665551305 29.16379683 3385.11 Deposit | |
0x8e7723727b3d26781b193903f5d702abe32440c744940e6b4856c79032f9cd46 14489350 1648667656 2022-03-30 19:14:16 0xab29b629bc5d77b98825d13b0b5389d4d0fddbb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01357969091 14.85753983 3385.11 Increase Custody Allowance | |
0xcc1ec7e3a7199b4a74ce951b3adc5a40bf7f44f8ee613edd666fd8274e8e898f 14489845 1648674295 2022-03-30 21:04:55 0x7d96a6f41fd31c7624f7069415be58b5e3576d34 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002119543551 2.318992599 3385.11 Intend To Withdraw | |
0xfb533fe028b27f9ad3da4fbd1b0d515fb348b05231bf06624e869737dd330f91 14490051 1648677185 2022-03-30 21:53:05 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002483401325 2.71708939 3385.11 Intend To Withdraw | |
0xea579b82fd647e54cda0c53ede05a7d35a3e3145ef5c88df3abaaead430cd600 14490057 1648677247 2022-03-30 21:54:07 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003797421321 4.154758668 3385.11 Increase Custody Allowance | |
0x78816bb4d2aa53743ba0d3d43eb8e99b931491c0ba4c52471be069b2d63bb6b6 14490833 1648687765 2022-03-31 00:49:25 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004453124227 4.872163216 3282.78 Withdraw Funds | |
0x3f981159c0887b1e5cf9b93af870ae55c115a61f2e92304a0bc9c0e018f089e8 14490897 1648688762 2022-03-31 01:06:02 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006731717503 7.36517212 3282.78 Deposit | |
0x46dcdb15ffbe9fad846e3e7f3761b2c96213e2ec8bdb505413b646088de16781 14490900 1648688787 2022-03-31 01:06:27 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002122474609 2.32219947 3282.78 Increase Custody Allowance | |
0x59547d56667fec1199867f08913463f1f6da68236357c593254def339d2e643c 14491490 1648696411 2022-03-31 03:13:31 0xb079f40dd951d842f688275100524c09bef9b4e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005384461614 5.891139452 3282.78 Withdraw Funds | |
0xa0983cbcb9e2520bb5f52ff90f0c20cb534cd0e48c662e045ab2a626373f8a16 14491496 1648696478 2022-03-31 03:14:38 0xb079f40dd951d842f688275100524c09bef9b4e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001716442085 1.877959285 3282.78 Intend To Withdraw | |
0x1dae47ca87c5cb75353374f41c80da0709088422b97101b2781459c6368edfbc 14491652 1648698762 2022-03-31 03:52:42 0x64f704266e647efe2e45bdfa7f090e1570aa5cb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005318038481 5.818465902 3282.78 Deposit | |
0xbe559253a1867bb772459fa6642f87c425bc9bac4a13697d3a34289187fd7319 14491662 1648698838 2022-03-31 03:53:58 0x64f704266e647efe2e45bdfa7f090e1570aa5cb0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001353815354 1.481209379 3282.78 Increase Custody Allowance | |
0x52e951c8b87f8633208786da9c5c27f7a047aa76df4032406c133483696ca3b7 14492213 1648706768 2022-03-31 06:06:08 0xf9c92b0f0d578b92c00d4af28d3d3b1cd1b069e9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006820019964 7.461783843 3282.78 Deposit | |
0x25fe89b3dd5ae0a2453662073d35de90987423ef666122a5feb0b25e9aec1c7c 14492306 1648707832 2022-03-31 06:23:52 0xf9c92b0f0d578b92c00d4af28d3d3b1cd1b069e9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002218629196 2.427402204 3282.78 Increase Custody Allowance | |
0xa44cae869a53089e937222d4e36146bd68e5491a9c7800e81e0f104fc0cb1bec 14492561 1648711398 2022-03-31 07:23:18 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007468669952 8.171471794 3282.78 Claim | |
0xf3de3d244c0604f65adb226bb0cb4cf68dc897a0270cbdfb0131961eac625dec 14492567 1648711498 2022-03-31 07:24:58 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009333229124 10.21148598 3282.78 Claim | |
0x5a11a9933b0c1a3759ec40230d45d06087087205fa471888fde88dd3cb96967d 14492572 1648711534 2022-03-31 07:25:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008219769318 8.993249611 3282.78 Claim | |
0x3622b6870435a795ce847e9ad3479825f57eac1ca62c9ccdcc3ab140f159f36a 14492576 1648711555 2022-03-31 07:25:55 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005600329809 6.127320844 3282.78 Claim | |
0x6b4ba4bbf341a40cc0316c7af1657770fc6df2932960d8850cd99faf030b5386 14492776 1648714244 2022-03-31 08:10:44 0x6fbc7865c0a1ee4752ec0d1e563c2cab61c98f5a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005392038327 5.899429134 3282.78 Deposit | |
0x2234706bb0b58c5d24cd3b7a5caf26a379be09c32ffa646863b42b311444c3d0 14492784 1648714403 2022-03-31 08:13:23 0x6fbc7865c0a1ee4752ec0d1e563c2cab61c98f5a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00295983811 3.238358877 3282.78 Increase Custody Allowance | |
0x11e5e8bfddbf74efe3f337f659fe4b4b42fce0cab285d8dc40c8b5c9500c4c1c 14492968 1648716688 2022-03-31 08:51:28 0x1d45da02c4e3a8bf8231d00a468b785a27b6a632 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008816499786 9.646132416 3282.78 Deposit | |
0x08cf640c390e1563665581a8437e05fd4ecea89b3a2d37ba2123a4b7a0f55d2a 14493027 1648717470 2022-03-31 09:04:30 0x1d45da02c4e3a8bf8231d00a468b785a27b6a632 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002763356941 3.023388829 3282.78 Increase Custody Allowance | |
0xa2d5d54e1a423dccd193c8c711611acb9a2ecf01279c53acd05a6107e70782b6 14493206 1648719811 2022-03-31 09:43:31 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004126976 4.515324442 3282.78 Withdraw Funds | |
0x99fe961024be7bd1339ea9fd80cfbbefe834bc8481962bed31dc45b15f0857e7 14493461 1648723137 2022-03-31 10:38:57 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002671734475 2.923144689 3282.78 Withdraw Funds | |
0xb2f970aa09dbf0a0156a5bfe4cd1a74d64d2756a9a78e76839f20dc7945ce78f 14493480 1648723360 2022-03-31 10:42:40 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003489437649 3.817793731 3282.78 Deposit | |
0x4974581c0c442b01f97c42ca52daa9211e1b58d5bb9c29315b40d7f2d786d8f0 14493486 1648723447 2022-03-31 10:44:07 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001303857757 1.426550772 3282.78 Increase Custody Allowance | |
0xd6707fc89481671e8281aede5f6ccbccbc07d9e21c97a3eb6af2bb8af166e52c 14493547 1648724328 2022-03-31 10:58:48 0x115d0d8822efc9607c52b04628098b48970b993b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004419904189 4.835817174 3282.78 Deposit | |
0x19eb9c13ad470f5897ae176af1955a20e5b7f080bfe37e9e641b1492505535e1 14493550 1648724408 2022-03-31 11:00:08 0x115d0d8822efc9607c52b04628098b48970b993b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001772386523 1.939168095 3282.78 Increase Custody Allowance | |
0x789b71dc1f80aa5a2a8ba582f7e92c2d605f849077686e9b794f3496cb6d5937 14493951 1648729785 2022-03-31 12:29:45 0x5713d568cfcde3b1824fa56d1eaa598bb61c3634 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005018201388 5.490414139 3282.78 Withdraw Funds | |
0x15e75f98857462db2d06fc30dae1f092c212db42096e7669972940da9cfc1f7e 14493957 1648729890 2022-03-31 12:31:30 0x90aad7936ce00245aab6ba74b77fcbf149bc28fe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007627993874 8.345788098 3282.78 Deposit | |
0xcbb4579c6eaa2a490a47c2f67d34b28b6c7d6f91ae98d5898441adf402a36dd3 14493962 1648729943 2022-03-31 12:32:23 0x90aad7936ce00245aab6ba74b77fcbf149bc28fe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003060814353 3.348836983 3282.78 Increase Custody Allowance | |
0x1990be65c8a97ba001b1f8f11f1158959cd4257aad03aa71313ea9ce2c566e3e 14494037 1648730914 2022-03-31 12:48:34 0x5713d568cfcde3b1824fa56d1eaa598bb61c3634 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004443135095 4.861234108 3282.78 Deposit | |
0x43ba23cb0a6f7ba95be5f46820e6a759f80c8b92f9835541ce86cb175b1fbdd2 14494149 1648732320 2022-03-31 13:12:00 0x5713d568cfcde3b1824fa56d1eaa598bb61c3634 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001385353442 1.515715201 3282.78 Increase Custody Allowance | |
0xe695399b6ea3c7477e97b718fca4ebe9927244b9908ab79bed706179a7f79f3d 14494653 1648739014 2022-03-31 15:03:34 0xe31f3cca152fbbe45d73ef64de25d81228f8f7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008763604186 9.588259339 3282.78 Deposit | |
0xb0a4b00d1dd12a526d8cf5079592abafdf0445e4129ffcb7ea8e0837382f48bd 14494659 1648739081 2022-03-31 15:04:41 0xe31f3cca152fbbe45d73ef64de25d81228f8f7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002783022204 3.044904594 3282.78 Increase Custody Allowance | |
0x8f717785e2beea02d226e9ce74f3643362e37b8f980d3ee3b26ba78914d619e3 14495453 1648749622 2022-03-31 18:00:22 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006510202 7.122812008 3282.78 Deposit | |
0xd03e123d744c08423b7d5c119135d85ff1b0563190fff623c38b2042ffde51bb 14495467 1648749814 2022-03-31 18:03:34 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002420108 2.647840163 3282.78 Increase Custody Allowance | |
0x6d07459e1cf3b1d463535b60c46348618660a47c5fcd845b8ea9bf47f5e74dc3 14495862 1648755371 2022-03-31 19:36:11 0xb848c56dbec8b9f7147af261880b8d9f1aa05c09 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01392980658 15.24060138 3282.78 Deposit | |
0x47079f1541e6aa8d0384a46e7536c9fcf525b4e8a99ee601734e8e199c88f44d 14495926 1648756195 2022-03-31 19:49:55 0xb848c56dbec8b9f7147af261880b8d9f1aa05c09 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003472846172 3.799640997 3282.78 Increase Custody Allowance | |
0x8178523eb84a1ecde9007a5ae466db220ec4fb4f67450bbc7b4d2095eb02ce51 14495997 1648757311 2022-03-31 20:08:31 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009140306195 10.00040901 3282.78 Withdraw Funds | |
0xd944023855a226ee42d44e6967ec5c6c1182f83069263be5fdb058d939665395 14496623 1648765727 2022-03-31 22:28:47 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01013449054 11.0881461 3282.78 Withdraw | |
0x41754d5d54fef92ad37cd83defcc70067914a8fe1bc8305a2d38b478cbe5e2d1 14496644 1648766049 2022-03-31 22:34:09 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008338910607 9.123602095 3282.78 Deposit | |
0xade144ddd10b2c49226fdde43bbe286da9fc6d06386038b959e7e223130dd73f 14496648 1648766085 2022-03-31 22:34:45 0x5398850a9399da87624874704feaa8a9c6c4089b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004059441379 4.441434813 3282.78 Increase Custody Allowance | |
0x92906b5b3786fcea341752b17d175be5b39cd5129a7cead537178a30e5a13ca1 14497247 1648773991 2022-04-01 00:46:31 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00465256733 5.090373916 3455.72 Withdraw Funds | |
0x0dfc2fd742eaf19e724cc947be0ab6f8e94eaee2d75d5032148221f311d8ac27 14497840 1648781984 2022-04-01 02:59:44 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007570953759 8.283380508 3455.72 Deposit | |
0x4ca63249f1ecd0e48a459b7fb856f8272367427bf5b49c6d08d3720eaed68c68 14497846 1648782034 2022-04-01 03:00:34 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003498716706 3.827945948 3455.72 Increase Custody Allowance | |
0x50ed819b14e220a8d8ac33a704bc2ba1e1dc367ec0868e2f44c15854004ed66e 14498187 1648787048 2022-04-01 04:24:08 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00695529671 7.609790131 3455.72 Deposit | |
0x2ff483c0d7f824f0ba5dec18efe6b6f804eeeef025d22fd12abe86f8fab6df7b 14498191 1648787134 2022-04-01 04:25:34 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003132171732 3.426909092 3455.72 Increase Custody Allowance | |
0x506b0f70ec343306a276b1b713ef259c32800dce15f8254e8eb5da7100e937a5 14499209 1648801031 2022-04-01 08:17:11 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032576 3.317941402 3455.72 Withdraw Funds | |
0xf6bbcd924b487d31d07a8e575bd88d094cc01f65289efe550bbb4185594f4a7a 14499209 1648801031 2022-04-01 08:17:11 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001395424 1.526733398 3455.72 Withdraw Funds | |
0x5a86aa1c0efd5d20fd6e9ec552512e1365f96b9682bfb12cb31f615fab0e2599 14500023 1648811666 2022-04-01 11:14:26 0x5a59938832e5a6cf505b1934cc7f32e29ee326d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001153400787 1.261935801 3455.72 Increase Custody Allowance | |
0x42847bb2c7becdebc21592f148ec87b04bbeffa1c7660ed4c2192ba180bddfae 14500120 1648812928 2022-04-01 11:35:28 0x8d6845e3778a9a888b7e1ce1fc368101073290af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003930688 4.300565741 3455.72 Deposit | |
0x634ba47f9870d44a4733caf2f26a65928e8c847fd0b05513de64f81a70cb72cd 14500146 1648813206 2022-04-01 11:40:06 0x8d6845e3778a9a888b7e1ce1fc368101073290af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001335232 1.460877331 3455.72 Increase Custody Allowance | |
0x5dd7a11b724dd3a40110ef4e34ee692013d37ddc394dbc525447874dd49f1116 14500302 1648815404 2022-04-01 12:16:44 0xdacf1065b12849298dc5b47ece9553094000074f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008878543082 9.714013986 3455.72 Deposit | |
0xa0c5b044ab0b896e90b5bcd6015c1fef740ec9ed28e735d430005769f1ecf126 14500305 1648815452 2022-04-01 12:17:32 0xdacf1065b12849298dc5b47ece9553094000074f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003756609838 4.110106824 3455.72 Increase Custody Allowance | |
0x30bd3a29e98d123eb10499a4856f8e949d83768b92f3bda2153301858a2a099f 14500596 1648819327 2022-04-01 13:22:07 0x2fe5adaa6921d786ce21b94c80a9a79c108d94bf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009478371423 10.37028617 3455.72 Deposit | |
0x5adc008168a35a38e6eddc73dd8cb26dbb472ab231a3d15995421a5a753721f5 14501269 1648828257 2022-04-01 15:50:57 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008713680336 9.533637656 3455.72 Increase Custody Allowance | |
0x8e32d9c548ba71b72cdf37c138b34c0232de5e679a5efa0b0f21370af102d517 14501672 1648833642 2022-04-01 17:20:42 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01559236726 17.05960901 3455.72 Deposit | |
0x68ffd3e989a40364d9927cfce8be1ff0a6ddbcb64704266890b530ec5d3cd005 14501676 1648833671 2022-04-01 17:21:11 0xd7492ae646cb1cd1b57f57fb6dc88446586b1186 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004099004905 4.484721267 3455.72 Increase Custody Allowance | |
0xe2d37cc79e514c78b1229ebf1c90ff28926aa7e2a88ad100dbe48e2b7bf7aa1a 14502129 1648839660 2022-04-01 19:01:00 0x2463557fe4d7dd02a96fdc9a65c638bdb01f8e82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01309980389 14.33249543 3455.72 Deposit | |
0x77782a9809415b37f8b3042c922d8354c6f51d0cd5033651a109ade8b2370b66 14502162 1648840048 2022-04-01 19:07:28 0x2463557fe4d7dd02a96fdc9a65c638bdb01f8e82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005765922827 6.308496165 3455.72 Increase Custody Allowance | |
0x555410c5818a37c6db0ec4a8b2c520539672a81d6846076fbeb9e3e80bf3af38 14502412 1648843437 2022-04-01 20:03:57 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01942847482 21.2566943 3455.72 Withdraw Funds | |
0x10acf67c4185e963f81a56c884ae0021813914317198232e9b13c41d826bfdd2 14502520 1648844956 2022-04-01 20:29:16 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01555214433 17.01560112 3455.72 Deposit | |
0x623262e86231f5e5568499e899be93ae3bb77d0e43ca9b7e4c32573395d22c85 14502583 1648845809 2022-04-01 20:43:29 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032673383 3.318047948 3455.72 Increase Custody Allowance | |
0x8df0e49b891bf58fc145ec912e68dce70177bc4639039c29845b30a138cf432b 14503078 1648852310 2022-04-01 22:31:50 0x9768478aa52ccdc900e3473a5119c8f94016cb48 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00261140505 2.857138265 3455.72 Intend To Withdraw | |
0xcf1f0bb6de33bf4ad64945d6a90527acddb9b8fa9e78e9335029561e337d84ad 14503912 1648863504 2022-04-02 01:38:24 0x1ec9c8b70b7473dd04a82afc5930dd0a34ab3eb9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008292354486 9.072665044 3444.68 Deposit | |
0x336dc75094e9179009b25507ac17ee57234aa99fd23f9e8c8f05dbc7af62fa0f 14503914 1648863600 2022-04-02 01:40:00 0x1ec9c8b70b7473dd04a82afc5930dd0a34ab3eb9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003904029352 4.271398514 3444.68 Increase Custody Allowance | |
0x9700204a55851ee6932d3ecba31b619dc0557ae6618560a83d135b1b5d6f3ebc 14504455 1648871383 2022-04-02 03:49:43 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001475120805 1.613929672 3444.68 Intend To Withdraw | |
0x50076eba4d42780c45ef1b06a854795eb36bb78e7c04ec4c2ea2a9bf5fed7c4b 14506579 1648900269 2022-04-02 11:51:09 0xcef64d127c94544e312be9dcacaf83fe42154072 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001510144 1.65224855 3444.68 Intend To Withdraw | |
0x4dd1b018709348d19b0d1cf6afa78e1244aeb126a2d74726f1259b209913c56e 14507332 1648910506 2022-04-02 14:41:46 0x1ec9c8b70b7473dd04a82afc5930dd0a34ab3eb9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005892630609 6.44712715 3444.68 Deposit | |
0x569613a403c13b009b7af6bc81baf06e062cd9279fd6240a9cda13c62f3f3a38 14507337 1648910581 2022-04-02 14:43:01 0x1ec9c8b70b7473dd04a82afc5930dd0a34ab3eb9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002046189411 2.238735834 3444.68 Increase Custody Allowance | |
0xcb0861496b7af3e1f5feb27c625f74addfbe5c6bef614bd7454c26d2cf1b107f 14507642 1648914840 2022-04-02 15:54:00 0xd239cb8a45e5d10bb2bad4b7d061d751adfb99de 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01056314165 11.55713327 3444.68 Deposit | |
0x569371a5f808afbb3eb3360c3c3c78b72de138e08cadaa6f0f5aea8e8459f525 14507646 1648914876 2022-04-02 15:54:36 0xd239cb8a45e5d10bb2bad4b7d061d751adfb99de 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004363246426 4.773827915 3444.68 Increase Custody Allowance | |
0x7d49667dfb6a50cfc7f27070b8142f06042ab58fc7a55e31db4d0605edf6347d 14509746 1648943090 2022-04-02 23:44:50 0x25b21ea6479ffe2269d53b49cd9c401ac825edf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001298114401 1.420266966 3444.68 Intend To Withdraw | |
0x09f4ae657fbb4e816c3963964144d76cc9d2c0003ba6e260651563d76494bc04 14510301 1648950337 2022-04-03 01:45:37 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0058223316 6.370213004 3522.49 Deposit | |
0x57fc477c98d0e279c62e89d105ad25e6ab329f4f2fecfb721709f483f11d8f43 14510313 1648950476 2022-04-03 01:47:56 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0024374992 2.666867875 3522.49 Increase Custody Allowance | |
0xc51b35539a09ccdeffedb68acae2dc4dfc906fecac99f0cad50d0ac7ac461cd6 14511116 1648960787 2022-04-03 04:39:47 0x3b4235238dd16d69d90cdefa1cc9af606eea4b37 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007261278139 7.944564412 3522.49 Deposit | |
0xa627ee706e7bb3061049310a338843c6ba53c299ace70f99e7f89b9230dd510a 14511123 1648960865 2022-04-03 04:41:05 0x3b4235238dd16d69d90cdefa1cc9af606eea4b37 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003233437423 3.537703885 3522.49 Increase Custody Allowance | |
0xbc087e25df5b7d05000275b65a53897df890f576552e86685101ba127fbea389 14511146 1648961152 2022-04-03 04:45:52 0x2e66420dba7890dfa163d36e99a3e8bf5668c791 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006763350468 7.399781747 3522.49 Deposit | |
0xc5b91872839da740b277f1a5febf4b2514747e2950fd652505d50ed3722c1e04 14511152 1648961259 2022-04-03 04:47:39 0x2e66420dba7890dfa163d36e99a3e8bf5668c791 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003325260172 3.638167155 3522.49 Increase Custody Allowance | |
0x1fa46ba3a29905463c47e3c2d924f386d1051b858315b70904c3ab66b70bc0a2 14511371 1648964121 2022-04-03 05:35:21 0xcfc7e5c3f931080e1f865f117dad0e2dfb504e99 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004288504547 4.692052825 3522.49 Deposit | |
0x9d9937df8a5d368ca9114035e08b8acefb1043d9102d7cdd8fc19f4b06ae8b2b 14511373 1648964164 2022-04-03 05:36:04 0xcfc7e5c3f931080e1f865f117dad0e2dfb504e99 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001826172576 1.998015415 3522.49 Increase Custody Allowance | |
0x4e4967e90ced401b5c55d4b9599fc31fe9368e1ad0a7e1e9fa219e55ef782ae8 14511707 1648968988 2022-04-03 06:56:28 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004113631664 4.500724403 3522.49 Withdraw Funds | |
0xefff0f2e0774eb85146e667f1d802095b2b661d1083254c2784c07b33d80c265 14512328 1648977745 2022-04-03 09:22:25 0xac7c2135f681fdeeea21a3e67a3d1cb323b8407f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003527961984 3.859943207 3522.49 Deposit | |
0xfc4ad3bd4d684d4c39f644ed0e0d15e5381d89519e51c1c1e26a8e8e268ebbed 14512350 1648977940 2022-04-03 09:25:40 0xac7c2135f681fdeeea21a3e67a3d1cb323b8407f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00125214 1.369966374 3522.49 Increase Custody Allowance | |
0xc21c53220559d4fe92a7f8fdbb5808bdf82cabfa88ee79f11ea00470d1958db1 14512985 1648986608 2022-04-03 11:50:08 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003605598081 3.944884861 3522.49 Withdraw Funds | |
0x02ae4ad84ec6e9aa5963dca3770632f17171bfd76cf8c51796b859a859abee99 14513013 1648987135 2022-04-03 11:58:55 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006488148224 7.098682971 3522.49 Deposit | |
0x2b724cfeca1f3843e69d35c6aa7687a756067d3e4e3a83745a45a72eaf0e7578 14513019 1648987225 2022-04-03 12:00:25 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001984032673 2.170730147 3522.49 Increase Custody Allowance | |
0x48f7ffa76b45ac8bb48ac9cd6255a12d36233220f3944552ff1717c4e48f491b 14513110 1648988520 2022-04-03 12:22:00 0xe94629793d7cd090bb863f185c29f4316eee0590 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001708351787 1.86910769 3522.49 Intend To Withdraw | |
0x157f37a733ce345355d530170ac290f696310c133bad8bce8feb929a0285e732 14513254 1648990387 2022-04-03 12:53:07 0xfabacb07863bf43cf9215b0787a924caa438f674 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006577344353 7.196272457 3522.49 Deposit | |
0xa7ca3a01179df42a4a739027ae6f12a4216404b01f043ddcc1f4df79806219dd 14513263 1648990517 2022-04-03 12:55:17 0xfabacb07863bf43cf9215b0787a924caa438f674 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002945284656 3.222435942 3522.49 Increase Custody Allowance | |
0x0a2174cbb210bd788ead3e576e2b915bedcd3c4e29660b61cd132b55b2bc5386 14513988 1649000724 2022-04-03 15:45:24 0xf10b99017a1e5d26b05fa91d923c150e701b05a8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008278631086 9.057650271 3522.49 Withdraw Funds | |
0x891b021b6ab44990684381b6df980e743e1e4294d96cfd60eb14b268d4fcd75d 14514000 1649000855 2022-04-03 15:47:35 0xf10b99017a1e5d26b05fa91d923c150e701b05a8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001762766317 1.928642628 3522.49 Intend To Withdraw | |
0xc583e92ae6ff88e41e4f1a8c693ddd1a0555f4f480624f9ed5e65a87cccd0132 14514658 1649009143 2022-04-03 18:05:43 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004884458767 5.344086337 3522.49 Withdraw Funds | |
0x97ecf160bb900fed17a885a3b7ac6249c76212901453a8769c80899f24fe83bd 14514883 1649012227 2022-04-03 18:57:07 0x5434289767bb094dadbb8d1e5d58b47ca5729063 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009955340961 10.89213855 3522.49 Deposit | |
0xc20629a3cc8539c859aad6bf92c0390354269163bbfd92157c1ae97b1991cd8a 14514888 1649012275 2022-04-03 18:57:55 0x5434289767bb094dadbb8d1e5d58b47ca5729063 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003952598933 4.324538493 3522.49 Increase Custody Allowance | |
0x88bded9e67475c8e192845c5cd982383c9de8c2dc64b59ab14c223a4546d4788 14517519 1649048505 2022-04-04 05:01:45 0x3bfcd762365960738d60ccc3615a24ba99e3be36 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00645610764 7.063627369 3520.15 Withdraw Funds | |
0x2b116b440996b55b9e193459e1eff7767095cef22ccbea047a13d2fb6b3ba7da 14517542 1649048776 2022-04-04 05:06:16 0x37e69ea80c185708d898ff3ec096e1a8d4cf6684 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009246386263 10.11647121 3520.15 Deposit | |
0x2e472ccfda85228baeb0758714197eee936be52d36dabcdea8cc4b549ed99aaf 14517542 1649048776 2022-04-04 05:06:16 0x3bfcd762365960738d60ccc3615a24ba99e3be36 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006267517866 6.857291298 3520.15 Deposit | |
0x11c4e6e7402ab2e1132299e8fba3a55139663f880612ed18364b70a761bab1d6 14517544 1649048808 2022-04-04 05:06:48 0x3bfcd762365960738d60ccc3615a24ba99e3be36 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002245222451 2.456497884 3520.15 Increase Custody Allowance | |
0xf70364446c58d41e11a3666654bd8f6078e0b928da5f6b60380cbca2063847cd 14517545 1649048847 2022-04-04 05:07:27 0x37e69ea80c185708d898ff3ec096e1a8d4cf6684 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004581174215 5.012262708 3520.15 Increase Custody Allowance | |
0x5261a0642ed8e26595948308dde2050deddf0beec2b934d530182391e89fe00f 14517894 1649053549 2022-04-04 06:25:49 0xa093284c707e207c36e3fef9e0b6325fd9d0e33b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001293264174 1.414960333 3520.15 Intend To Withdraw | |
0xb1e7d78d2a147fd092a2f87ea0b9084d4da042a9a6032f27f1e6393068f0b90f 14517905 1649053703 2022-04-04 06:28:23 0x6b6310bd7fb278c7d6a12f888a0360b44d209e33 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004444179185 4.862376446 3520.15 Withdraw Funds | |
0xca8eb9b79de6bab1539c06bd0df163cdb0485536a189357893db0e74761cd4f2 14518286 1649058613 2022-04-04 07:50:13 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005073585917 5.551010352 3520.15 Withdraw Funds | |
0xa29da36e75004377c682359d472e0163b89e15225d591ccdf561faca762a3145 14518290 1649058661 2022-04-04 07:51:01 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001936342531 2.118552363 3520.15 Intend To Withdraw | |
0xcef403dd7b9f5ac58efac5c4c6a9ecb89da885bc98e8d5ae3e55b9297375d71d 14518307 1649058871 2022-04-04 07:54:31 0x50b3e08d5c3a2386e0c9585031b1152a5f0e2370 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007193580662 7.870496602 3520.15 Deposit | |
0x0ba29e8c3d1a582ec1da4d4a27d63923f1ab4bd62c83583eda090b83c52e0c37 14518424 1649060521 2022-04-04 08:22:01 0xdc341186e24526d8a22ea8e58b66ffc05454078f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00869073805 9.508536501 3520.15 Deposit | |
0xae220881feccf97cec75f6d9cf6cdaca562cd0990fddbdc39caffe31bc5ba462 14518427 1649060571 2022-04-04 08:22:51 0xdc341186e24526d8a22ea8e58b66ffc05454078f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003979073784 4.353504628 3520.15 Increase Custody Allowance | |
0xb50e6a1ef4b20586aaf2eaa572ce9c255b627831381e528cc9188db68defe42a 14518747 1649064866 2022-04-04 09:34:26 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008454287667 9.249836136 3520.15 Claim | |
0x24ab4510aec64cdfcf84b791068b5093d7f237d1c96526469f68f3b5b8e12810 14518758 1649065040 2022-04-04 09:37:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008542779968 9.346655563 3520.15 Claim | |
0xd129be56662c7edd06c5c277d2ea070b215f62bfc8adb402126770a28a163f73 14518758 1649065040 2022-04-04 09:37:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01042609282 11.40718816 3520.15 Claim | |
0x7d9defa389c42835da7c9dda66a183c631b7d346ecd1461ddf914f6150cada5c 14518758 1649065040 2022-04-04 09:37:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01042609282 11.40718816 3520.15 Claim | |
0x0fc9a457c7838c4bf200657fe362901ba64bb17384e9c1f63fba02d7c3caf7c4 14519431 1649073864 2022-04-04 12:04:24 0x2fe5adaa6921d786ce21b94c80a9a79c108d94bf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003410219558 3.731121218 3520.15 Increase Custody Allowance | |
0x2a21608326305709fd42c89c2916e58b4e2b7c0df0704b94fc2635b5a445c05b 14521691 1649104411 2022-04-04 20:33:31 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006133725443 6.710909007 3520.15 Withdraw Funds | |
0x1040e1b81ee7d18533a05b640d35d3a89a2e9153b55dba0c7654c80fd387b6a1 14522038 1649109315 2022-04-04 21:55:15 0xb7f1ea585d7bf0f04941a29a03465cb74844c0cb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009308548957 10.18448341 3520.15 Deposit | |
0x5d4ff6da5fbe9f9aa75969b4215a47146a904a1f7350d971905cf69359436bca 14522044 1649109422 2022-04-04 21:57:02 0xb7f1ea585d7bf0f04941a29a03465cb74844c0cb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003192898835 3.493350615 3520.15 Increase Custody Allowance | |
0x6f2379c657b23e4b7572310c595b564ed0a401e3f652d7d9ef2d8bbd964f885c 14522557 1649116475 2022-04-04 23:54:35 0xb7693d3f040d66ab89ab86e7f8688c01febbc77c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009636483903 10.54327704 3520.15 Withdraw Funds | |
0xd221f1e6fb62d26294302f28932ba0d3033a0dc4b009538d160c52fea05e1e4a 14522579 1649116921 2022-04-05 00:02:01 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01071354557 11.7216902 3406.48 Withdraw Funds | |
0x884809a707c8d0a8be124dc433cf1ba04dabd2186a5ae06d2b42c8c9784ea085 14523755 1649132599 2022-04-05 04:23:19 0x2fe5adaa6921d786ce21b94c80a9a79c108d94bf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008386357822 9.175514093 3406.48 Deposit | |
0xe1860c3f945ea4b6b1981aaf0b8b42643ed00120508b9ee06db6f3445ca99a5a 14523760 1649132664 2022-04-05 04:24:24 0x2fe5adaa6921d786ce21b94c80a9a79c108d94bf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002545922848 2.785494188 3406.48 Increase Custody Allowance | |
0x1934c5f40f2e0e460e996fb2342dc253548955a77a4c5034fdc956451ac0a8f5 14525278 1649153403 2022-04-05 10:10:03 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005413516167 5.922928038 3406.48 Withdraw Funds | |
0x088d422928fcd1ea0deee28d9946f39e02fc298dc9ca202df676f47d2aeeb2df 14525682 1649159007 2022-04-05 11:43:27 0x889502cab866389d64063542d14edff744dea857 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008021449196 8.776267565 3406.48 Deposit | |
0xdaea251b47037452cce23118acb4912933499f080940500d2de354e860a3f506 14525744 1649159875 2022-04-05 11:57:55 0x889502cab866389d64063542d14edff744dea857 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004043416023 4.423901471 3406.48 Increase Custody Allowance | |
0x2a3e73c81e484a83df5f9b2cf9c71c883bfb4e79e3149581f4994705f62476ea 14526330 1649167019 2022-04-05 13:56:59 0xf7664803c6fc11c49c2d6e3a1f7684e00bdee49c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006501041122 7.112789091 3406.48 Withdraw Funds | |
0x082fc7f6aa82eb77e842c7cc0d6d2f60744cd45e46780b7a0573df4bd5b4b34c 14527147 1649177606 2022-04-05 16:53:26 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00836415701 9.151224184 3406.48 Withdraw Funds | |
0x024ef69192a142578e6db1fac8f237adc95123b74c6a7b93377cb45463457d06 14528428 1649195213 2022-04-05 21:46:53 0xd711f7e1adcea92bbf0b374c229122a9b6d611b6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01840942502 20.14175192 3406.48 Withdraw | |
0x52dc528a9314aa0adc61a55e62465acc8b447e8e98bf25618db0328b249bd6fc 14529093 1649204336 2022-04-06 00:18:56 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007185141835 7.861263682 3168.91 Withdraw Funds | |
0x5a32c850835078c2f407acf3ea5451bdbba6abce73503ccbe58eab57ffb92b4c 14529914 1649215399 2022-04-06 03:23:19 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007728036985 8.455245265 3168.91 Withdraw Funds | |
0x3f1aed08a32067e2571a9ccd14e504b056c46eb85abc36fbbfb80555e1950068 14530083 1649217639 2022-04-06 04:00:39 0x6657755ba6663c3ddc77e20aaa5c05c27026abec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005606194609 6.133737522 3168.91 Deposit | |
0x4c4ec95ed0541c9cd701e9e235e79d6ba4ba640ea7647125db563d48e5f8f7ed 14530087 1649217695 2022-04-06 04:01:35 0x6657755ba6663c3ddc77e20aaa5c05c27026abec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001990578588 2.177892033 3168.91 Increase Custody Allowance | |
0x92b74269af218fa58a7ef177e4dd193caab0c59993e16c261ec9740510798e36 14530221 1649219305 2022-04-06 04:28:25 0x81313cd8b1eee4dff9256669c804e229906b1705 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01000553385 10.94705459 3168.91 Deposit | |
0x140d31095b7c28269ecca74a6dec1ea17befeb130864dedd69dbc63567da5cee 14530225 1649219383 2022-04-06 04:29:43 0x81313cd8b1eee4dff9256669c804e229906b1705 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004827917419 5.282224448 3168.91 Increase Custody Allowance | |
0x7c507424def1b7779571a63dbff8133bac9bf1bf3992bf4373ff584f926c64b1 14530256 1649219796 2022-04-06 04:36:36 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007139493483 7.811319819 3168.91 Deposit | |
0xe07221925eab2e42a970c8c277e4781e58e1732326e613081c6e750d7f2d2743 14530320 1649220660 2022-04-06 04:51:00 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002185988135 2.391689619 3168.91 Increase Custody Allowance | |
0xce6312c4d9bf2241e2f8e04c6e6b00a573c2c8d689187f0c2a3350af92c8ad13 14531450 1649235896 2022-04-06 09:04:56 0x3631401a11ba7004d1311e24d177b05ece39b4b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007378752664 8.07309329 3168.91 Withdraw | |
0x75b29f5b1799d3301d5265e8ecac4c72524d80ecfcf1b786ffbfd0f53edbb008 14531513 1649236695 2022-04-06 09:18:15 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003504634905 3.83442105 3168.91 Withdraw Funds | |
0xe7f90fe4f6be86f69787094a673933ddd107fbb2adbb2f19d0e5ae99e3bf816a 14531513 1649236695 2022-04-06 09:18:15 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001366133428 1.494686583 3168.91 Withdraw Funds | |
0xb5281864612d255d5b952ed6311c559ed98752b9816b3ae4313259e16785dc29 14531513 1649236695 2022-04-06 09:18:15 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001366133428 1.494686583 3168.91 Withdraw Funds | |
0x92f5bface6c7f4494d64a6206427d4d9614c21c899b47b5edf390b10d0b16540 14531711 1649239527 2022-04-06 10:05:27 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003492365198 3.820996763 3168.91 Withdraw Funds | |
0xa6c6a3c0d8a90dd02d916257597cceaaaddca8453046c665b1b08cc7b83dfe8b 14532602 1649251540 2022-04-06 13:25:40 0x7253bbe484d7b36a05f72a616c1e1852354d9eec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007732260975 8.459866733 3168.91 Deposit | |
0x562ebd7b9bc2f6b4659bfc14b65318d7c8c02f79901f63f0f4157892d70c0daf 14532616 1649251655 2022-04-06 13:27:35 0x7253bbe484d7b36a05f72a616c1e1852354d9eec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01512105582 16.54394717 3168.91 Increase Custody Allowance | |
0x93884df548692760a991ae60a1ba1e7a45755d36c5694a841424124894a89796 14532739 1649253642 2022-04-06 14:00:42 0x83cac5a5ecf6565d8165f5b325a918449f98e96f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01567867739 17.15404093 3168.91 Deposit | |
0x13f4dcb418f6717bf8e9da1df9018e73f2b2df0f624caa6891b62bdc7efd7dd2 14532745 1649253716 2022-04-06 14:01:56 0x83cac5a5ecf6565d8165f5b325a918449f98e96f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005663848582 6.196816734 3168.91 Increase Custody Allowance | |
0xa901954948e740719a25440e8270df1a6b84ccd22568f944705a9485387a18ef 14533538 1649264776 2022-04-06 17:06:16 0x9e6cbbfd4da15983675de9f10f7c847d2d7bf451 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02308462273 25.25688573 3168.91 Deposit | |
0xe59aadafab76d10b7b9675745552972a4d77619300fab7d7684027b38aec6f95 14533547 1649264873 2022-04-06 17:07:53 0x9e6cbbfd4da15983675de9f10f7c847d2d7bf451 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007594222969 8.30883935 3168.91 Increase Custody Allowance | |
0xb54966a398a8629951247535d90a5963fec46b7b00aa4bf0a5fe70c4ac23e9fd 14533583 1649265374 2022-04-06 17:16:14 0xf97e42d65d09813f1765788bb666488b8e9f4b0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01482458539 16.21957887 3168.91 Deposit | |
0xe039b4d7240fb1d899f9df172c40e0b4f8c118104295a568c3f604c3bd6d5537 14533591 1649265572 2022-04-06 17:19:32 0xf97e42d65d09813f1765788bb666488b8e9f4b0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01243425792 13.60432159 3168.91 Deposit | |
0x6b5aa6558cc303c03d3841a8eda54015324301a794c6ed6e8f1bac01be14182e 14533594 1649265665 2022-04-06 17:21:05 0xf97e42d65d09813f1765788bb666488b8e9f4b0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0096786078 10.58936479 3168.91 Increase Custody Allowance | |
0x0452e7378389a898c0c320ab4dead264e98364b3d38217428f83df911ab5ad36 14533629 1649266136 2022-04-06 17:28:56 0x9e6cbbfd4da15983675de9f10f7c847d2d7bf451 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009962026122 10.89945278 3168.91 Deposit | |
0x51e443d4e9406a0f9568eaf3e6b32d6e6349603e0ab58f4d289842c6098908fe 14533644 1649266274 2022-04-06 17:31:14 0x9e6cbbfd4da15983675de9f10f7c847d2d7bf451 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002478755524 2.712006419 3168.91 Increase Custody Allowance | |
0x498bdf2688bd880a0ad0f58f26a75498381e44584ad59c4a4376a7aca9e6173b 14534217 1649273819 2022-04-06 19:36:59 0xe99f0156bed9e43489100a8363a321aedaff4727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008677961687 9.494557882 3168.91 Deposit | |
0xf4b154f132e842e66c0eba20bac644527d821fee9d03150be9f1dc0c235ba96c 14534221 1649273876 2022-04-06 19:37:56 0xe99f0156bed9e43489100a8363a321aedaff4727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003695159293 4.042873782 3168.91 Increase Custody Allowance | |
0x6cabc87dcde7d4cc61f21a5e634de0a60c33a243d8878d628c0ea7bd5b09229f 14534234 1649274011 2022-04-06 19:40:11 0xfbed137900fafa5941043e7c4585b2356285051b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00677280883 7.410130141 3168.91 Deposit | |
0x6ab1f5bbfce218c3254662a0bc1d093e05c5695813a4985d446ec5bdf77d1109 14534386 1649275972 2022-04-06 20:12:52 0xb7f1ea585d7bf0f04941a29a03465cb74844c0cb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006677143261 7.305462442 3168.91 Deposit | |
0x8d551f7370519ff7b854827d932b0709db8babc6d0f3cbdc6d0961fe6d05facb 14534397 1649276129 2022-04-06 20:15:29 0xb7f1ea585d7bf0f04941a29a03465cb74844c0cb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002363124967 2.585495027 3168.91 Increase Custody Allowance | |
0xcb9df61014bfe8718679dabf8a64444b016187019a8fee35d6d45421badc46a3 14535130 1649285748 2022-04-06 22:55:48 0x0ac0240f4656dc80684d0df1208bb91c0220725d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007561045656 8.272540052 3168.91 Deposit | |
0xc22c6b6240c4e52e8e15bc435ffbefa3fdff79a81014fd254f76827f46f55f91 14535143 1649285904 2022-04-06 22:58:24 0x0ac0240f4656dc80684d0df1208bb91c0220725d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003053516657 3.340852574 3168.91 Increase Custody Allowance | |
0x9fb974a3c5c5c39f6b8918231206fce786059eab931e1983eb5a006af18a7878 14537014 1649311336 2022-04-07 06:02:16 0xc3c14f31c8db2417d1695fa6c8bebe8f2804677e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001396051714 1.52742018 3229.28 Intend To Withdraw | |
0x3c51641676eaab1995255567837acc620dd4e330577f178b86c15d05c33fef4e 14537122 1649312502 2022-04-07 06:21:42 0x8295918d123a6a27b064bdcbb2f88eee6ba3a4ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004664964366 5.103937513 3229.28 Deposit | |
0x1413554b146ecf9c167ae352de3827f2291ffd8c24fae13f9720b1c0c0e5511b 14537313 1649315113 2022-04-07 07:05:13 0xfabacb07863bf43cf9215b0787a924caa438f674 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005644273427 6.175399556 3229.28 Deposit | |
0x86ee9583d458313c07bbd199b3e546c041b8078634ac7674cbc32318a685d995 14537498 1649317338 2022-04-07 07:42:18 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007356898389 8.049182527 3229.28 Deposit | |
0x8330f58892d0eac813d2ce6aa0ff918d7840774f9321fd287baed2ded325ecd2 14537500 1649317373 2022-04-07 07:42:53 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002742474128 3.000540944 3229.28 Increase Custody Allowance | |
0xdf8cbadbbd6dff68cb6c2a39e27b8b0f4643b236d7f11b7085c07fb4d7addf38 14537720 1649320612 2022-04-07 08:36:52 0xfabacb07863bf43cf9215b0787a924caa438f674 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001500253227 1.641427056 3229.28 Increase Custody Allowance | |
0xd3a5ba8b8ced0824c4fb1d4db5d0deae0071076aef66b2246d2bc4ebbdc7e50d 14537733 1649320887 2022-04-07 08:41:27 0xfabacb07863bf43cf9215b0787a924caa438f674 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006349099646 6.946549923 3229.28 Deposit | |
0xa3121d902e33838179501f3283204ab20295f915d89b20f6eed951b9c2a7f27e 14537744 1649321014 2022-04-07 08:43:34 0xfabacb07863bf43cf9215b0787a924caa438f674 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001711342245 1.872379551 3229.28 Increase Custody Allowance | |
0xd781674ea86a0f3d882c44d8cdc2d61d673df52cd8bc163be6dc7f5984df0c16 14538844 1649335839 2022-04-07 12:50:39 0x5a0f7dbdd1ab03ab5bd35d9211a2f9db4e1d3d42 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009875107746 10.80435539 3229.28 Deposit | |
0x17b052da51e97d5727dc500d3a41340727c7ea797a467ee45b0bba062d39c1bf 14538861 1649336026 2022-04-07 12:53:46 0x5a0f7dbdd1ab03ab5bd35d9211a2f9db4e1d3d42 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00449612939 4.919215166 3229.28 Increase Custody Allowance | |
0xbac30cf495a7d4abe5d2ba4b332af9c4fa5786bbe4cd1300e1a7b7a67bbddade 14539282 1649341670 2022-04-07 14:27:50 0x1ef3cc7d93148f42d55e0be18a95afdcd5fffb45 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01079051984 11.80590776 3229.28 Deposit | |
0x9b898e823f1353285c99ca7b30b07c715c2eb63ed05cc0139f432a06df7c3507 14539288 1649341772 2022-04-07 14:29:32 0x1ef3cc7d93148f42d55e0be18a95afdcd5fffb45 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005884665573 6.438412603 3229.28 Increase Custody Allowance | |
0x1d492882554e270a61faf6fc2e129e3e955a71805a12c948c0bcf437cb1860c3 14539413 1649343453 2022-04-07 14:57:33 0x39593eeeca5650c570094dbf71d5925a7245f1bd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01020178608 11.16177415 3229.28 Deposit | |
0x70695081b73d95929c62349e32000dc6f4da4842b2f83d03ecf7672f6ad2a0cc 14539434 1649343795 2022-04-07 15:03:15 0xdc341186e24526d8a22ea8e58b66ffc05454078f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02256118441 24.68419186 3229.28 Deposit | |
0x4de95104898ac88d9b298a683163e093f606df5799c357f086f47737655b164b 14539463 1649344203 2022-04-07 15:10:03 0xdc341186e24526d8a22ea8e58b66ffc05454078f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01019907824 11.15881151 3229.28 Increase Custody Allowance | |
0x1053b8562ed34b003317c8527f69e488911ceffd224db06aa890c1de06e4593a 14539463 1649344203 2022-04-07 15:10:03 0xdc341186e24526d8a22ea8e58b66ffc05454078f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007868127875 8.608518708 3229.28 Error(0) Reverted Increase Custody Allowance | |
0xbafc38ecd273a50290914809153c6215a4c4704f7950fc7ddf4f51067abbd8ed 14540920 1649363370 2022-04-07 20:29:30 0x9b6cf4e87f67848b709e041b09a72d4bf48c5814 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006469763169 7.078567883 3229.28 Deposit | |
0x797e7470de21c38060994b9c81e47fa4ab3ac087f83f4b109cde7fd6fcdb7189 14540924 1649363436 2022-04-07 20:30:36 0x9b6cf4e87f67848b709e041b09a72d4bf48c5814 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003267294288 3.57474668 3229.28 Increase Custody Allowance | |
0x9dd19c42c3670efeccc05e469f8d10ed623340d8ca3916e948bb1c0912972e6b 14540937 1649363613 2022-04-07 20:33:33 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004616339831 5.050737409 3229.28 Withdraw Funds | |
0x7372b07586f24b058fa52e05ea0e1e50402ce0852215c1c7be8c3d42a7443196 14544033 1649406302 2022-04-08 08:25:02 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005251385039 5.745540371 3192.92 Withdraw Funds | |
0x9e9d162c4769e77e1f646f1d301f5d9a19eadf9448f99fcdc43a66da05328ff8 14544038 1649406374 2022-04-08 08:26:14 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01267291088 13.86543179 3192.92 Claim | |
0x78ce8c18e2e0fae354573cb4b7cda6d2f939e591ae1dda013d32724bf04c44fc 14544038 1649406374 2022-04-08 08:26:14 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01267350926 13.86608649 3192.92 Claim | |
0x9799817544d7358bdb770ca10cd0f339ed384ab355e337ae7d9d9ba046582fb3 14544039 1649406399 2022-04-08 08:26:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01086247855 11.88463778 3192.92 Claim | |
0x58624704be0b1a9b7d03568b6e2c5dc7ed81b287039c48665c81a8486ffe4b5c 14544041 1649406425 2022-04-08 08:27:05 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01346986147 14.73737543 3192.92 Claim | |
0xf584578e10f88d05f84fbea021d18f7ebfb018f53392b08ad659f0fba9bf8e3d 14544049 1649406627 2022-04-08 08:30:27 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01494808162 16.3546961 3192.92 Claim | |
0xd62d37a03e7f48d43454437295d38a4ce1d9366b2c7e91ce5638798ce5cad6a1 14544049 1649406627 2022-04-08 08:30:27 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01122946288 12.28615534 3192.92 Claim | |
0x831b52692842e064aa315133895e273fd79cf6395fa70b7f063ed994caaf47a7 14544049 1649406627 2022-04-08 08:30:27 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01494808162 16.3546961 3192.92 Claim | |
0x450ad47ff4f621044ebf013d2ea735bc5e1e5ca6c9842b462d8d817aa7b33581 14544049 1649406627 2022-04-08 08:30:27 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02755687381 30.14997563 3192.92 Fund Loan | |
0x431b281cb895e16a1d7d7937dd1b1e40d109bc81e87ecf5aa523b71d9735fe04 14544054 1649406676 2022-04-08 08:31:16 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02313140674 25.30807212 3192.92 Fund Loan | |
0xf9462bb3504661c6e406424111cc98b12b0e88c1b560d0cd402173303857f654 14544062 1649406793 2022-04-08 08:33:13 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001695623319 1.855181473 3192.92 Set Liquidity Cap | |
0xd5e29c082626bf771aa2977c831efc5bedd55deaf2b1547290b053511d1a90fe 14544162 1649408022 2022-04-08 08:53:42 0x364462cee8e0a66306b706a43dc5bef2ff4e8be8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001517504644 1.660301832 3192.92 Intend To Withdraw | |
0x5a21fdec284d83b142b37f4a0eae71cd742c39af3c6648f71c4ef2b4e7fc0db0 14546532 1649439631 2022-04-08 17:40:31 0x0148107d2b0fc3e90e8ac427a9058beaffc5dd79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007618604699 8.335515401 3192.92 Withdraw Funds | |
0xa6442e2b2083be7f2c1c1be4ae32b47559e26be9c7a5db87e6125ad00dd0cb08 14547072 1649446998 2022-04-08 19:43:18 0xfae0b73f73f42e3cbd07d5500fa9c45d3c1cc01a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002657676957 2.907764359 3192.92 Error(0) Reverted Transfer | |
0x5c8a32e42d13036a1e8cfd0d761dcd5d518307edc2857d927ad612a5598813cf 14547080 1649447076 2022-04-08 19:44:36 0xfae0b73f73f42e3cbd07d5500fa9c45d3c1cc01a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002092923785 2.289867913 3192.92 Error(0) Reverted Transfer | |
0x78d25a5a4fda2914d970adef644c58e291a8749949b514074d515edc648b2072 14547092 1649447278 2022-04-08 19:47:58 0xfae0b73f73f42e3cbd07d5500fa9c45d3c1cc01a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00244319547 2.673100164 3192.92 Error(0) Reverted Transfer | |
0xb8a6548e2fcb8f6afd92e55a79280772ef0eb6dde0253844828d6dc9f6784375 14547185 1649448559 2022-04-08 20:09:19 0xfae0b73f73f42e3cbd07d5500fa9c45d3c1cc01a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002188887008 2.394861275 3192.92 Error(0) Reverted Transfer | |
0x4d6b3f78e4ea406e7ab841022a4ce60f24384ee90f3284b809a0192dc08f0487 14549835 1649484490 2022-04-09 06:08:10 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003197243788 3.498104429 3259.62 Withdraw Funds | |
0x802e9fd851fcb3005cba218b8dcca21fa274c0cc2ba55f005dc0480fbe207bc3 14550100 1649488168 2022-04-09 07:09:28 0x651f673659ef05949e24820ae8fc5f2924e31a77 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003994324711 4.370190666 3259.62 Withdraw Funds | |
0xf22e2da1ffd172e8616a79a6b6c441914f1a0773878471b59b2b56fb4e9c66e5 14550761 1649497082 2022-04-09 09:38:02 0x915dc86f97f66515ae9de796f51749e57c847368 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004409590473 4.824532936 3259.62 Deposit | |
0x32b160ef1559a7dd101c8974f67f497bbc38bd2993f344d1182fd37e6857bf3b 14550768 1649497151 2022-04-09 09:39:11 0x915dc86f97f66515ae9de796f51749e57c847368 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00192179143 2.102632004 3259.62 Increase Custody Allowance | |
0x8946f6e93544c103b704f75dcd456cb45947a18cd3f6d48f7c794f9c61dd33da 14551457 1649506713 2022-04-09 12:18:33 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003645675137 3.988733168 3259.62 Withdraw Funds | |
0x49a1f0cbd8cd257ea0c75001852845d3ff30dc642d6377f9b424c28ae31e1fcf 14551714 1649510099 2022-04-09 13:14:59 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0030092492 3.29241955 3259.62 Withdraw Funds | |
0xb4130505811b10c7015f1a7c1410039a2be9d4ea8ec55ff51b0fb749a7a8a3d3 14551719 1649510121 2022-04-09 13:15:21 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0011686676 1.278639221 3259.62 Withdraw Funds | |
0x818b9e56359a68779b72af06d228dbfc464cd819055135a218314891333b23ba 14552513 1649520497 2022-04-09 16:08:17 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003542466049 3.875812104 3259.62 Withdraw Funds | |
0x0ac0fe1a98c58cd8c07ab93ee709a0332d6c834e24b794b2f814e47b18f6838e 14552672 1649522724 2022-04-09 16:45:24 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004831023561 5.285622878 3259.62 Withdraw Funds | |
0xc5884e2c523b776c807bf989c4ad683604bb139686f82df0bd9379b08814eafa 14556903 1649579705 2022-04-10 08:35:05 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001768383916 1.934788843 3202.89 Withdraw Funds | |
0x49056d21aa38ceda5845e0879b67553d9bc6c50a282383abd4191616681114dd 14556985 1649580795 2022-04-10 08:53:15 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002274432 2.488456051 3202.89 Withdraw Funds | |
0xb1ad7586a04193c77982fda20fd71c53bc76c42122760d3e4deff34419af4aa1 14557635 1649589216 2022-04-10 11:13:36 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002138031921 2.339220725 3202.89 Withdraw Funds | |
0x0cca00057ab361352a1f803b95bec6f712597902dd0ff3a21f7dc55dfb9eb3c6 14558042 1649594756 2022-04-10 12:45:56 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002227292396 2.436880611 3202.89 Deposit | |
0x493fc521de1ab49b71a8e59ca8a439057ad6457065c24398023c12cb8bd948b1 14558046 1649594833 2022-04-10 12:47:13 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009609738767 1.051401518 3202.89 Increase Custody Allowance | |
0xdde4f8aff6e275d1511d4ac2e1014ace724b0801d7c083dc9fcda51504ed28ab 14559131 1649609966 2022-04-10 16:59:26 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006606182437 7.227824204 3202.89 Withdraw | |
0x16312a9c06a72176444adbca54f849492aee08bb6c5e9bfd6cabcd4b17a5cb72 14559147 1649610166 2022-04-10 17:02:46 0x57a243c0df4c30efc64d7a4e94720b36d766fa3f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001747384572 1.91181346 3202.89 Intend To Withdraw | |
0xfef448939f8de26e5a99331f5cf2eb7f4efbcdaaf3449f163a6cc83a5a4d0344 14559179 1649610614 2022-04-10 17:10:14 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002645344819 2.894271767 3202.89 Increase Custody Allowance | |
0x04463ddf2484113eb4c50531ad8501450d0b18d355d727812095e946a64be3b1 14560065 1649622182 2022-04-10 20:23:02 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002256768608 2.469130534 3202.89 Intend To Withdraw | |
0x867d128b6235737e3cac1d2de62acd0a1d23b778c19a17715f4fdad4de22da9e 14560111 1649622807 2022-04-10 20:33:27 0xb079f40dd951d842f688275100524c09bef9b4e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004765856376 5.214323461 3202.89 Withdraw Funds | |
0x946e4ad0777ab39a97f7181bee43dd40a5c5f099a406f145d6e87354f9fec49a 14560114 1649622869 2022-04-10 20:34:29 0xb079f40dd951d842f688275100524c09bef9b4e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008349806956 9.13552379 3202.89 Withdraw | |
0x3f7b2f4046d785baeda22f63f6d5215ac59b750ddff9e185cd664394891a3bbc 14561980 1649647986 2022-04-11 03:33:06 0x5fa5d55f11ba187d4c318b21a2c1b67714b5a9e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004724794738 5.169397923 2979.52 Withdraw Funds | |
0xb8a7a8359b59eaa5807d37f494ee7f42c093cc6db56320b9bc8e5bb4c0716bf8 14562703 1649657559 2022-04-11 06:12:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01612468763 17.64202074 2979.52 Fund Loan | |
0xf4a3b455fd98d41f6b4e80dd012aa58be5f25b6bdc1eebf2bf53a097bbe54895 14562705 1649657609 2022-04-11 06:13:29 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009844166288 10.77050234 2979.52 Claim | |
0x7043440f2a591f5d2439e371dee3df7c3b96b386b97e27f924ac472c81695d21 14562707 1649657671 2022-04-11 06:14:31 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008216515112 8.989689183 2979.52 Claim | |
0x985d70d9b8d44835c05bdcf236d3930e27bb464d04eb2ef63e2d3f12f2001c1e 14563657 1649670144 2022-04-11 09:42:24 0xfa0ff9af46adb1e565bb1b96fdf8250d9b7b2bcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006131807061 6.708810105 2979.52 Deposit | |
0xb2848fa82dbefd9ac405b676bd13ce6b74a3d915d6403a6f82f9ca8d0da7647a 14563663 1649670218 2022-04-11 09:43:38 0xfa0ff9af46adb1e565bb1b96fdf8250d9b7b2bcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001770512835 1.937118093 2979.52 Increase Custody Allowance | |
0xfb5b688a469e6e0a8d12a7e44dcd2783feedb4230a72c18b09bef23376de853b 14564121 1649676196 2022-04-11 11:23:16 0xfba965775a50da52db4d2b1696693b35882215ac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004919155059 5.38204755 2979.52 Deposit | |
0x218b48ed7a792d56be87dcfd70b3d8833171b2dee5ffe8369e79244abac08ca1 14564125 1649676248 2022-04-11 11:24:08 0xfba965775a50da52db4d2b1696693b35882215ac 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002131998884 2.332619979 2979.52 Increase Custody Allowance | |
0xf0d719f605de409b96de4744ea4ea3d01d599bdca9e0b2f47b504555dcc020c2 14565044 1649688610 2022-04-11 14:50:10 0x526ee6adbb4262423fa8cbbc5479d06afa1a1128 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009445892288 10.33475075 2979.52 Deposit | |
0x1c02e59dd0f382b7e552f11a83c6ce9207080f3aaf2da877d9484be679c4f993 14565050 1649688685 2022-04-11 14:51:25 0x526ee6adbb4262423fa8cbbc5479d06afa1a1128 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003801111368 4.158795948 2979.52 Increase Custody Allowance | |
0xf9f0a9c5d6df21d4f388fa670f9823cd5cb95c7e0e595e4c30fbec0c11ea3608 14565187 1649690655 2022-04-11 15:24:15 0xb4d1340303d89ccc48a19cdbdb5723aeceda933d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009089775226 9.945123075 2979.52 Withdraw Funds | |
0xba86b3b0abee90d47807ccceea3fa9028de88c28ca9d95056ea153e95a3a9ca9 14566248 1649705303 2022-04-11 19:28:23 0x39593eeeca5650c570094dbf71d5925a7245f1bd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004195893975 4.590727598 2979.52 Increase Custody Allowance | |
0x72594d4e814b1ea3547d4728725d786db71b8c23f607d3970ff5380c0f66078c 14566629 1649710448 2022-04-11 20:54:08 0xd3327412485081111ef69ac484511d7879a671fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005157918183 5.643278284 2979.52 Intend To Withdraw | |
0xb2cad50fca369639b22bd2d555beed5c8de85cd34a180e896f8445dedb80292d 14566634 1649710539 2022-04-11 20:55:39 0xd3327412485081111ef69ac484511d7879a671fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01146316712 12.54185115 2979.52 Withdraw Funds | |
0x6d9b109228c8d532392342e2e3341795258ede6ad9104cde851236ab4f700bba 14566645 1649710776 2022-04-11 20:59:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02152620137 23.55181692 2979.52 Claim | |
0xb5540179b91fb8678cab63c04bbbef008ccab876543283b254f41341f7209e92 14568606 1649737771 2022-04-12 04:29:31 0x758c30d1b462575f0bc1cd8fb0a0c8cec002a6df 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006209519477 6.79383526 3028.77 Withdraw | |
0x7fae62c551d43343ce3d210e48fbfd3dc74a80c61a42087e9089e4890c75ddfe 14569106 1649744846 2022-04-12 06:27:26 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00265664405 2.906634255 3028.77 Increase Custody Allowance | |
0xc1a1079c0897121e7a71fad516c0a4ded3370c221087ef5b4a44fc7f11b1e611 14569500 1649750073 2022-04-12 07:54:33 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003993721505 4.369530698 3028.77 Deposit | |
0x0a4176f973c8a240b91f5c9777354207b94c028cfd2a47870fb2287a12e73640 14569519 1649750329 2022-04-12 07:58:49 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001469500581 1.607780586 3028.77 Increase Custody Allowance | |
0x173f1ee7248c33244a14f23bb674f57a9abd1b15ceaeb49d9bcfe8f440858731 14570090 1649758073 2022-04-12 10:07:53 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003003319845 3.285932242 3028.77 Withdraw Funds | |
0x680b65c41cfb518601176acde4bf3e6245a55b9ad1409443e397e9dd6204400f 14571192 1649772905 2022-04-12 14:15:05 0x9768478aa52ccdc900e3473a5119c8f94016cb48 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007286230283 7.971864553 3028.77 Withdraw Funds | |
0x4614e2735ffb48a1cb245e68fcfbeac48292e08328dc4ac0648430615d33ca18 14571199 1649772969 2022-04-12 14:16:09 0x9768478aa52ccdc900e3473a5119c8f94016cb48 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007156023828 7.82940567 3028.77 Withdraw | |
0x300e7cfdf60b0a479cdeb6b4f41f2f762fe1ee4196b043548505a33ae2c7ecda 14572791 1649793294 2022-04-12 19:54:54 0x5672c178f19d375578e6fd3494ed077267f032a1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005657910781 6.190320186 3028.77 Deposit | |
0x7c1273c8b4b8bcb7062acad21106a5fcb7cf5b31397d81e467c3b4f4b1231703 14572809 1649793558 2022-04-12 19:59:18 0x5672c178f19d375578e6fd3494ed077267f032a1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002972515757 3.25222949 3028.77 Increase Custody Allowance | |
0xc78e53022b85725518e3b5c78a15e0233e2d4f3b8173b0977a0fa09df8cce877 14573885 1649807668 2022-04-12 23:54:28 0x06ad5f1df17d278473136786353695b0749d8c9e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001874796531 2.051214884 3028.77 Intend To Withdraw | |
0x5ebc69a68ec23305486e83c683eea44ea7cbc3fd6040eae5711222e3cd242f66 14575951 1649836601 2022-04-13 07:56:41 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00143672214 1.571917693 3118.5 Intend To Withdraw | |
0x1c975a7bf7808596e4ec617228dffc4fe93179cf540fa11e6d1736c3a5e83546 14575983 1649836996 2022-04-13 08:03:16 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0035105357 3.840877109 3118.5 Withdraw Funds | |
0x05d247f731072ee451a350a40c7d969688ff539ccaa2dbb77ef6463ea169472c 14576151 1649839340 2022-04-13 08:42:20 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032576 3.317941402 3118.5 Withdraw Funds | |
0x0e5fbc3efd6dd5fdcaf923043e03851da6f755fe3f35fabe97c9868738f609a1 14576151 1649839340 2022-04-13 08:42:20 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032576 3.317941402 3118.5 Withdraw Funds | |
0x88dfac3b856792910a98852bbcc90cac3f79ceb50512ea04f340c4f67dd179be 14576326 1649841902 2022-04-13 09:25:02 0x50b3e08d5c3a2386e0c9585031b1152a5f0e2370 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003177806818 3.476838439 3118.5 Increase Custody Allowance | |
0x6f14df11d8a8fd239447c6a44925da7d9756f4250caefa8010440cf42be53c89 14577710 1649861247 2022-04-13 14:47:27 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005756383321 6.298058991 3118.5 Withdraw Funds | |
0x73353aff0ba94a05082219f00a6fc22d2aafcaa1dc1f77a58f60b91490cfa1e7 14578106 1649866227 2022-04-13 16:10:27 0xf10b99017a1e5d26b05fa91d923c150e701b05a8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00464070898 5.077399695 3118.5 Withdraw Funds | |
0x508bb17f824c4771bf7856db1dabf2bf3ddcad8acb516caddba53c5ad725d9f6 14578136 1649866787 2022-04-13 16:19:47 0xf10b99017a1e5d26b05fa91d923c150e701b05a8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008718932857 9.539384439 3118.5 Withdraw | |
0x44659195b4766ff55e3bce83a7f26a99f28eba04fc0c5d5f68642068e55d2b9f 14579411 1649883510 2022-04-13 20:58:30 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008808084487 9.636925238 3118.5 Deposit | |
0x6d6db9c1b2972d862ddbf051a86529d7dfcf3d931cd779bac98cf41f588bebe4 14579429 1649883750 2022-04-13 21:02:30 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004164662866 4.556557642 3118.5 Increase Custody Allowance | |
0xe4f4a425cacabd8b35163dd106a4471a06aabe2c498727506482491143ea37b3 14579503 1649884631 2022-04-13 21:17:11 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02508144261 27.44160636 3118.5 Fund Loan | |
0x6945b06960bd693330700bd506e0b6de67bdf308c1d15982b96ccde8fe424eae 14579563 1649885467 2022-04-13 21:31:07 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008936573033 9.777504555 3118.5 Claim | |
0x5bbf262e7a42d8d96df7197ecf1b1ac76c5ca41262f1c6f14a68b07ae5392272 14579586 1649885730 2022-04-13 21:35:30 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00698094036 7.637846848 3118.5 Claim | |
0x50ade5f364adaa72d932669200d6aafc01e28f5601e86dc192ed75183a3f0c57 14579586 1649885730 2022-04-13 21:35:30 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00839285825 9.182626212 3118.5 Claim | |
0xbda563aeacb9a7e120552d93035d4b96bd88dbd821fb9a823ab4a1ac38934b80 14579751 1649887726 2022-04-13 22:08:46 0xc95adae711dfd7c741db02d6645d24aa91cec563 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008003342629 8.75645717 3118.5 Deposit | |
0x6170a49e69558f9c0d83b6b2aed89f221a7b885b420cc5eabb2fc034e1c3bacf 14579761 1649887869 2022-04-13 22:11:09 0xc95adae711dfd7c741db02d6645d24aa91cec563 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003959174387 4.331732697 3118.5 Increase Custody Allowance | |
0x78e9b54a7d9fca45c37038ed60de5aab39287335c49404e93545e87759de8288 14580514 1649898205 2022-04-14 01:03:25 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002438561383 2.668030009 3021.76 Intend To Withdraw | |
0x6e095c9c9769e7f6ea5d9301063474a1fc7536bec2e9fcfd7c002b58498bcf46 14580639 1649900069 2022-04-14 01:34:29 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007212055647 7.890710083 3021.76 Withdraw Funds | |
0x65127ee13546caeb4acc0ec2eba6d99b65bf0b57f029f7c7117c5fd564503968 14581938 1649917374 2022-04-14 06:22:54 0x6651717820ea7668a5b5a32735ff19bb0a414b8b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005009527063 5.48092356 3021.76 Deposit | |
0x334021eca6e19a095226c6cc01a11224758f36c9ef60dee4791432540c9023fb 14581997 1649918161 2022-04-14 06:36:01 0x6651717820ea7668a5b5a32735ff19bb0a414b8b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002372872335 2.596159622 3021.76 Increase Custody Allowance | |
0xac9e8b0eed02710369a8501eb1b99312692e5ebcde7300cec3eb707d51b53096 14583572 1649939802 2022-04-14 12:36:42 0xe94629793d7cd090bb863f185c29f4316eee0590 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005910222432 6.466374363 3021.76 Withdraw | |
0xe26a5e31759f0e67e9bf89f292d2e20352a5c96b93e4d298f8fe6a26fef57b0b 14585419 1649964455 2022-04-14 19:27:35 0x526ee6adbb4262423fa8cbbc5479d06afa1a1128 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007056065326 7.720041073 3021.76 Deposit | |
0x898ca2ab16c1219d3782dd275b5af202d6e90ff99d866e76bbf6e73ff21b4b60 14585438 1649964777 2022-04-14 19:32:57 0x526ee6adbb4262423fa8cbbc5479d06afa1a1128 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003341610194 3.656055713 3021.76 Increase Custody Allowance | |
0x962576cb5aa74f67b04fec805bf6e49958f6808f80f2378e557576847902d101 14585835 1649970027 2022-04-14 21:00:27 0x93d24b9a8d733f3b296a654994c589d306698d2d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00747847741 8.182202134 3021.76 Deposit | |
0xd96347618accf6f550538762d1b7bf02a43f322d9af6aad959ad712283b3879d 14585843 1649970142 2022-04-14 21:02:22 0x93d24b9a8d733f3b296a654994c589d306698d2d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003870076246 4.234250421 3021.76 Increase Custody Allowance | |
0x6d8d84e236d8e274dd1310f2a98844ab367678924e22dff3e3491540977d9264 14586190 1649974815 2022-04-14 22:20:15 0xfd225193f80f40053fd1a1548bca6cf0e6577bb4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005280793508 5.777716177 3021.76 Withdraw Funds | |
0xfc13dd18362ef30fc023319962c7558c27fb392725e34c89f5102a1948def721 14587614 1649994009 2022-04-15 03:40:09 0x6651717820ea7668a5b5a32735ff19bb0a414b8b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004808393401 5.26086322 3041.21 Deposit | |
0x5eb98db3545088aacf0b1553be274f6cc512724cb489e0d5a08867d98724f686 14587624 1649994179 2022-04-15 03:42:59 0x6651717820ea7668a5b5a32735ff19bb0a414b8b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00125154938 1.369320176 3041.21 Increase Custody Allowance | |
0xbd36ea827861aa3d788e8a176d154e33fda8d7c261825a0fda95dc6c3f49f4f3 14588460 1650005552 2022-04-15 06:52:32 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02050326685 22.43262426 3041.21 Fund Loan | |
0x17f98ef2ff4d7d175c5ec1c3f7789b7a43562739dc8232c3c154cffda54baf00 14588462 1650005588 2022-04-15 06:53:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02238177471 24.48789971 3041.21 Fund Loan | |
0xf96faff1a72e10adbdfc3a8a42dfa6db288524e3fdc4fc28ff6e02dd7a821a66 14589189 1650015706 2022-04-15 09:41:46 0x31304ccdd28e62ef552824db08a350d752068c39 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005004114015 5.475001144 3041.21 Deposit | |
0xe9fb7f1a3c8d55b4714bc4a8d55016bcd28964e51ac15e6b61e709334273d325 14589357 1650017972 2022-04-15 10:19:32 0x31304ccdd28e62ef552824db08a350d752068c39 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002433548189 2.662545073 3041.21 Increase Custody Allowance | |
0x3cf5149143e33574415ae21396e9f5e1d241d46f55dea3398dbe056e4145cc64 14589963 1650025934 2022-04-15 12:32:14 0xa093284c707e207c36e3fef9e0b6325fd9d0e33b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004482913498 4.904755659 3041.21 Withdraw | |
0x48e094edcc36c2a932c5aa2e1df89849a0b6e45735c9cdd5b2088d4a2db6269f 14591700 1650048675 2022-04-15 18:51:15 0x86a5905c330325d930830c2a4c7bc16096f10cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001120944507 1.226425385 3041.21 Intend To Withdraw | |
0x6d4f5b8da559880f3b7044c4068f657e6ab81f6fc24afb6d6d79ecb8051c7680 14592607 1650061453 2022-04-15 22:24:13 0x6619185a9fe99a5eee13359b899e0d5e18f50dd0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008183242979 8.953286144 3041.21 Deposit | |
0x91d47c04171c047fcca8e251d002fba3da401d67bcac9232b9ad1d3352d4bde4 14592611 1650061512 2022-04-15 22:25:12 0x6619185a9fe99a5eee13359b899e0d5e18f50dd0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003376960565 3.694732554 3041.21 Increase Custody Allowance | |
0x3fe6c96b712786cf191bc9b57299f823ecf8ab1c86deb9f97423da3826daace0 14592641 1650061815 2022-04-15 22:30:15 0x6619185a9fe99a5eee13359b899e0d5e18f50dd0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003449951566 3.774592008 3041.21 Deposit | |
0x778f07a2e5be86a29446e787905e332ad05a17fdf6734a0451889f0af1d4d111 14592659 1650062024 2022-04-15 22:33:44 0x6619185a9fe99a5eee13359b899e0d5e18f50dd0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001263596169 1.382500569 3041.21 Increase Custody Allowance | |
0x1de6ca537483559c0668c6926159ec6e9566b1015ca77760339aff7f035f08ee 14594806 1650091619 2022-04-16 06:46:59 0x7ab92301188fe96b8381b7349663e1c54ac74718 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001373863807 1.503144391 3060.28 Intend To Withdraw | |
0xc9c4bd063d8f2d4f9ade38826cb6ca057fec757091bfa092e815680b13b5d631 14595150 1650096165 2022-04-16 08:02:45 0x81313cd8b1eee4dff9256669c804e229906b1705 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003885858564 4.251517855 3060.28 Deposit | |
0xc1760e0878ee8fa32db4826409ac6b4b8e227a642d993c7d32387af7933fde96 14595171 1650096429 2022-04-16 08:07:09 0x81313cd8b1eee4dff9256669c804e229906b1705 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001403454298 1.535519347 3060.28 Increase Custody Allowance | |
0xbc70b2553eaa5768a6e2c60a729d401261ae3ea8b0067fdb56b2f53bd195d63a 14596286 1650111344 2022-04-16 12:15:44 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001804297331 1.97408171 3060.28 Withdraw Funds | |
0x1ac250bf03c900116dde88c929769119b8cd56f9a1905e4914b3613447f38e05 14597952 1650133257 2022-04-16 18:20:57 0x57a243c0df4c30efc64d7a4e94720b36d766fa3f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003321179 3.633701944 3060.28 Withdraw Funds | |
0xfa704e0f8e08d4c7c92742c01f3deb8f0cfb4e278242a169e2786a74e12d8c47 14598447 1650139592 2022-04-16 20:06:32 0x649b416c0ebfde0386e6b4eaa45539a9e6055b17 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001614928586 1.766893366 3060.28 Withdraw Funds | |
0x24aaec1f427c8978727a67075a0f7a5356ac8c698eba18e19109eaeccfdb6c14 14598698 1650143067 2022-04-16 21:04:27 0xb7693d3f040d66ab89ab86e7f8688c01febbc77c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001102819173 1.206594457 3060.28 Intend To Withdraw | |
0xbb70df873d73f5dd107b9f0e1e0e248ba6cfc9a0b0c80ccb9eac1bc9b3ec7456 14600405 1650165703 2022-04-17 03:21:43 0x9a6f0de94cf51e9ffde08977f5340764131e46c6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002705665936 2.9602691 2988.4 Withdraw Funds | |
0xd7735f6294025c63bfa6f2b90930b030faf61d9c3de8af05ea09568541cd98a8 14602613 1650195973 2022-04-17 11:46:13 0x3c8319dd83fa18ec1a0df2acf65277a731514d67 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001435986071 1.57111236 2988.4 Withdraw Funds | |
0x38b74244bc88e58fecb0d6568ae7639999110c849050a8c0ceef5613c9d1907e 14602633 1650196185 2022-04-17 11:49:45 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001597180141 1.747474792 2988.4 Withdraw Funds | |
0xed1452bf3474b886b64e7d07495b7069c4688e11d873c209f6f80cc2395558f8 14603182 1650203426 2022-04-17 13:50:26 0xc3c14f31c8db2417d1695fa6c8bebe8f2804677e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005667847434 6.201191877 2988.4 Withdraw | |
0xc5d904cefff8960f251cf2f43cb6001b89673057331de1c700cc64d28c8bfd57 14604670 1650224133 2022-04-17 19:35:33 0x7a75789832c4fc67edea0dc8aee186af4d1248b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002562102177 2.803195992 2988.4 Withdraw Funds | |
0x588f0bfaa7dae2a7bfc76709b95338660315fb5919fea9d3447696b069ca9edf 14606377 1650247124 2022-04-18 01:58:44 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003397093845 3.716760376 3056.2 Withdraw Funds | |
0x71576df1329381f90b90c10f21827ee915c778bc980948ce007c858563e3be1d 14610535 1650303214 2022-04-18 17:33:34 0xcef64d127c94544e312be9dcacaf83fe42154072 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0022569 2.46927429 3056.2 Intend To Withdraw | |
0x6c0a9029fbc3cc0697cdf6356cbd075d99b0726bb783cddf180f247692fe2912 14610662 1650305014 2022-04-18 18:03:34 0x39804ac23636fb147ab01d4872d1f9413d932017 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01590725603 17.40412882 3056.2 Deposit | |
0x5437d307ded7e878747fa773a305ec0787a0e30a71c2aa0c6793857fff6af641 14610672 1650305104 2022-04-18 18:05:04 0x39804ac23636fb147ab01d4872d1f9413d932017 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005193780792 5.682515564 3056.2 Increase Custody Allowance | |
0x4b322608ffb6d3c2b0101faeb4b4e7233fc4664c554e50ea1d7d94461585eac4 14610983 1650309552 2022-04-18 19:19:12 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005456427636 5.969877477 3056.2 Withdraw Funds | |
0x6265cbd44b3f3ad16ddb6f8f0930b18dfc56fa50c259bd27ccf65948f5c1582c 14610985 1650309589 2022-04-18 19:19:49 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001878490161 2.055256085 3056.2 Intend To Withdraw | |
0xd7b3a8a86e60270d7cf7f2634f9b9bb6e5c588016d3244d26aa9aee639f92c81 14611093 1650311167 2022-04-18 19:46:07 0x7e5f578d0e4c43ae5c06a19bfb43a539a8908c87 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004532325827 4.958817688 3056.2 Increase Custody Allowance | |
0xf718ffb75f9f9001cf51dbde4bda0db14c661f68bd01fd8b6459281436c17040 14611113 1650311481 2022-04-18 19:51:21 0x7e5f578d0e4c43ae5c06a19bfb43a539a8908c87 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007011052702 7.670792761 3056.2 Withdraw Funds | |
0x7463c8adf8abf26a292c3eb1c31f64455b2172eccb0a1a24ffabb3ec90d22118 14614136 1650352056 2022-04-19 07:07:36 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00254365885 2.783017148 3102.52 Withdraw Funds | |
0x97e32554c4a8f8a3607fcdd51d50d59838b056c0cb5fb8424cddd685259eebfa 14614176 1650352727 2022-04-19 07:18:47 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002863488116 3.132942348 3102.52 Withdraw Funds | |
0x989cc9e25aedb1b52087780189a09f9042fa92a79ef620ea6dfd4eedc3a6344e 14614402 1650355973 2022-04-19 08:12:53 0x63a9df1c07bdeb97d634344827bf8f6140d93ec6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006159988412 6.739643322 3102.52 Deposit | |
0xcd1ca1050e82745545b01063e4a22487c24b8dba5b1d362b8abc84465f064663 14614406 1650356014 2022-04-19 08:13:34 0x63a9df1c07bdeb97d634344827bf8f6140d93ec6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002798007104 3.061299573 3102.52 Increase Custody Allowance | |
0xf5a6ee070b24e8719404a80dfc7c7146a47a6b9b1e8ececfcc74338349c2e7e6 14615215 1650367131 2022-04-19 11:18:51 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003544587386 3.878133059 3102.52 Withdraw Funds | |
0xc508abcacf0adef1b9f034c0ac114f527a3d1cae891032d63b498384c02fbd3f 14615405 1650369820 2022-04-19 12:03:40 0x364462cee8e0a66306b706a43dc5bef2ff4e8be8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006293238805 6.885432577 3102.52 Withdraw | |
0xdea72640ffd36305496f0a0a47d6d8bf94983fa2d75d0f7cdb02a88aa9a3c2ea 14615961 1650377533 2022-04-19 14:12:13 0x5789527ec57ff76286e42673e7b97e692b13f6d0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006023126212 6.589902388 3102.52 Withdraw Funds | |
0x9edd58277eb6ef169a9ce9bbbc11e559a337691d2ca9db43dbccf19783faed86 14617977 1650403480 2022-04-19 21:24:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01041969405 11.40018726 3102.52 Claim | |
0x5f018e464474064cc90d5eff6d3e78085ea44df22e0a6305e1f60d25b9cc3d0f 14617978 1650403502 2022-04-19 21:25:02 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01568271548 17.15845901 3102.52 Claim | |
0x6afab79fba5da11f8189d24da34c5e20b15b6122233181f9e1f8f8075da3b05a 14617979 1650403514 2022-04-19 21:25:14 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01149229635 12.57372144 3102.52 Claim | |
0x19b76a935b7df0c89d9e8d339fdf6394288ef6fe04dbf6d599ebba696a3dd16c 14617981 1650403547 2022-04-19 21:25:47 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01138352202 12.45471145 3102.52 Claim | |
0x7da03c962145fc033b8e0c354740534f18cdd2b34775ed399931b480ad2e612b 14617981 1650403547 2022-04-19 21:25:47 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01515315721 16.5790693 3102.52 Claim | |
0xd4432eecb22de0d49216ead77e3be7aa0102b5eaed15a53051491b20df79354f 14617985 1650403578 2022-04-19 21:26:18 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00957729624 10.47851982 3102.52 Claim | |
0x7f4e097a6caada4746d4d7fcda9ff22f12220e07b90a42b95942aa7e69496453 14619058 1650418948 2022-04-20 01:42:28 0xe4af5b75bce58135378e25dbf99ffba53c96e7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005582037015 6.107306698 3077.74 Withdraw Funds | |
0x233a687b7b5324651f5595151067136bde634e633c14e9267beed6805a7bcd48 14619245 1650421253 2022-04-20 02:20:53 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003906603531 4.274214923 3077.74 Withdraw Funds | |
0x21dc39eca820608194a7cb44002fc4ec2ad7612e60d3770ebdffc0dc74d72e14 14619493 1650424844 2022-04-20 03:20:44 0x98a6769b451e6625b9d8487f0d2bbe1cf6dbc7b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007367303832 8.060567123 3077.74 Deposit | |
0x911361f4d6123a8761ad130b9faa3252137b138e84ddfe2c1006605ca3d06cb3 14619519 1650425360 2022-04-20 03:29:20 0x98a6769b451e6625b9d8487f0d2bbe1cf6dbc7b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003712090222 4.061397912 3077.74 Increase Custody Allowance | |
0x956e9eaf6cdabb3672f77fc6affcf40c8e5c1e0a3b3d6279a2340bca619266fc 14619990 1650432240 2022-04-20 05:24:00 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005690786131 6.226289105 3077.74 Withdraw Funds | |
0x2a36612d3f2c94ddd68349cfb5b404fb753ee57f32b400cd6510112b2b0de5e1 14620161 1650434535 2022-04-20 06:02:15 0xe1a39baf0d7d76cdd026dcb23abdf23923086cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002007851008 2.196789788 3077.74 Intend To Withdraw | |
0x2b90114167c0308d854cb84a4736d053f272345c84f23c88f9a99d049ec7abd9 14620788 1650442775 2022-04-20 08:19:35 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003002410376 3.284937193 3077.74 Withdraw Funds | |
0xded9257453a89d385812d6b6768a6beb45327fb6f52e096ebc3e22e91583da8e 14620889 1650444056 2022-04-20 08:40:56 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032576 3.317941402 3077.74 Withdraw Funds | |
0x0f054c0647ea874c4354a357674a2ad5a18765413804e1412e6c2f2c9acee47c 14621547 1650453203 2022-04-20 11:13:23 0x915dc86f97f66515ae9de796f51749e57c847368 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003537468754 3.870344563 3077.74 Deposit | |
0x3078d000ab5429f614e110681071dc6ba94508066db765d13d17745b40a70433 14621618 1650454173 2022-04-20 11:29:33 0x915dc86f97f66515ae9de796f51749e57c847368 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001314205726 1.437872484 3077.74 Increase Custody Allowance | |
0x6a30ece8477a1da6e1d5d4105ffd57e6e6561618e9d063016d22d52e7bd55241 14621751 1650455866 2022-04-20 11:57:46 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004024530734 4.403239076 3077.74 Withdraw Funds | |
0x9a66649fcd39d640ce916bdf427b1c3468f8305dfa80acc91f12e97f3465914a 14623492 1650478912 2022-04-20 18:21:52 0x875ddf2bf2417223861b969a6c12ce1858565438 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01450833443 15.8735687 3077.74 Deposit | |
0xccdc9284ead4f8976f958843b74387b0ee410543ef275b6b7811ace592b4d862 14626794 1650523557 2022-04-21 06:45:57 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003309838263 3.621294043 2984.24 Increase Custody Allowance | |
0x991aa807425f268b7f549266213012d5a924ff80585f80a711e5b9e8bc278dd4 14626955 1650525764 2022-04-21 07:22:44 0xb43aadad4f12eebc8953a9bf9ad8bb4e00c6428a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009223557282 10.09149402 2984.24 Deposit | |
0xfdc2dad4335f90d5c06d060ca79e9538d0e43f0223589dd00537c9c439fd2c4b 14628488 1650546800 2022-04-21 13:13:20 0x187ae5927f66427e65a334701f4188100696278c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009078546432 9.932837651 2984.24 Deposit | |
0x316ef08a9f235de8a5fe196dd727d5c2c48fa3fabb05adaf167414debc999ffa 14628496 1650546896 2022-04-21 13:14:56 0x187ae5927f66427e65a334701f4188100696278c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003454558165 3.779632088 2984.24 Increase Custody Allowance | |
0xb25d239b968e86cfd294b5afb355cb8d4009ecefe7f275fe983bde4ff7f16b0b 14632154 1650596433 2022-04-22 03:00:33 0x57a243c0df4c30efc64d7a4e94720b36d766fa3f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01070855537 11.71623043 2963.17 Withdraw | |
0x74bf710a1cbfd945900cb4414ff4c9be0c079b2b74446c3328a9a84f540a1ed0 14633415 1650613694 2022-04-22 07:48:14 0x31fa64d46a6e0ee7c6990881a3a7e02277bbf238 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0076169191 8.333671188 2963.17 Deposit | |
0x571c3f9fc145ced86465a04eb70baa21bd03d0d7a171f0d210d776c704e9a5a7 14633706 1650617626 2022-04-22 08:53:46 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002567300389 2.808883356 2963.17 Withdraw Funds | |
0xe52127f330298ee6026e59def71bedf6b1dd8a86b36fa92049fe292d06d0b876 14633911 1650620359 2022-04-22 09:39:19 0xd3327412485081111ef69ac484511d7879a671fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005954574111 6.514899535 2963.17 Withdraw | |
0xaa989710f1ea02147057ea3967beb86c835f247f32a157897e21b3ae6a99e068 14635404 1650640255 2022-04-22 15:10:55 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007140033687 7.811910857 2963.17 Withdraw Funds | |
0xd183787e70dffa71eae03d0a0d0a505853df16fb4740419ed6c554854324445d 14635421 1650640511 2022-04-22 15:15:11 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01038887785 11.36647125 2963.17 Deposit | |
0x1c7508dab0a267d1f8b3844e25aa33367ec1fb39d5537ba150a522d16a2593b9 14635428 1650640565 2022-04-22 15:16:05 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002802084711 3.065760882 2963.17 Increase Custody Allowance | |
0x9dda2e235ab16ee4fff6287df8603a0ce4200f92dad73fd762a80c9af73d16a9 14635591 1650642683 2022-04-22 15:51:23 0x8c6d9f12c4624afbf4fdcb0892a0fa7e5e6f4412 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01158096979 12.67073905 2963.17 Deposit | |
0x914802c51d7d5914ea0794e6e488f4efa30912cf26be65a38016425004507751 14636804 1650659175 2022-04-22 20:26:15 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005210360076 5.700654959 2963.17 Withdraw Funds | |
0x86ee87f92b0b1776008e5700fae7eebf3e1a8018229de92d284ee2ac612b62bd 14636808 1650659217 2022-04-22 20:26:57 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001427924695 1.562292409 2963.17 Intend To Withdraw | |
0xd5c9ff665cc5e9aa8e5073640d36ea30021cb1d273cf374e637cbaf2a14b71c1 14636812 1650659296 2022-04-22 20:28:16 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004372466612 4.78391572 2963.17 Increase Custody Allowance | |
0x48c10db8a7ffa63199d3c5ebe3e45b5abc06194bfdac5d6b6d6d369ae5212a02 14636849 1650659788 2022-04-22 20:36:28 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006695107 7.325116569 2963.17 Deposit | |
0x58ad5aeefb21b2dbf131181bf63d0c588a55871a53f258602d642c4c573a0653 14636881 1650660295 2022-04-22 20:44:55 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002316459 2.534437792 2963.17 Increase Custody Allowance | |
0xd067d1a1ec96316c3dbeec9940aed34480a1474d8c393484db7726764e07060f 14636881 1650660295 2022-04-22 20:44:55 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0027909225 3.053548307 2963.17 Error(0) Reverted Increase Custody Allowance | |
0x04dd75b4234b4b51b91956087d58ce0ad3c96e4d8c1ce28cc30b38485e83abe6 14637509 1650668587 2022-04-22 23:03:07 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001586044 1.73529074 2963.17 Increase Custody Allowance | |
0x37a7f95b8d482ff5c0a3cb534643eb8b7fe88b4b52c28634c0e875c7f6ad5008 14637735 1650671521 2022-04-22 23:52:01 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003902399395 4.269615178 2963.17 Withdraw Funds | |
0x051540e9703146506b29bd3e220b8f276f7e87afc5c7acfdad906a8c40b1fecd 14641440 1650721927 2022-04-23 13:52:07 0x272fb300717a9f7e0215afe22595af5cbfa58591 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005548392265 6.070495977 2933.65 Deposit | |
0x879e8acd7d85476574820df1fd28404fab30099db862e1b5ce2a8b96f5a155e5 14641688 1650725151 2022-04-23 14:45:51 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006484329297 7.094504684 2933.65 Withdraw Funds | |
0x9f485fd5b14cf6ece039440c20eba531e2fa069566c49f6b80f741f15d17d7e8 14642492 1650736010 2022-04-23 17:46:50 0xd57b086df589055e8d11a5fe5460dc358f128f2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00423365 4.632036465 2933.65 Deposit | |
0xd8d49bfa028a3c78a11bd2f684ea7d572025cac5ee5fe7b5238332f579b85773 14642621 1650737718 2022-04-23 18:15:18 0xd57b086df589055e8d11a5fe5460dc358f128f2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002011914626 2.201235792 2933.65 Increase Custody Allowance | |
0x435e023bb257d6d6577b58615bb02dd1ab5fb2cdd7d265be834a54c300118078 14645228 1650773016 2022-04-24 04:03:36 0x061e130573532f9a84d83e5276ebd8d0fed00cfe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002321424 2.539869998 2922.37 Withdraw Funds | |
0x4f2f2083a7f29123245daa6f29645bce73dba8d62fdc6ad5adf7c1f1c588de5f 14646161 1650785185 2022-04-24 07:26:25 0xd57b086df589055e8d11a5fe5460dc358f128f2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002059267315 2.25304437 2922.37 Deposit | |
0x329bfdbc0d1359906c9101c6f73316336c3e1391d27ac0911e45d29693e56b29 14646172 1650785373 2022-04-24 07:29:33 0xd57b086df589055e8d11a5fe5460dc358f128f2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008601566638 0.9410974058 2922.37 Increase Custody Allowance | |
0x7952326739360cffe0ee201892b71dfa141662d2742cf4f1372ec31ebffcae56 14646250 1650786467 2022-04-24 07:47:47 0x889502cab866389d64063542d14edff744dea857 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002179244109 2.38431098 2922.37 Withdraw Funds | |
0x53d9a45433845992e746f1f0fea81cb48839b05a6042a26248ab569fea35fc8c 14646283 1650786968 2022-04-24 07:56:08 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00281850139 3.08372237 2922.37 Deposit | |
0x9c7e18098781ee5338879a88274cafb19a35235ddb7e3960a40db84f74839d8e 14646306 1650787310 2022-04-24 08:01:50 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001130431922 1.236805566 2922.37 Increase Custody Allowance | |
0x643f3b0b9f2bfe7269b5a9361d267f3cf390e4247058c6c2bd3461da526a3092 14646380 1650788172 2022-04-24 08:16:12 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001778204346 1.945533375 2922.37 Withdraw Funds | |
0x8a0c384aae632f60fbee2e5f38ede17c46020fb171f37aa74a5fdc0becd3c31d 14647804 1650807963 2022-04-24 13:46:03 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003823845729 4.183669612 2922.37 Withdraw Funds | |
0x79ae25a25d29bd8379c52c53c6eca2a1ecd5df482271eac969f3896db6050225 14648316 1650815190 2022-04-24 15:46:30 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003240190778 3.54509273 2922.37 Withdraw Funds | |
0x7d4748ef40b86633c0a195be307bf72e9a87c4061fd7311941aa31d77c58dce0 14648624 1650819339 2022-04-24 16:55:39 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004250692137 4.650682267 2922.37 Withdraw Funds | |
0x743890f966439fa581de652a292aee8a2c5f1e18f3054d029f7c67f25298c291 14648635 1650819462 2022-04-24 16:57:42 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004144621609 4.534630502 2922.37 Deposit | |
0x8cbd236b2edab81555093398d2eb278caa7d22b29f20c2e916db5a03b3704cd5 14648657 1650819859 2022-04-24 17:04:19 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002266401673 2.479670071 2922.37 Increase Custody Allowance | |
0xc4e34b2c495fda67ab16a820e0a9130e2045d5cdf5ea37eb85d8c19c6c8dc639 14650718 1650847431 2022-04-25 00:43:51 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001207955695 1.321624326 3006.45 Intend To Withdraw | |
0x2bf3eeaf2fa094b7b3bb7627a712ec0b42acee0469b37ffcf1318dba511a7dd4 14652616 1650874014 2022-04-25 08:06:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009796916956 10.71880684 3006.45 Claim | |
0x53bd2aa1c93923ea8757fc1d7961455636694b1ffb4a860928de2e379fccbf7f 14652616 1650874014 2022-04-25 08:06:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009796916956 10.71880684 3006.45 Claim | |
0x1c8c4ec561655f94b5e55538dc717b0b7571cd9a6e4c72c060867c468498d523 14652616 1650874014 2022-04-25 08:06:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009796916956 10.71880684 3006.45 Claim | |
0x7246c444f3e34a64aff27b37f3dcf76731a16adb744ea36efc0d64589287a3e8 14652620 1650874060 2022-04-25 08:07:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007954401355 8.702910523 3006.45 Claim | |
0xc8dcd00ca626182a1e87f32eb2812c4aa9b5246a2df00b74c88e2d931c9e87b2 14652622 1650874100 2022-04-25 08:08:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006962321483 7.617475934 3006.45 Claim | |
0x2ea64de5d48a6e1c1b335b8865fd21f35d7771d5a0fb0658cef8a60a95179099 14653049 1650879584 2022-04-25 09:39:44 0x8c6d9f12c4624afbf4fdcb0892a0fa7e5e6f4412 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00192972052 2.111307221 3006.45 Increase Custody Allowance | |
0x6e3312dae9d1f7be38e7cdc9fc1299b9f9cb38e5f62bbf5ed5655a3ae502628e 14656531 1650926742 2022-04-25 22:45:42 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004352147275 4.761684333 3006.45 Withdraw Funds | |
0x9c7270bf0064973dedb9193aeb54a1e5c26417ee5d03f09115e1202a3cad2273 14657112 1650934963 2022-04-26 01:02:43 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006815977223 7.45736068 2809.6 Withdraw | |
0x79b4841aa285d1a125008206ad58c3c77ab5df3b055fb6f7b7bc0a240344aa90 14657120 1650935040 2022-04-26 01:04:00 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002713719231 2.969080211 2809.6 Increase Custody Allowance | |
0xfd827843339694c98d471bb0b66af36758eacc022c5b1e8fab76453c870e0e75 14657142 1650935321 2022-04-26 01:08:41 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001263475839 1.382368916 2809.6 Intend To Withdraw | |
0x460e0d0e20bc6b0333baa07cc1714b0ce2ebcb791b378bcdcbeaf13f09ed03b0 14658755 1650956722 2022-04-26 07:05:22 0xd7181d038545144aff736c975e00a79dd7838771 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0035687783 3.904600338 2809.6 Withdraw Funds | |
0xa5c2231f27d17455354cf768a8dd304fc8ac357eecb0f3c839f64e60d34c0de4 14658764 1650956878 2022-04-26 07:07:58 0xd7181d038545144aff736c975e00a79dd7838771 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001979094075 2.165326827 2809.6 Intend To Withdraw | |
0x31194a551d7a528c7c694a45adaf8b0403ad788bccc29c6c2f9ca929fc63e5ef 14661275 1650991701 2022-04-26 16:48:21 0x06ad5f1df17d278473136786353695b0749d8c9e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001605628404 1.756718037 2809.6 Intend To Withdraw | |
0xbe111642470f659581787fc3dbf3f8f729b3d7e964777a06673f37070aabe65b 14661956 1651001267 2022-04-26 19:27:47 0xc0819e1e01204bcb9cb5a0a3be826afedad6edef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0089410964 9.782453571 2809.6 Withdraw Funds | |
0x3584fe53f30c132ab933eb572bbc4fccdf99c2743ccc50385095420e9e62b239 14662575 1651009736 2022-04-26 21:48:56 0xb7693d3f040d66ab89ab86e7f8688c01febbc77c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009713358023 10.62738501 2809.6 Withdraw | |
0xf7f32144de11379985e933dd2339fc114931823c456c9e11627ff2b2f2115813 14662942 1651014278 2022-04-26 23:04:38 0x8d6845e3778a9a888b7e1ce1fc368101073290af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004922192 5.385370267 2809.6 Withdraw Funds | |
0xb8f71de4d742496dc257453a0b94e3e992f3a09f79330647a7c5196b3d54dd9c 14663290 1651019106 2022-04-27 00:25:06 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003595396495 3.933723305 2889.72 Withdraw Funds | |
0xef328b6ea1356e745c01a5cf6370d12c8ea5d7e26e81139924b734b517b0f342 14665295 1651046519 2022-04-27 08:01:59 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005436151762 5.947693643 2889.72 Deposit | |
0x8800105cd2a6f7df0210e28b0cc8a1d92a538c5a13dd45d5b7485bbc6027bd64 14665300 1651046637 2022-04-27 08:03:57 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002089614475 2.286247197 2889.72 Increase Custody Allowance | |
0xe3813e480fde2d9d5e0f9c2b227c55a80d01137345137f6437ceb8edc9fbcf7e 14668704 1651092103 2022-04-27 20:41:43 0x31f9c67605bdd59ac5ff20f701d5f206ef97a305 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01107394617 12.11600451 2889.72 Deposit | |
0x3dd9773ec85943a1d1d3b8a5f2822fdf39eab54076fa6b7b89567c27137685e0 14669270 1651100346 2022-04-27 22:59:06 0x5e60b0e7842ca0142c1b8ca10b1396de61ec086c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008064312624 8.823164442 2889.72 Deposit | |
0x8dff17cf5afd456c44ae7bf381e7d1239301e92b1e36899e4b62d73ddc54fce0 14669993 1651109746 2022-04-28 01:35:46 0x3ea81e57226d4386ad441683f0ebb63595ee91fb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006313524646 6.907627315 2936.49 Deposit | |
0x689b0c2eda92587b98fa289d90fdb21bf77db02b103aa0f8a9c43cc8f84c91ea 14670000 1651109850 2022-04-28 01:37:30 0x3ea81e57226d4386ad441683f0ebb63595ee91fb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002809920782 3.074334327 2936.49 Increase Custody Allowance | |
0xab71366cb49ee6888ec444e2df636dad28a71ec9c7602da403891b8bbf4abc56 14670222 1651112792 2022-04-28 02:26:32 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004776411992 5.225872361 2936.49 Withdraw Funds | |
0xfd312af9beb34023be3881d57184c942ce37f18ab4fe3e1680ff8065857b3267 14670577 1651117383 2022-04-28 03:43:03 0x31fa64d46a6e0ee7c6990881a3a7e02277bbf238 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003291559718 3.601295488 2936.49 Increase Custody Allowance | |
0xffbe366b7666ca9a6cd354b49a8d1d248c9e132bcc6c5b91898689571af62ef4 14670734 1651119817 2022-04-28 04:23:37 0xe4af5b75bce58135378e25dbf99ffba53c96e7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00246524387 2.697223319 2936.49 Intend To Withdraw | |
0x57d5a8b760ce9c2f1a88c968095ec362c1cd6b142830f60708dbd65cecb88aeb 14671316 1651128008 2022-04-28 06:40:08 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002229051431 2.438805171 2936.49 Withdraw Funds | |
0xdebe2ffd3872409351407aadf1317d64f0a93d60726f4211b01e2a578eef886b 14671591 1651131700 2022-04-28 07:41:40 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002264366642 2.477443543 2936.49 Withdraw Funds | |
0x9abf35b56ae4692aedb820533f3c1a51a13a4d18822b1d6d7f00b845778fd174 14672198 1651139727 2022-04-28 09:55:27 0x875ddf2bf2417223861b969a6c12ce1858565438 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002878159921 3.148994769 2936.49 Increase Custody Allowance | |
0xada52c40664d8d142205daf49689bc7e8eba91205c6bc4cfd35e1fc005ada4c3 14673323 1651155312 2022-04-28 14:15:12 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01373349181 15.02581339 2936.49 Deposit | |
0x43ab0d0aacf1e719c4180faf0475a684bda2be5d82b087ec4bc948dc16abfe21 14673342 1651155525 2022-04-28 14:18:45 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004337432242 4.745584616 2936.49 Increase Custody Allowance | |
0x2b7fd8556b2caa178493a04620ebb40ed0b74ed5a49d6807d3e392134ccceeb5 14674311 1651168931 2022-04-28 18:02:11 0xba0b3e6a81d8f26a46d958a36cd364ec0ee4476d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004019578139 4.397820442 2936.49 Intend To Withdraw | |
0x9548317317960d5b30183ab499be59fadcc5c8abfd688e4925040c297b6ade37 14678052 1651219864 2022-04-29 08:11:04 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005160071703 5.64563445 2817.23 Deposit | |
0x3395131e9d6a328a5c1286e60dbc45d8ee2bd44c3a4a8b238008ab454477e152 14678059 1651219929 2022-04-29 08:12:09 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001486616505 1.626507118 2817.23 Increase Custody Allowance | |
0xef9516dd328a83744d7d9a40d23702c22b324d1bfab718fdf6a6cd86ac18dee0 14678442 1651225433 2022-04-29 09:43:53 0xf97e42d65d09813f1765788bb666488b8e9f4b0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003905442614 4.272944764 2817.23 Withdraw Funds | |
0x4f42a795cdb5379b4d6a3b006ba254869642683f4f17267db2a81b6a642ea603 14678480 1651225890 2022-04-29 09:51:30 0xf97e42d65d09813f1765788bb666488b8e9f4b0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003925074786 4.294424323 2817.23 Deposit | |
0x1f2deef78f62c56d83d14731310ad8f5c8d39399699415c18350a01e844cf585 14678489 1651226059 2022-04-29 09:54:19 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003549216654 3.883197941 2817.23 Withdraw Funds | |
0xffed1f28a79a79e5f618e783f1fd5ee83bc2e8bf5316f076b1480d3553baa61c 14678626 1651227788 2022-04-29 10:23:08 0x22ab0ce219be85cd12e791d715ee5ff1922d9a4f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004455271132 4.874512146 2817.23 Withdraw Funds | |
0xa7e5ebf42c7bfb0d0d40a79b5b49b7214a88f63149e0e3c5076ab7b2d1341ddf 14678919 1651231825 2022-04-29 11:30:25 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003527657133 3.859609669 2817.23 Deposit | |
0x0d0303b02e3e9f3978b5f0e37d72d97369578a11c9f0d67c4f461da6c6f9be71 14678927 1651231940 2022-04-29 11:32:20 0xd27262803a83b2f38c5720e934c1d461c081e631 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00130623882 1.429155893 2817.23 Increase Custody Allowance | |
0x1745dc9488e93d6a1e92c82a63d596902fa64bf80ecc19cf0940b55ecf92dccf 14679537 1651240004 2022-04-29 13:46:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007963609227 8.712984855 2817.23 Claim | |
0xf97ffbbde27061f48d9140b60d5a7e68da039f1bf095da7fb84cf44d1749a628 14679545 1651240097 2022-04-29 13:48:17 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008187937697 8.958422635 2817.23 Claim | |
0x9f06868663f8b588436ec8859465c032e3633267e86578785a3f0a1bd780985b 14679555 1651240200 2022-04-29 13:50:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006508196297 7.120617568 2817.23 Claim | |
0x0c9e049b475731932bed7ab6dd5097e3b58b9140a0703e62f75f9dc0e7d27fa2 14679564 1651240305 2022-04-29 13:51:45 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009321801165 10.19898265 2817.23 Claim | |
0xd3cf4e7d1e095e8f563ba2c6ff1d176b5fd88563b0a256133880f8ea32580d6a 14679581 1651240564 2022-04-29 13:56:04 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009857220776 10.78478525 2817.23 Claim | |
0x2610b14724d9adcd72b867705b21fca3c85b06214ffc4e619699574bac38e31f 14680019 1651246423 2022-04-29 15:33:43 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005282591493 5.779683352 2817.23 Withdraw Funds | |
0x5c2b14eb0a1f711422faea117271f94ac710c2c25d314c4c12374a0db3479978 14680228 1651249385 2022-04-29 16:23:05 0x56cd86d6ef24a3f51ce6992b7f1db751b0a0276a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01732560144 18.95594054 2817.23 Deposit | |
0x4a8e29283509ce9297615440992c71a81bd216e8836fec1793558a57451ff9d1 14680234 1651249479 2022-04-29 16:24:39 0x56cd86d6ef24a3f51ce6992b7f1db751b0a0276a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007831520599 8.568466687 2817.23 Increase Custody Allowance | |
0x5127349644d20fcdf71c149d934e91c351623ed3637a4d3a2383dd10dd6560fe 14681301 1651263070 2022-04-29 20:11:10 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002151584425 2.354048519 2817.23 Intend To Withdraw | |
0xf1d9ed16d0e917699d3b2e1cfdf68ab4b0fe95cfbb88461bb04a5d76cf937b99 14681624 1651267894 2022-04-29 21:31:34 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008665049733 9.480430913 2817.23 Deposit | |
0xd325ebfbba10103b55666b6b9a37a5f55e2264ec44a5fb7159ef1e804fd4e91f 14681631 1651267935 2022-04-29 21:32:15 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001887993815 2.065654033 2817.23 Increase Custody Allowance | |
0x5f68535a5e53dfe64af894f0b942442967f4211be15399540f2053eafa5a3750 14681643 1651268083 2022-04-29 21:34:43 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00454229625 4.969726327 2817.23 Withdraw Funds | |
0xcc5689d6764eca553a92bf0450c58ec4016da9722adaa3049e7edb4c3ba3b724 14682155 1651274963 2022-04-29 23:29:23 0x7d96a6f41fd31c7624f7069415be58b5e3576d34 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001157998668 1.266966342 2817.23 Intend To Withdraw | |
0xfbc2ea97feb5d01abeefd13ccbc224bfcd76b64caf2d9069af24dfb9007a3f43 14684280 1651304042 2022-04-30 07:34:02 0xe1a39baf0d7d76cdd026dcb23abdf23923086cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00521807066 5.70909111 2727.87 Withdraw | |
0xf098c2fa4061cf7b6d72291b75710c4dde90d97f76c88f0bfc88b819aed4bed6 14684501 1651306823 2022-04-30 08:20:23 0x81813cf66f39ad2e99508ebf74f3e8f51aebcdb4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006097257391 6.671009311 2727.87 Deposit | |
0x51ea9eb5e57dee7ae3214015e7308f06a1738cc787e02743f70f64c7a4f86f23 14684635 1651308458 2022-04-30 08:47:38 0xab219045455fe12bd0f66b9fac825d40560036a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001652175346 1.807645046 2727.87 Intend To Withdraw | |
0x0bfebee2054ebcb0cd94be775d9353bb67f90a8dcfb181ec3da71ca58c0a38cf 14684758 1651310362 2022-04-30 09:19:22 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002340571199 2.560818949 2727.87 Withdraw Funds | |
0x7dd1860525b7a83cd4a2c17294d218bf1bbee789939789e0ae29048990ba7d21 14684826 1651311361 2022-04-30 09:36:01 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004267378123 4.668938404 2727.87 Deposit | |
0x0703d6f1895656344901dcd746b2325ab62ebbc806f5295e774cf74756025b6d 14684830 1651311414 2022-04-30 09:36:54 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001333823555 1.459336351 2727.87 Increase Custody Allowance | |
0x4ea67b01f05c610379ce50a75469798e4116f5eaed543d287cfd2ee69c5391dd 14684986 1651313339 2022-04-30 10:08:59 0xe09d6b11e8db4230094084920889c45bad85b1e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004805033976 5.257187673 2727.87 Deposit | |
0xd11fbdda484693da22a43bb9fb861b578beb589eab49e5ca76d6612deb145c8f 14684988 1651313372 2022-04-30 10:09:32 0xcef64d127c94544e312be9dcacaf83fe42154072 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002653504 2.903198726 2727.87 Withdraw Funds | |
0x14d1e18c355667df3748e4de7bd347f649911f101e8002e88fc94089d39a6154 14684992 1651313419 2022-04-30 10:10:19 0xe09d6b11e8db4230094084920889c45bad85b1e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002225915297 2.435373927 2727.87 Increase Custody Allowance | |
0x955657496eda80e3c4004af6ec0c92a63fac10805c308ce15213ad07312b980e 14685057 1651314392 2022-04-30 10:26:32 0xcef64d127c94544e312be9dcacaf83fe42154072 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003416715 3.738227882 2727.87 Withdraw | |
0x78da1f86702747fbef3c3c0a3be123d49d06dcc8e0c2b5fd2e2411965770bf1a 14687110 1651342669 2022-04-30 18:17:49 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005213528245 5.704121253 2727.87 Withdraw Funds | |
0x10b9be4072820a172c8ea78d5efffea3a816431732cc03d11fcf95048681a35d 14687122 1651342847 2022-04-30 18:20:47 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005914665291 6.471235295 2727.87 Withdraw Funds | |
0xb68bb7a91487998ed0e2a24e7df32c2acaba1d568f818f95e1e1fb5b9b0a8316 14687883 1651352531 2022-04-30 21:02:11 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005430116 5.941089916 2727.87 Deposit | |
0x47fc914b2cbb6945b16258e29e14b2566bbf25ace7878f72e037f86d14f95946 14687902 1651352847 2022-04-30 21:07:27 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00204575 2.238255075 2727.87 Increase Custody Allowance | |
0xdcfd9bbb97662058b2fa944f71859d200daf205ceb25e43d2687a8b8f8cb3b4d 14690730 1651390952 2022-05-01 07:42:32 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006619532348 7.242430342 2826.04 Withdraw Funds | |
0xe3c256def368d88129c32726705364f4ed0e272e3b3a29282ce40e709337cf88 14691226 1651397976 2022-05-01 09:39:36 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004169792 4.562169427 2826.04 Withdraw Funds | |
0x19b3fe1efe26fd8785eb6b390e04fb6cb9c25b9032b4b79d7e06f9c23d0aa28a 14691229 1651398009 2022-05-01 09:40:09 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003998008 4.374220553 2826.04 Withdraw Funds | |
0x3220f340e9b6a6f8dc079100bb1b7d7fd85e4b5ba7c982ed70c5b902f91c8b5d 14692151 1651410476 2022-05-01 13:07:56 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005076693006 5.554409818 2826.04 Deposit | |
0x3942bb48bb26c0d83f9953927ea3009af6b42ec94bae0ea5c03cef026de45023 14692152 1651410501 2022-05-01 13:08:21 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00193269746 2.114564291 2826.04 Increase Custody Allowance | |
0x1ee4152f0ac877aa3d60dc0e393a44f83febda0e4e3cd1e460d31227e4ff27a7 14693089 1651423542 2022-05-01 16:45:42 0x6b6310bd7fb278c7d6a12f888a0360b44d209e33 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006879237993 7.526574289 2826.04 Withdraw Funds | |
0x221d4d07433231ecba4bc5a9c8bd23ed59afd7ce6358e565f6c16d0d6cd90864 14695032 1651449881 2022-05-02 00:04:41 0xc474c00256fa9f6d3f1b7b71dbde12d44a1adf27 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01103456058 12.07291273 2856.12 Deposit | |
0x1fcb5263e410c48a591b3bb9e40de9099a8ae1919f6c800509fd1889f419a0c4 14695039 1651449970 2022-05-02 00:06:10 0xc474c00256fa9f6d3f1b7b71dbde12d44a1adf27 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004936011433 5.400490109 2856.12 Increase Custody Allowance | |
0x5bcd69fbcb54cf2885e57221c5c909ecf20916f6b10cfd890462f75ba2f3c5d7 14695362 1651453941 2022-05-02 01:12:21 0x86a5905c330325d930830c2a4c7bc16096f10cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00121078695 1.324722002 2856.12 Intend To Withdraw | |
0x76335e37986ef6f67bbf50d6da685ac0b613e442751670df56e5d15f8b2d820b 14697399 1651482125 2022-05-02 09:02:05 0x87616fa850c87a78f307878f32d808dad8f4d401 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005466006285 5.980357476 2856.12 Withdraw Funds | |
0xea7ffefefbfc9fa1a10aacf023f2e586f1a45ef37f34bf80ca534e75c1211fd8 14698836 1651501756 2022-05-02 14:29:16 0x87616fa850c87a78f307878f32d808dad8f4d401 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003583530866 3.92074112 2856.12 Intend To Withdraw | |
0xa2435b3a04a7f4638b0432403a947a9de8e5ad0aae647209b81e764f436cf630 14699086 1651504893 2022-05-02 15:21:33 0xc95adae711dfd7c741db02d6645d24aa91cec563 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009403407627 10.28826828 2856.12 Withdraw Funds | |
0xb24ba1d02926853417b5a22296a9b6300f465f9854854100f8f9cd0fdf562623 14699739 1651513673 2022-05-02 17:47:53 0x430e076e5292e0028a0a17a00a65c43e6ee7fb91 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01506748604 16.48533648 2856.12 Deposit | |
0xcf20d9186fc99d56024967c1a43018ce849d9dfe961450f56ccc99c60616e351 14700410 1651523307 2022-05-02 20:28:27 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01104750356 12.08707365 2856.12 Withdraw | |
0x4b8df1bd6cbe8feceebff05c264722c4cee845fe9cccb68afea368b9922a0e88 14700415 1651523412 2022-05-02 20:30:12 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007127423011 7.798113516 2856.12 Increase Custody Allowance | |
0x9e09aee91c22f39f980ce234041a1fa8b683a6bfbce61fb7c0ba5cc5b86636df 14702617 1651553273 2022-05-03 04:47:53 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0068050036 7.445354439 2780.63 Deposit | |
0x3e5d0c935d0beccfb090e43b9c247072aebea1ea5d588909cb7e282ff5d36502 14702626 1651553421 2022-05-03 04:50:21 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0023122852 2.529871237 2780.63 Increase Custody Allowance | |
0x1be09a03448f3a8a12998183be1dfc36046522e5b3e0b2b1a2d674b14f20cee2 14706269 1651602871 2022-05-03 18:34:31 0x6657755ba6663c3ddc77e20aaa5c05c27026abec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006266411377 6.856080687 2780.63 Withdraw Funds | |
0x7a5559960613e9a64d73dede7220cf5e6a40dc1d23490a553176a8fcc71d47d9 14706381 1651604231 2022-05-03 18:57:11 0x5b1d911e4405c252dc3fe62131b458321d6dce4a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009008948091 9.856690106 2780.63 Deposit | |
0x926ea7af8faea5cac29868ae82648aadaa9b0560e53cbeb5f94dc06a0ae8f386 14706403 1651604556 2022-05-03 19:02:36 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00679334066 7.432594016 2780.63 Withdraw Funds | |
0x707da7e14d8f2c819f81d7ad2e37e1398d9b792c8e290d1f55d8fcdbb3b1687e 14706453 1651605193 2022-05-03 19:13:13 0x5b1d911e4405c252dc3fe62131b458321d6dce4a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004038623348 4.418657805 2780.63 Increase Custody Allowance | |
0x122393aeaf54bda70ab55c08f0610af866ef43e3115316c2d99cea905d76e601 14706526 1651606177 2022-05-03 19:29:37 0x6226f686e215b3810ec402b1401bc43fa602193b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.011600315 12.69190464 2780.63 Deposit | |
0xf25393272c6223b6cf4a3af76dd9aab0a8d044d1a5cbc9cd5052e21707c59d3c 14706536 1651606274 2022-05-03 19:31:14 0x6226f686e215b3810ec402b1401bc43fa602193b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004097351651 4.482912442 2780.63 Increase Custody Allowance | |
0x4e294630e6d6e0d9f68ea2c00e90db82c2ec34d8663e042f741b390bae8f276a 14707151 1651614845 2022-05-03 21:54:05 0xcc4c7bf99b447f4301e963bead6b1e0bf7acdd2a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007553505294 8.264290142 2780.63 Deposit | |
0x9be0b6d91e23ede46c6bc97272b875f7dec8535ffe0f973d12f3568df455227e 14707159 1651614926 2022-05-03 21:55:26 0x4303ddc9943d862f2b205af468a4a786c5137e76 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006870474834 7.516986516 2780.63 Deposit | |
0x35e05877009eb8b00bd13d2f820724e9f02f6b3f964e577449d5c6182197a14a 14707165 1651615011 2022-05-03 21:56:51 0xcc4c7bf99b447f4301e963bead6b1e0bf7acdd2a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002766385841 3.026702749 2780.63 Increase Custody Allowance | |
0x4f00c583d6479044975713107772d0e0fdfb9af01c919dc1a1d587543dd54836 14707231 1651615905 2022-05-03 22:11:45 0x4303ddc9943d862f2b205af468a4a786c5137e76 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00434542276 4.754327041 2780.63 Deposit | |
0x167d5de573da6a316c30e18e8b09bba6368e21de78785af81906d9db5bc742ec 14707231 1651615905 2022-05-03 22:11:45 0x4303ddc9943d862f2b205af468a4a786c5137e76 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002694005653 2.947511585 2780.63 Increase Custody Allowance | |
0x3be326d2dcffe21c97a700def50a7026ab778e2af598ad99b3a4fd3c59c33ecd 14707503 1651619693 2022-05-03 23:14:53 0x4303ddc9943d862f2b205af468a4a786c5137e76 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001575925701 1.72422031 2780.63 Increase Custody Allowance | |
0xdb7f189323887d0836473577341079a5c22f2ce0068b1126f7d45ecb7355e286 14707545 1651620237 2022-05-03 23:23:57 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0036743903 4.020150427 2780.63 Withdraw Funds | |
0x1a83a898f636ea699b58e508134317d49888d121b220a2f2646c5a001c784309 14707741 1651622849 2022-05-04 00:07:29 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004313410818 4.719302776 2940.31 Withdraw Funds | |
0x1b7900598f52e981a2762e266ad5d8f5afa3da561f8c980bf23e616b5cbd9942 14708047 1651627397 2022-05-04 01:23:17 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004931178181 5.395202048 2940.31 Deposit | |
0x5282cecdb953674a42984a5f1fa85bef5e770be89b7597b8567131579f6816e1 14708098 1651628204 2022-05-04 01:36:44 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002141647538 2.343176571 2940.31 Increase Custody Allowance | |
0xa8df8ef4ecbab810c8245ad0dc23dc56d82424107911452da69ebd900ff386f8 14709922 1651653674 2022-05-04 08:41:14 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032576 3.317941402 2940.31 Withdraw Funds | |
0xc82cafe3d5899fed9b560767af82996f6a6e9d18155d140c2f432e996e53feb4 14713044 1651696197 2022-05-04 20:29:57 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009342520536 10.22165172 2940.31 Withdraw Funds | |
0xe00a432abef42979c928fc4f58ad004fe1bee4e395f6a5ae14133a2b1b8b8b54 14714455 1651715398 2022-05-05 01:49:58 0x01e060498c74141ec7454c6b8cc670dd1a99a2dc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006161812426 6.741638976 2747.28 Deposit | |
0x2a74c8b412bc7766548982a0af8eb1c7168ac09564cffcf61a09762d699a2c18 14714521 1651716314 2022-05-05 02:05:14 0x01e060498c74141ec7454c6b8cc670dd1a99a2dc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005714305921 6.252022109 2747.28 Deposit | |
0x50f735fd5811fd16db0a7dc2c37e55ce7d2e78f83cfc776a944846d22cf72c01 14714522 1651716388 2022-05-05 02:06:28 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005888558468 6.44267182 2747.28 Withdraw Funds | |
0xd01d728f3b0e6fcd3639539290337907730791761db538ee493c19fe17a42eff 14714526 1651716439 2022-05-05 02:07:19 0x2666cbf3fce3808c998e9fb671689dcd3eddc672 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008179834197 8.949556595 2747.28 Withdraw | |
0x8e761a25747ee04f88c36d37e2480ebf790b84dbebfb0389f723753fa242e797 14714553 1651716706 2022-05-05 02:11:46 0x01e060498c74141ec7454c6b8cc670dd1a99a2dc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003153225241 3.449943736 2747.28 Increase Custody Allowance | |
0x190e9821a392c198d0a953298cdac5eee0f32cd3663ac8a625fee041794746fd 14715477 1651729260 2022-05-05 05:41:00 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003031298335 3.316543508 2747.28 Withdraw Funds | |
0x7d95bc63419c23aa7ec16f1551d61b9364da6e701f46c40ce906ae5c6a60a6bf 14715479 1651729281 2022-05-05 05:41:21 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009810310349 1.073346055 2747.28 Intend To Withdraw | |
0x2482880a41a11fd64659c56c59e91f2d705b1e2baf34fe8566f25d4d7278c153 14715971 1651736056 2022-05-05 07:34:16 0xcfdb54a3326740ea8aca41d0a2d664ffd41ee327 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005087963513 5.566740879 2747.28 Deposit | |
0x795045594e7ef10c9c25c09c1b283e4c9fe5ac07ef3130153f257652ffd704c4 14715988 1651736263 2022-05-05 07:37:43 0xcfdb54a3326740ea8aca41d0a2d664ffd41ee327 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002320689163 2.539066014 2747.28 Increase Custody Allowance | |
0x6076af5f5356b10726b32f5f8d732434d12adcafca35899b0158ab75cf6c35bc 14716502 1651743332 2022-05-05 09:35:32 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007558758474 8.270037646 2747.28 Claim | |
0xc8a0d1805b98503704ac66733e696e65e09f175f2f35075577cf9d28a4d3272d 14716505 1651743371 2022-05-05 09:36:11 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007503546059 8.209629743 2747.28 Claim | |
0x5e08e0198e8088851900662a820b3db45530998c5484b88bb4a18bb8c2518a43 14716510 1651743444 2022-05-05 09:37:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006482972075 7.093019748 2747.28 Claim | |
0x7b36c6556f57e7f0ebdc0275d0d86ba6986736f65197c2df74ffa00a70719b60 14716512 1651743452 2022-05-05 09:37:32 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005679646905 6.214101678 2747.28 Claim | |
0x43c153aa12637ada314ebebb8bf8b06e5285d2f0e42959f29c3507fb52480072 14716513 1651743481 2022-05-05 09:38:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006336826295 6.933121649 2747.28 Claim | |
0xead76721dfd263240e04623c47bff35d40275d86e89f0937b357f4869620e8f3 14716517 1651743536 2022-05-05 09:38:56 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007140038291 7.811915894 2747.28 Claim | |
0x9637854658f42e5ab1e0c71d5fd0d1039360ffa69784a1c1e84a57b6fe6d8ac4 14716520 1651743588 2022-05-05 09:39:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00630938865 6.903102122 2747.28 Claim | |
0x72ebbf1d83a0954de4417634550e6ba7b43532eabf4dc0266260055e58607889 14716523 1651743622 2022-05-05 09:40:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007439537463 8.139597938 2747.28 Claim | |
0x7e554fb02d1a1d7806617db5c5aaa0685d12cf20df199a05e27c3e2ba2cda0a0 14716527 1651743702 2022-05-05 09:41:42 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006756299555 7.392067343 2747.28 Claim | |
0x0694529d3a6233578fa1816352d0cdd716004495ff169a3be3f1f3f3cb8bf6c8 14716557 1651744118 2022-05-05 09:48:38 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002404540955 2.630808259 2747.28 Withdraw Funds | |
0x696f4a988de575d6d3affd7e95a21a857a8a2967c1d24bf2ea779e62c6afe20c 14717544 1651757949 2022-05-05 13:39:09 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01312385701 14.35881195 2747.28 Claim | |
0xc9b71e66bad16e4c0b73196e0a79abd636e725e332fba1590b433c46a7da1866 14717555 1651758068 2022-05-05 13:41:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02479474748 27.12793321 2747.28 Fund Loan | |
0xca9d49a812fc9d79dfe4d02ca581c347f1948b6cc1322322b2004d788909a516 14718422 1651770187 2022-05-05 17:03:07 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005433575235 5.944874665 2747.28 Withdraw Funds | |
0x68975dd1c4305595d9a5b4aa16c36d8487959a0070bd26f13ca97e491c1886df 14718433 1651770468 2022-05-05 17:07:48 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01119102477 12.2441002 2747.28 Deposit | |
0xf4b571bfeeb36deb295d94993951a2e93c122342c99bf945890128c445ad1903 14719827 1651789162 2022-05-05 22:19:22 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003011298 3.294661142 2747.28 Withdraw Funds | |
0x6fc759ede4c54ca899cbdadd8c9f507e27c08364eaa152a9a1150554ac672774 14720891 1651803862 2022-05-06 02:24:22 0x785b9940eaf44be2b832c61816ff873b97a8ad63 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005738235701 6.278203681 2692.08 Withdraw | |
0x1d30d5c67647ca5e8c6429de776d0d7f578a7bde585dba36723a29192397075a 14722037 1651819542 2022-05-06 06:45:42 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00322475529 3.528204763 2692.08 Withdraw Funds | |
0xcf6242e1cd86f13f7148f2afa148be6cf153e4cde8f982ab625e36af79605a28 14722442 1651825209 2022-05-06 08:20:09 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004531210598 4.957597516 2692.08 Deposit | |
0x149c985b20f7c55b458356c4d6040caae6856bf4d597aa2e7172a0bac8f556d3 14722447 1651825249 2022-05-06 08:20:49 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001514380398 1.656883594 2692.08 Increase Custody Allowance | |
0x788866a142e503328fc5b85a974e6ad89df903f5c77674ec07504191117f72b0 14723487 1651839500 2022-05-06 12:18:20 0x775f6a8eaa17775eb19e7f873ae2d8a807b20b95 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004041888998 4.422230753 2692.08 Withdraw Funds | |
0xdfc10cb924c7d6000e8c4ca20faa337223d27ede3a32629655351312b1188608 14723532 1651840104 2022-05-06 12:28:24 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032576 3.317941402 2692.08 Withdraw Funds | |
0xbb927fc4ba7a563879342af475508f51420479417c7949dac2f096d46e5421d2 14723551 1651840381 2022-05-06 12:33:01 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004930833842 5.394825306 2692.08 Withdraw Funds | |
0xe1f7c1ebb821b9cedc72c2b6bfe7c491f10661dbed7a020c7038cd8e3d6ed640 14724868 1651858417 2022-05-06 17:33:37 0x06ad5f1df17d278473136786353695b0749d8c9e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01053495853 11.52629812 2692.08 Withdraw | |
0x86b6f200842ea87620e0bde77a359c9b256ec83bef88b3ac5856eb97c16e1eee 14725158 1651862268 2022-05-06 18:37:48 0x0a6a7158374f58edb090400d004c90344e1c6894 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007019604095 7.68014884 2692.08 Deposit | |
0xc5beb4b2234d4a295003c4510aa843a5ae42851db680a64e049d770130951bbc 14725167 1651862344 2022-05-06 18:39:04 0x0a6a7158374f58edb090400d004c90344e1c6894 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002419268127 2.646921258 2692.08 Increase Custody Allowance | |
0x2a796f4347e134a588786e8969345b287d9438a3949196d47d00ab03fadcebf4 14725703 1651869859 2022-05-06 20:44:19 0x056517f7429d68e08d8d5831522a0706b3bb0207 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004883138854 5.34264222 2692.08 Deposit | |
0xdf70891f87a2cb22b5c5308bc67cf5217cda89f7a7fc55466a560c3170bccd3c 14725722 1651870137 2022-05-06 20:48:57 0x056517f7429d68e08d8d5831522a0706b3bb0207 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002351058739 2.572293366 2692.08 Increase Custody Allowance | |
0xb33c69fc78abacda6377c2996f8af822f4b7123e2b5270f1695074c5a94faf7f 14725753 1651870545 2022-05-06 20:55:45 0xc95adae711dfd7c741db02d6645d24aa91cec563 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003725510634 4.076081184 2692.08 Withdraw Funds | |
0x81cc51934675de51965aed248110c37ca2f34e977735745803a44ea725d5ae85 14726480 1651880426 2022-05-06 23:40:26 0x7ddae6d9a3fed143b1395f54b0801459475005ba 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00249597744 2.730848917 2692.08 Withdraw Funds | |
0xdfb1cd48d5ad18cc9d5798d2935612971924e5becb671101243ee1760d810887 14727006 1651887631 2022-05-07 01:40:31 0x856644fcf59f2d5d78613defe111df101605c77e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003711508368 4.060761306 2635.19 Deposit | |
0xf1503c43acb94b90d94c16bd06bfd5f749b43f49d17d09b942617b4b34761385 14727637 1651896538 2022-05-07 04:08:58 0x7ab92301188fe96b8381b7349663e1c54ac74718 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001009652837 1.104661169 2635.19 Intend To Withdraw | |
0x9913f973c4acbd0875a5fc7bd776910e1d7afc8086feb0a3b1f3acee025e9751 14727871 1651900021 2022-05-07 05:07:01 0xd57b086df589055e8d11a5fe5460dc358f128f2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003606550612 3.945927025 2635.19 Deposit | |
0x2870e54adb8bf84dde043f4fe94e50c0ed50eee2a09073f411e3340ac6f2172a 14727915 1651900671 2022-05-07 05:17:51 0xd57b086df589055e8d11a5fe5460dc358f128f2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0010855 1.18764555 2635.19 Increase Custody Allowance | |
0x96e024d4e33edda5c067378bd3e8a4e8d16a1e1671d41bbdcefb1c181a0225b9 14728049 1651902809 2022-05-07 05:53:29 0x3ea81e57226d4386ad441683f0ebb63595ee91fb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003243404156 3.548608488 2635.19 Withdraw Funds | |
0xaa1a021d602d4132f8aafd20d6133c5b19bbd951578b50b4ec284d2b418459bb 14728120 1651903808 2022-05-07 06:10:08 0x3ea81e57226d4386ad441683f0ebb63595ee91fb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00295085 3.228524985 2635.19 Deposit | |
0x92672472ac539141502d1761577709acbf6fb15f12317b5c1e1eedb6c1076021 14728156 1651904391 2022-05-07 06:19:51 0x3ea81e57226d4386ad441683f0ebb63595ee91fb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001228960181 1.344605334 2635.19 Increase Custody Allowance | |
0x0115489b2b3bad5d8427f68d18126a3fdc8d1b98788faa4303024e79f4a18cac 14729796 1651926210 2022-05-07 12:23:30 0x76bfdb851cda72ffcd86c7544ac649c84402764e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002101660472 2.299426723 2635.19 Withdraw Funds | |
0x863255b9df3827ed11edfe00a5054d18458463eb45e0845d196fabb80d281911 14729851 1651926813 2022-05-07 12:33:33 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002148976497 2.351195185 2635.19 Withdraw Funds | |
0x4eb2796deeabad5aea2a014a4c476c685df7a68b5cf3a4fb7d4afe83994a0f78 14731248 1651946182 2022-05-07 17:56:22 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003033091634 3.318505556 2635.19 Withdraw Funds | |
0x821cbc20c711305de30eeeea1d270da8a2ae3f11eddc027c37cbf5f7ca263a91 14731571 1651950369 2022-05-07 19:06:09 0xe9d6e2b6d15e386266b634fe12b868faa3b3fd5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00277727042 3.038611566 2635.19 Withdraw Funds | |
0x849e474561ca75338f1474149ff1cceb6c0e439f62d7890422690ceacadcf53f 14733199 1651973167 2022-05-08 01:26:07 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001140232468 1.247528343 2519.08 Intend To Withdraw | |
0x48c96b7bd97d475d9573daecda7d9417d3158a7e9ca72a200b9283c9aa4c5904 14735008 1651998537 2022-05-08 08:28:57 0xfa0ff9af46adb1e565bb1b96fdf8250d9b7b2bcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002806043009 3.070091656 2519.08 Withdraw Funds | |
0x9ea32c32b77f8779978bf5413bc6abb57620367f81fc40833a8d506b4dba98d1 14735208 1652001502 2022-05-08 09:18:22 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00088950777 0.9732104512 2519.08 Intend To Withdraw | |
0x25a9b78e3f64aa7f9d64bd35b690cc355be9c12bde47bc2e48b13eb234ff5b3b 14735458 1652004674 2022-05-08 10:11:14 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001671728449 1.829038096 2519.08 Withdraw Funds | |
0xe80fca32b1891df365ab81822966bafe3737b7ffff6f55258bf9588906e6bc4a 14735465 1652004730 2022-05-08 10:12:10 0xccded884158e192492e1d2e522cd573c4a9903c9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001477849382 1.616915009 2519.08 Increase Custody Allowance | |
0xa7f0b9213ac3ea37da269d9ae7897161b8523b7be577609d00c00cf1c80df79b 14736227 1652014761 2022-05-08 12:59:21 0x644bbb5dd5162ab487074de04f6f2a66cf7eaf53 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002397285369 2.622869922 2519.08 Deposit | |
0x04d3a46188da0df7d47341fe427333d64a1a24789b7e88ae729c432ed8c4cb20 14736243 1652014928 2022-05-08 13:02:08 0x644bbb5dd5162ab487074de04f6f2a66cf7eaf53 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007482125196 0.8186193177 2519.08 Increase Custody Allowance | |
0x8478e08e6de550924a500444c09f863047e6f7c60068094cb89a78e4d6591694 14736277 1652015325 2022-05-08 13:08:45 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002029948226 2.220966354 2519.08 Withdraw Funds | |
0x3136e84b5494a33cb8af5ca067f7f0fe60ce30ed41150c9277a81718edf854b8 14737655 1652034360 2022-05-08 18:26:00 0xe9d6e2b6d15e386266b634fe12b868faa3b3fd5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002295699615 2.511724948 2519.08 Deposit | |
0xb914974be320f69a5448ef6618d1223e5e2f4bcb2244f52ffa9ec996eefcc93a 14737667 1652034473 2022-05-08 18:27:53 0xe9d6e2b6d15e386266b634fe12b868faa3b3fd5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008132168628 0.8897405696 2519.08 Increase Custody Allowance | |
0xaba606a4e7602b381d75dabbb308fe134aceff7e9dba50157dba83e817956552 14738541 1652046118 2022-05-08 21:41:58 0x40fd38b62b734930da2c20d004f502bb7360a082 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003811017777 4.169634549 2519.08 Deposit | |
0x628a4d8a7e89e1c35582ee520f998f00848ee240788e7d5eb1d6f8f8da843a70 14738555 1652046234 2022-05-08 21:43:54 0x40fd38b62b734930da2c20d004f502bb7360a082 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001170165147 1.280277687 2519.08 Increase Custody Allowance | |
0xeaa19673a5be86a98ad30ee448197b9dfab2311314b38e272421b0ea1ca51e9b 14739567 1652060433 2022-05-09 01:40:33 0x061e130573532f9a84d83e5276ebd8d0fed00cfe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001391477748 1.522415804 2230.95 Withdraw Funds | |
0xabd323958ee57a21cb1a6f4104d2cb5f1217aed45b95e8601e7f5ca12172a22c 14739757 1652062884 2022-05-09 02:21:24 0x2a5d4f800464007ce4a31cbc1e670e70b51810f1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009697870404 1.061044001 2230.95 Intend To Withdraw | |
0x59da1930d3b984b8cdb1df11498bd32da8983717aa5bd7c50d1ff975f79ac2ab 14739887 1652064748 2022-05-09 02:52:28 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002454383064 2.68534051 2230.95 Intend To Withdraw | |
0x4fb8a246cc15923db8938a9b128dd152727ff41012e8413d219b27098f2b6cb2 14740386 1652071425 2022-05-09 04:43:45 0x4baad650a6e58c4d3be40358657bac526927b53d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001638251465 1.792410928 2230.95 Withdraw Funds | |
0x0670b39afc59d13c3f444771cf1f4c1df7e574be13422b7152d3f18efa503f03 14740941 1652078662 2022-05-09 06:44:22 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004703676455 5.14629241 2230.95 Claim | |
0x1192ec2f8874decd66eda78db2b3d6210e21917772c64dfddd0e8ebae5ca8e9b 14740943 1652078687 2022-05-09 06:44:47 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004726642222 5.171419255 2230.95 Claim | |
0x5d467a3a1968ad94e210045eb3de95e619667a86715d3b4a88815bf088ebd16d 14740946 1652078736 2022-05-09 06:45:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004931338786 5.395377766 2230.95 Claim | |
0x70c07eab1e9b0567f3bb09ae098e729183ff5b85dcd554356118f82c19cad335 14743947 1652121154 2022-05-09 18:32:34 0x82886ad5e67d5142d44ed1449c2e41b988bfc0ab 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004135549491 4.524704698 2230.95 Intend To Withdraw | |
0xb4c6a7bd6b983fde53ee0a9e6dc3f6916d91c893ec6f11dd0d18a0485fa70c5b 14744314 1652126306 2022-05-09 19:58:26 0x70978f453c9ac86817bb4ae2fe3fb985f3aa5c0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01603849334 17.54771556 2230.95 Withdraw Funds | |
0xad872e66f60e921592a3f629f8997b6ac233463c1e8eda6f169bf507cdb4e173 14744419 1652127575 2022-05-09 20:19:35 0xea459a5aa7e52f0493eda1faae0b862c51bf40b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0196254659 21.47222225 2230.95 Withdraw | |
0xace091a1031dde57926c749bacf3d517b5d7a6e5945faa4c25cdc9788017bad7 14744429 1652127739 2022-05-09 20:22:19 0xed514f9de8c06e6d1f0883a21ddcfc8f4c8d3bae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01453159953 15.89902304 2230.95 Withdraw Funds | |
0xc494e9ffa413b877e2417e1a4e4c3e9cf59282df53a8556daa04b73672606fb9 14747175 1652166021 2022-05-10 07:00:21 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005005542301 5.476563832 2341.58 Withdraw Funds | |
0x69a717d1b42c600bdb98d8d176b5be9d42227362accbfc6e2357e7ea5adc8e81 14747180 1652166123 2022-05-10 07:02:03 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01370757867 14.99746182 2341.58 Claim | |
0x7440fdab3700968996475108ef6b830a0c3be6f635d32ac699ceb232df8b5310 14747183 1652166168 2022-05-10 07:02:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01266615012 13.85803484 2341.58 Claim | |
0x41fd5ce42a79bc4470787b685397889d5ae9e0fd61c30b36ec2c3e4d6477a5be 14747186 1652166231 2022-05-10 07:03:51 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01260608447 13.79231702 2341.58 Claim | |
0xf4f6f9bf3e741efaa7731b0163fe4c298556490482d7fc31ae79598df940f750 14747621 1652172231 2022-05-10 08:43:51 0x649b416c0ebfde0386e6b4eaa45539a9e6055b17 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001617807219 1.770042879 2341.58 Intend To Withdraw | |
0xb5146613122921a1d6fe87e4b776de188173212e6cf8d99b9883ce890d4ff987 14748190 1652180787 2022-05-10 11:06:27 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005294232103 5.792419344 2341.58 Withdraw Funds | |
0x6a0bceddbfec53843efea4f2bbbddb3a0cb9d5c1d67fa5e0783f2b7520c3fa46 14749262 1652195214 2022-05-10 15:06:54 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005330150262 5.831717401 2341.58 Withdraw Funds | |
0x43c119252c303da80df5d27185d91451d779be0c7745e147fcf27edd1bb0745d 14749445 1652197587 2022-05-10 15:46:27 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002639879225 2.88829186 2341.58 Intend To Withdraw | |
0xf57dffd9ba8c6cb48edc190766d91bffb62afbd836e1f43c0ccedfedb3e3c80e 14749473 1652197917 2022-05-10 15:51:57 0x5dd3e828700e7c21af5ed7eaa6719ff76b378ad7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006912192954 7.56263031 2341.58 Deposit | |
0x71a11b84e6d8ee363fe002ff9944aa202a8bc66f801cccfd339d1549d4a9c611 14749475 1652197971 2022-05-10 15:52:51 0x5dd3e828700e7c21af5ed7eaa6719ff76b378ad7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003309934492 3.621399327 2341.58 Increase Custody Allowance | |
0x15b6fce0a8d5b2e8de22ae3f7d335e0ead497794e1f453f4557526e14c591769 14750353 1652210364 2022-05-10 19:19:24 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003292527841 3.602354711 2341.58 Deposit | |
0xe97752b6fa45485a17ae13ec5f4c4b04e32404a8018999d395ab8c479f5c507e 14750365 1652210496 2022-05-10 19:21:36 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001283542693 1.40432406 2341.58 Increase Custody Allowance | |
0xbe8e246d6fd91ad45fbc99fb6083073002856f653e26b4a69da9aea951997c31 14750458 1652211789 2022-05-10 19:43:09 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003596107543 3.934501263 2341.58 Deposit | |
0x1697db7f65d529f64b69ae97c108d825a059791558c362edcff4d11e859d3e87 14750482 1652212217 2022-05-10 19:50:17 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001792475448 1.961147388 2341.58 Increase Custody Allowance | |
0xda0904632f0ca5c2aa825ce15119e641a6a58f10dca732497c6f45a559a4b37f 14750504 1652212423 2022-05-10 19:53:43 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003584587922 3.921897646 2341.58 Deposit | |
0x36e6cc533dd1e73378fef74744c1ae93140574b9409d60ca23b91affa942c408 14750791 1652216424 2022-05-10 21:00:24 0x2a94055c7542bc4c29186cc7cd3142a9407a7d5d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007920844698 8.666196184 2341.58 Deposit | |
0x996d9adae8433b2c2f12d579437844684e22fe73339a6e18ad262a4e8719f93c 14751719 1652229340 2022-05-11 00:35:40 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003431874698 3.754814107 2077.83 Withdraw Funds | |
0xcb5b3e23567eda44b81cc12d6c118b8e94cd2569c3fc7fec59efc0ddb2f0b6f3 14751903 1652231800 2022-05-11 01:16:40 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001971309337 2.156809546 2077.83 Intend To Withdraw | |
0x0aa611148ca71c45d08a5b294a9a0b57b5dd1bc031c9d616e3b483626d3540db 14752028 1652233557 2022-05-11 01:45:57 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004191379731 4.585788563 2077.83 Withdraw Funds | |
0xdd39abdbfa7e7e9d6754ad378a825f3d1f14f262c4b84bdd3ece1e4a90f12b49 14752050 1652233804 2022-05-11 01:50:04 0xb333bee90bffeb69ea3d8d7418ebb485d2a7795a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001993051518 2.180597666 2077.83 Intend To Withdraw | |
0x413cc7ce3bbc04ad12c12cec572fd89dce4e11644ffb368822d85c2d63845ea6 14752060 1652233921 2022-05-11 01:52:01 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003193163105 3.493639753 2077.83 Withdraw Funds | |
0x6dc6c42e21c3e98dece9c8c020e9d88bc28ccb6ecb00d43ccac59f58baf5709a 14752344 1652238074 2022-05-11 03:01:14 0x9f10c27488119744fd355d4ff6894f23f57a5222 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001613843599 1.765706282 2077.83 Intend To Withdraw | |
0x8f7006deab84e3f6b0240c4e75817d7329de5e0c8827e1d9a0e6bd8373e81318 14752401 1652238776 2022-05-11 03:12:56 0xff2eb6dee6f0d137fe95acde5e9e1126e9373537 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003757050263 4.110588693 2077.83 Withdraw Funds | |
0xf82a7e34a11285c9e8928a255247712a29758cd5bd981f2d3121035b91bfa247 14752965 1652246580 2022-05-11 05:23:00 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00329860318 3.60900174 2077.83 Withdraw Funds | |
0x6b5f3c53a43e87a3888484adc6933af19c7e4a8f02e39aa7d522c3922baccff1 14753509 1652253786 2022-05-11 07:23:06 0xe4af5b75bce58135378e25dbf99ffba53c96e7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00346040925 3.78603376 2077.83 Intend To Withdraw | |
0x6fadf7ac32f09c84b0feb47910bbe0db24349816eb6fc091ea4349d7b453972d 14753596 1652254875 2022-05-11 07:41:15 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004038424339 4.41844007 2077.83 Intend To Withdraw | |
0x25863b12053300d8b4befb559d2eabaf148130b72c3da6c0b2da245ed82687a2 14753625 1652255190 2022-05-11 07:46:30 0xd7181d038545144aff736c975e00a79dd7838771 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003006239757 3.289126918 2077.83 Intend To Withdraw | |
0xff94dca987ce2ddee929b62dfdaf32aefaaa97f9a377608ff0486e55a1a8c3b1 14753817 1652257891 2022-05-11 08:31:31 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002995400326 3.277267497 2077.83 Intend To Withdraw | |
0x420219e12fbc1d787a7b6da7f19ee4f86243e55348783e92a55f0a8557a6fdf7 14753954 1652259900 2022-05-11 09:05:00 0x7736bb1e1d8224b72cf40048d1102eb68b30b6e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003640729029 3.98332163 2077.83 Intend To Withdraw | |
0x05c246dbf15d5149d930d5c79a934c1271fab605b100c26d5e81543fbdd04dd8 14754052 1652261376 2022-05-11 09:29:36 0xdc3b2dce95ebd1e7c18eaa37780d10d240146660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004932313241 5.396443917 2077.83 Intend To Withdraw | |
0x909db2ce6de69d1c004cca680e6243532dea627011e66075954f5589caafcd16 14754555 1652267758 2022-05-11 11:15:58 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002613993136 2.85996989 2077.83 Intend To Withdraw | |
0x06b8fedd7f3bda63eb3bfe48cb00c56467d9b9f23da1fbc0a63130638b971437 14754561 1652267845 2022-05-11 11:17:25 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002490659889 2.725030985 2077.83 Increase Custody Allowance | |
0x64ae3856dc155cdb77309f1aa9df18e9818c1a7059bc65a4ca3041fb02a30260 14754589 1652268464 2022-05-11 11:27:44 0x37f23097ad3c862dfe895139a63a33b1d236e89f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005482940209 5.998884883 2077.83 Intend To Withdraw | |
0xdd1a343dcd63829d0ff9ba5544bf513e3b69a4095d1e8775f2c242ab25440f4d 14754609 1652268674 2022-05-11 11:31:14 0x37f23097ad3c862dfe895139a63a33b1d236e89f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009301312842 10.17656638 2077.83 Withdraw Funds | |
0x990e8d17fcafb561df11b5923cb5f474d75460f8af56dac56705fbc725b5ed4a 14754713 1652270360 2022-05-11 11:59:20 0x179517f1c6c3981a50630f5c8b3d7099875cb8a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005169030996 5.655436813 2077.83 Intend To Withdraw | |
0x6786f441b94675bcd1c409fa73aa4f84fca0efa55497aed6aec7a5da69884a58 14754732 1652270575 2022-05-11 12:02:55 0x179517f1c6c3981a50630f5c8b3d7099875cb8a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01211916699 13.2595806 2077.83 Withdraw Funds | |
0x74316719bd6effb37e6cef97069d2882eedfc951634b311bbc93d60cae185bf6 14754922 1652272958 2022-05-11 12:42:38 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006330780798 6.926507271 2077.83 Intend To Withdraw | |
0xb032b78417d2f0790276e1adb1c74fa0f908205f5049b8c260d5a5105a425120 14755284 1652278207 2022-05-11 14:10:07 0x0148107d2b0fc3e90e8ac427a9058beaffc5dd79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01714113731 18.75411833 2077.83 Intend To Withdraw | |
0x071d3b14ed8e2f54c12c3e8f86d6809b350f9374e39d7afd18bbc7feb414759a 14755441 1652280308 2022-05-11 14:45:08 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01899746905 20.78513088 2077.83 Increase Custody Allowance | |
0x29cb6c65125898323915d15adade4f100c6a253c43c9fceec9c5c95507837ee0 14755579 1652282319 2022-05-11 15:18:39 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01089552492 11.92079381 2077.83 Intend To Withdraw | |
0x2644df98ac73e467d8d81b2b6a98470ed0c60652fb72daaa2b9d8365ab710dd7 14755595 1652282529 2022-05-11 15:22:09 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01722972386 18.85104087 2077.83 Withdraw Funds | |
0x103a12c151422f2d3fed7c43661b76d390126aba24248c1e920171cf2a812ce7 14755598 1652282537 2022-05-11 15:22:17 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007822908419 8.559044101 2077.83 Intend To Withdraw | |
0xc7195da64c48a6cd11d6363b35de353f4a5b508b93d7073fc52b386f5427fb5d 14755730 1652284148 2022-05-11 15:49:08 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006137043023 6.714538772 2077.83 Intend To Withdraw | |
0x122fe0a45e04efe63e37479214320f21ef6e63bf305a40ce1216599b30d7cba7 14755737 1652284194 2022-05-11 15:49:54 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01263150112 13.82012538 2077.83 Withdraw Funds | |
0x82cbed62e8d3ee8f0f60e29a6f9ff417a3ee3dfbdcb63f6ce04376caed7ec89c 14755867 1652285933 2022-05-11 16:18:53 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02015854051 22.05545917 2077.83 Withdraw Funds | |
0x27b40b3c5228da20c63a51f24df1ba00636a2a633af8aed819117a80f02a6eb2 14755928 1652286889 2022-05-11 16:34:49 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00693247598 7.584821969 2077.83 Intend To Withdraw | |
0x82f16cd632be1028b8f5803f6e599567569c1f68ee68f91d86b16555232953e8 14756999 1652301147 2022-05-11 20:32:27 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01894406583 20.72670243 2077.83 Withdraw Funds | |
0xebe1f6cdea69fd27e7c90c2e186d7f5eaa77e3612b0cc136cde69d8e3413c2ef 14757623 1652309798 2022-05-11 22:56:38 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006087768 6.660626969 2077.83 Intend To Withdraw | |
0x91f143e1e4246d3dd56d0e013f212d551a580c28eefdf663079aff4c9fcf00e3 14757862 1652313111 2022-05-11 23:51:51 0xb4522eb2ca49963de9c3dc69023cbe6d53489c98 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004088259024 4.472964199 2077.83 Intend To Withdraw | |
0x21365adb4fdfb005844308f1bcb99b27c91ad434dc62bfcd5b12ed8702f7585e 14758751 1652325819 2022-05-12 03:23:39 0xae8ce6bb2b95684f57c097b407f4e9b55d9ca432 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01081109441 11.82841839 1952.81 Withdraw Funds | |
0xff06ac73260b7291caa3031bc5649ed2e6b08f1012d1df8bdb7d0aab75bf9590 14759004 1652329318 2022-05-12 04:21:58 0xfd225193f80f40053fd1a1548bca6cf0e6577bb4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.03059235961 33.47110065 1952.81 Withdraw Funds | |
0xbec3d1f0a1c34b41645b4e53023affd2ab99584c090574f5d02b921be98ddca0 14759017 1652329494 2022-05-12 04:24:54 0xc6e4ad3ccdfc65687d2d60a454a8bddc1f4d6c06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02022873881 22.13226313 1952.81 Intend To Withdraw | |
0x48db1f20b2f547d3dacd22f5396daf7d95f3de7d25fdc34927a1745b227a7c29 14759526 1652336761 2022-05-12 06:26:01 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0118746936 12.99210226 1952.81 Intend To Withdraw | |
0x0b65764fab504ff02eb948327d405e048c3b25ac94b3cf1ad1b993c9499fb644 14759532 1652336855 2022-05-12 06:27:35 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01170150425 12.8026158 1952.81 Intend To Withdraw | |
0x678e42bb9215769c71682a5372c79ef2794f9a2740f2e86ec06f53e44421c1fa 14759757 1652339644 2022-05-12 07:14:04 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02814906571 30.79789279 1952.81 Intend To Withdraw | |
0xe12b2cc29bbd2975debbd3c96aa43419f13c55bc984a2b3e5ab073699c46d8c1 14760424 1652349333 2022-05-12 09:55:33 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01008811135 11.03740263 1952.81 Intend To Withdraw | |
0xcc4fccbb1af076ed7a6981dd89e0cfbadb3bfe179d2941aa996b915b5aca8eda 14760730 1652353629 2022-05-12 11:07:09 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003623982479 3.96499923 1952.81 Intend To Withdraw | |
0xbf15b6eacdcc247122b0ee6358d3dad8f6309a033294db2c90e1d2ee445c57e4 14761515 1652364559 2022-05-12 14:09:19 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01235342632 13.51588373 1952.81 Intend To Withdraw | |
0xe2d7c9ebfa31b8b2f4207722033f83c4b04bf5e55723e4a35277454e8590dfc8 14761714 1652367358 2022-05-12 14:55:58 0x87616fa850c87a78f307878f32d808dad8f4d401 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01968094733 21.53292447 1952.81 Withdraw Funds | |
0x6c5ed2f3a62c38e1cf48bc8ec2867c9d9b95df5ca1180d3b205f7dcd54a9238f 14761719 1652367397 2022-05-12 14:56:37 0x87616fa850c87a78f307878f32d808dad8f4d401 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02493152952 27.27758645 1952.81 Withdraw | |
0xca648c48cfe7fac8058cae657bd448115f31d2729bae7df62510ee24c6897bcb 14761739 1652367764 2022-05-12 15:02:44 0x174d5a5b23a8e3269f70e78b29613128acb8ef0d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0148799252 16.28012616 1952.81 Intend To Withdraw | |
0x7703019029589c94ba60c9d89d94ca90456012ce1e2a48c0a18fc5f08c93fe1f 14761966 1652370932 2022-05-12 15:55:32 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04245326982 46.44812251 1952.81 Claim | |
0x55c9ca1f42a599a856f71b9ae00e74d5666d40b0a661e24532423e6b46c81ab2 14762080 1652372314 2022-05-12 16:18:34 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02865441776 31.35079847 1952.81 Claim | |
0xc90a2a5bf6004da4160145fbf2c67d23a9f9e98ba6a5c3df4b4d39e80e36d8b1 14762436 1652377123 2022-05-12 17:38:43 0x7a75789832c4fc67edea0dc8aee186af4d1248b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01830054574 20.02262709 1952.81 Withdraw Funds | |
0x6709fea54521f0520a609ce45f65699ae7772e29135e08bd2671f5cc01dbf7a3 14762445 1652377248 2022-05-12 17:40:48 0x7a75789832c4fc67edea0dc8aee186af4d1248b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007581193709 8.294584037 1952.81 Intend To Withdraw | |
0x1e7a9374ad8f668103e49e29f38a94703349de1675c75e6bd336b2e21893b05e 14762977 1652384830 2022-05-12 19:47:10 0xab219045455fe12bd0f66b9fac825d40560036a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003082989417 3.373098721 1952.81 Intend To Withdraw | |
0xc65e849c9885ab663c0fce546c2f908fcd9c8b4c0abbfc43569210bdddd539ea 14763181 1652387610 2022-05-12 20:33:30 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01810615636 19.80994567 1952.81 Claim | |
0xb5268cd63c1fdb146b28312553088ff21ab8216bf3cb76860aaa0a0b14afc947 14763458 1652391269 2022-05-12 21:34:29 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01029029025 11.25860657 1952.81 Withdraw Funds | |
0x81b078375f016c3ff315e2bca1b37634b6f3fc70e25247834cb152fd2ee7e614 14764711 1652408358 2022-05-13 02:19:18 0x23142055814dd6c01185b36ba3f5ae966643e8c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0115609725 12.64886001 2006.51 Withdraw Funds | |
0x57d0e61926a1db8cf6b1d7608c23846f2e8cb7a8182dfa949b3b9bb678e2b62a 14764725 1652408523 2022-05-13 02:22:03 0x23142055814dd6c01185b36ba3f5ae966643e8c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003953328742 4.325336977 2006.51 Intend To Withdraw | |
0x8ea0f7f204e5881bfedf064b20b033c230b638d15cd8474a14351fb38ba2b855 14766248 1652429694 2022-05-13 08:14:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02224476336 24.33799559 2006.51 Claim | |
0xfd8a6564227ab6060d7811b9ea990d0d63f732734815840c141865dd24e0db43 14766704 1652436242 2022-05-13 10:04:02 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003182783981 3.482283954 2006.51 Intend To Withdraw | |
0x451c47cfc3ef385ce6f4366dbb65db5e601c45fe59f6119862fa0085827c6185 14766709 1652436324 2022-05-13 10:05:24 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006991996906 7.649943815 2006.51 Withdraw Funds | |
0x960a227720f552454c1e8a33c304d42b5c947e7073ae6a2dad6883254281231f 14766744 1652436710 2022-05-13 10:11:50 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005485715019 6.001920802 2006.51 Withdraw Funds | |
0x2a3ceb1b339d277202c2a6ba07ea5340905e591809b9259ac62e3ed2a1f69319 14766755 1652436869 2022-05-13 10:14:29 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002779114274 3.040628927 2006.51 Intend To Withdraw | |
0x91a1062b6897dc9b924ec5cff29f770b34a2db41cbbdbb70ac9722b3ac296cd5 14767151 1652442072 2022-05-13 11:41:12 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00395204315 4.32393041 2006.51 Withdraw Funds | |
0xf996e663805e0eb8d2b994ae587338c07f372cb5b2e3fe692fded50fefa31061 14768208 1652456099 2022-05-13 15:34:59 0x5789527ec57ff76286e42673e7b97e692b13f6d0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01069458136 11.70094146 2006.51 Withdraw Funds | |
0xfc5efb79f2eb10efcd00a632d7d49aafacad3f2b4d2d20d6418ae52742ef8717 14768607 1652461692 2022-05-13 17:08:12 0x651f673659ef05949e24820ae8fc5f2924e31a77 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008931899704 9.772391466 2006.51 Deposit | |
0x144cd24f901cffaa29f73a8c289a0b61b51e0f18ea7fb89a8c4c967788e427a4 14768612 1652461755 2022-05-13 17:09:15 0x651f673659ef05949e24820ae8fc5f2924e31a77 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003145677976 3.441686274 2006.51 Increase Custody Allowance | |
0x904de1b1bb53ec99011d175836c2eaa00a880b6d980765573cd36e088a466b67 14770370 1652485206 2022-05-13 23:40:06 0xba0b3e6a81d8f26a46d958a36cd364ec0ee4476d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001721347021 1.883325775 2006.51 Intend To Withdraw | |
0x0165adede736e886f987f6c4cf53bf7dd91c71d8661cd1511f579f7c8325aaa7 14770724 1652490443 2022-05-14 01:07:23 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002179038115 2.384085601 2054.03 Intend To Withdraw | |
0x55081ea4e4593b0b6edecbe07ff5a0ec103857537913948adf10b5604f547896 14772711 1652519084 2022-05-14 09:04:44 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001101472446 1.205121003 2054.03 Intend To Withdraw | |
0xe771ad33cc4d93b683104f6a3709544b4eeb4f50b7c06c661fcaddd50badfb5c 14772740 1652519522 2022-05-14 09:12:02 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002967973842 3.247260181 2054.03 Withdraw Funds | |
0xa124a53e1388df8c4ee377e84ede8b457f0da8f96139ba624def44276b3e520d 14772740 1652519522 2022-05-14 09:12:02 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003503516986 3.833197935 2054.03 Withdraw Funds | |
0xcc91c3d50cc4c641941659c5792f176442a1a9dc8fc738c08b3ab1c36093d554 14772768 1652519921 2022-05-14 09:18:41 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004153258656 4.544080296 2054.03 Withdraw Funds | |
0x60c99c1d7a161a4332d01a39fb72b7259f877133a6f882b5c8fc718d06242838 14773033 1652523340 2022-05-14 10:15:40 0x01e060498c74141ec7454c6b8cc670dd1a99a2dc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002760490823 3.020253009 2054.03 Deposit | |
0xf077379460a2a34f2b38f849d505857a4bbc42af18737a58f7ceb4c976a12b5e 14773035 1652523363 2022-05-14 10:16:03 0x01e060498c74141ec7454c6b8cc670dd1a99a2dc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001047772335 1.146367711 2054.03 Increase Custody Allowance | |
0x670f636949701adbc0cd953799a195d08559efcf243e9bbde8a03054c62437a7 14774535 1652544161 2022-05-14 16:02:41 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004310557955 4.716181458 2054.03 Withdraw Funds | |
0xf746366f5665665ec88c473124b40c069b4c996f4453332ea45246ec347016b7 14774677 1652546092 2022-05-14 16:34:52 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005548162 6.070244044 2054.03 Deposit | |
0x500d1d808093463c8003f6d7400d8c1f6a0e8ca34b8cfcf44fd5690419d1bc78 14774683 1652546158 2022-05-14 16:35:58 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00179525 1.964183025 2054.03 Increase Custody Allowance | |
0xdfa8cd2a80b0dbfc93b9f0904c60d38d415b2b85f75c9c0d9924fb30b1c035b3 14778165 1652592765 2022-05-15 05:32:45 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001129422727 1.235701406 2143.12 Intend To Withdraw | |
0x46d4c826cec229dea0c3cbb40b3025aa84a89bc2cbb033ab5fab98e2853ec47b 14778170 1652592819 2022-05-15 05:33:39 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00265649898 2.906475534 2143.12 Withdraw Funds | |
0xb7bf72c86255ab03a76e27d6859341fd17e29d314cc33cba7866828c62f857cb 14778558 1652598812 2022-05-15 07:13:32 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001193451056 1.3057548 2143.12 Intend To Withdraw | |
0x3816ab3681763e4634c8820b3dc8dfed93ca341f3b17a9ff1dc1cd5bfab505ae 14778566 1652598935 2022-05-15 07:15:35 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002072200011 2.267194032 2143.12 Withdraw Funds | |
0xa92ef93d5ae712edd9e2605a44a8183534941ae0f51f1645a7a0dde8993784e8 14780332 1652623104 2022-05-15 13:58:24 0x9a568bfeb8cb19e4bafcb57ee69498d57d9591ca 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003964897284 4.337994119 2143.12 Withdraw Funds | |
0x70b59b82c33e8cfbde3a061091935560c5d9c40ac8b1281f15ff70adb1715d8a 14781457 1652638502 2022-05-15 18:15:02 0x3c82a8787ce78af6d6648911c6171e576aca69a5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003217050448 3.519774895 2143.12 Deposit | |
0xa8edf795631e2194d4dd88fd6774396d02abae1701877bf3416fcaa5a67ec2a7 14781463 1652638577 2022-05-15 18:16:17 0x3c82a8787ce78af6d6648911c6171e576aca69a5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001250179099 1.367820952 2143.12 Increase Custody Allowance | |
0xdb7fbb2fe6f6b5ca041572cc348a969f70664c7002aada7d05ec1b3bdfee1741 14781854 1652643594 2022-05-15 19:39:54 0x5ae36d7acd459302876b2d1c312d5c2b0507b794 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0006802139281 0.7442220587 2143.12 Intend To Withdraw | |
0x2c38884001051c12f64680408f02655a3bbd9aa6caa7f0232a39b06d644e0896 14782117 1652647215 2022-05-15 20:40:15 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00189875 2.077422375 2143.12 Increase Custody Allowance | |
0x27f90d3d1de8fefa29865a4e6b7d5aee3ca93f8f9f502a47e197796194bc1dcb 14782139 1652647551 2022-05-15 20:45:51 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007008007713 0.7667461238 2143.12 Intend To Withdraw | |
0xcb63d8a81ede942a82a0807fe568131ae596546dde82c420ba96b2f1d8f83e26 14782146 1652647720 2022-05-15 20:48:40 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003357194942 3.673106986 2143.12 Withdraw Funds | |
0x2548e3bdd48faea9ecc8fe3b74a429218450641c6e693e934ede65bf7f6809fd 14782633 1652654342 2022-05-15 22:39:02 0x3f60a58dbaafc585bbcd2ab7b3b20e1fa3ff4d93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001038716479 1.1364597 2143.12 Intend To Withdraw | |
0x02e5e620032fb592e61565507e7c44ebd210d8e32aed144fe021f2d204994870 14782982 1652659268 2022-05-16 00:01:08 0x02ffb9b4bbc29f9a59b20c541d369c5add62a5a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000896648 0.9810225768 2020.12 Intend To Withdraw | |
0x4ab575201ee9e0c4f261c986c89ed66ec8f66e5890a877ba6e184d9a58c94aef 14784766 1652683841 2022-05-16 06:50:41 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001145472681 1.253261661 2020.12 Intend To Withdraw | |
0xbcbad22f5ba1f00c255b1e2bbc9a89480ccfb2f47bd90a50c57c9e1b1323ca6a 14785790 1652697969 2022-05-16 10:46:09 0xfa0ff9af46adb1e565bb1b96fdf8250d9b7b2bcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001719098934 1.880866144 2020.12 Deposit | |
0xeaad0e19e4a257a54f9feb15c4c55439284036754d514f74485204fe79dbbb26 14785793 1652698021 2022-05-16 10:47:01 0xfa0ff9af46adb1e565bb1b96fdf8250d9b7b2bcf 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0006298163726 0.6890820932 2020.12 Increase Custody Allowance | |
0xdd99ead8e27069df7a60415fb2bf6368660310ce3c9f23fa7b50d4418ff827b6 14786379 1652705625 2022-05-16 12:53:45 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005682403089 0.621711722 2020.12 Intend To Withdraw | |
0x8d310c87a78164ec899f334754933b1845cb693a9152a60dcf62a0d8fca596ae 14786979 1652714395 2022-05-16 15:19:55 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002669276018 2.920454891 2020.12 Withdraw Funds | |
0x1803a12fef9b3048870ef7b21a485aa2c5b7a478c9d276d4ee1ef4ba9ed4fbae 14787033 1652714989 2022-05-16 15:29:49 0x174d5a5b23a8e3269f70e78b29613128acb8ef0d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002823129567 3.088786059 2020.12 Withdraw Funds | |
0x58748a9299194d12faf112195984b811098e69822b38d2819e3da583bc2271a5 14787046 1652715209 2022-05-16 15:33:29 0x0f1b32640fe41249a5c3ee765c86c28112deca02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004474458248 4.895504769 2020.12 Withdraw Funds | |
0x1c6181e03cf9e890e2fa10153d1ba25296bd7504a4387cca954ecc2cf97c3051 14787221 1652717370 2022-05-16 16:09:30 0x83cac5a5ecf6565d8165f5b325a918449f98e96f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005213892663 5.704519963 2020.12 Deposit | |
0x8e3a31f23dbde4a705ffbbe0063a58b50115405e0428610f049c393bf6b7cefb 14787228 1652717457 2022-05-16 16:10:57 0x83cac5a5ecf6565d8165f5b325a918449f98e96f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00169378532 1.853170519 2020.12 Increase Custody Allowance | |
0xcede73b2f39073070d6e72a63286f81bc107318c554987fa300fe35186c84226 14787449 1652720211 2022-05-16 16:56:51 0x9a6f0de94cf51e9ffde08977f5340764131e46c6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00219044664 2.396567669 2020.12 Withdraw Funds | |
0xb7ada9740533ec0db43f05d2a9b1a047b8677ffadb54159db04e9f97b41c7486 14787674 1652723134 2022-05-16 17:45:34 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00139578163 1.527124681 2020.12 Intend To Withdraw | |
0xc6f7a8cb8fe69d25588d7696d4c9a316d14361d04e36cf9ae219f2046aa61671 14787740 1652724071 2022-05-16 18:01:11 0xab219045455fe12bd0f66b9fac825d40560036a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003278436085 3.58693692 2020.12 Withdraw Funds | |
0xc992a04b7516fddcefe6e95bcbc28a9ef3e3a015c129da8790a90c4a04a5f918 14788539 1652735630 2022-05-16 21:13:50 0xfd225193f80f40053fd1a1548bca6cf0e6577bb4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002236636686 2.447104199 2020.12 Withdraw Funds | |
0x88c21fb18f4a2c78a2346ad7a0384f0766fd0fa4561175788ecdf961086565c6 14788657 1652737220 2022-05-16 21:40:20 0x449816d520c89c87b320e94a0bfdca9ed66e156f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003192936399 3.493391714 2020.12 Withdraw Funds | |
0x170ce55a9fe8fae6b5ef52d33a6897d246c2d26bc077ffc411a8db31c81d0f01 14788661 1652737257 2022-05-16 21:40:57 0x449816d520c89c87b320e94a0bfdca9ed66e156f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001392728305 1.523784038 2020.12 Intend To Withdraw | |
0x6e25a7798cbc1c82cd7007d9d929e3d3693cc3698ba1051a97ddbe257ac6f9ec 14790792 1652766901 2022-05-17 05:55:01 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002524514761 2.7620716 2089.29 Withdraw Funds | |
0xac523258acbccc436712b0ecbcf1da1d928da59348c98687e47ba320585e84ed 14791968 1652782622 2022-05-17 10:17:02 0x644bbb5dd5162ab487074de04f6f2a66cf7eaf53 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003041800957 3.328034427 2089.29 Withdraw Funds | |
0x5bcdde1104856376cd9fc368b8f580505b1bed6fe760221f50724474a9ae5f00 14791974 1652782702 2022-05-17 10:18:22 0x644bbb5dd5162ab487074de04f6f2a66cf7eaf53 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003117587654 3.410952652 2089.29 Deposit | |
0xa3c12f0a5340372a27925458bbff5bd46918b825395137b3ae4a6906df6122fb 14791981 1652782779 2022-05-17 10:19:39 0x644bbb5dd5162ab487074de04f6f2a66cf7eaf53 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001065795664 1.166087036 2089.29 Increase Custody Allowance | |
0xf2f90c8bb4b33120ac47c9118b7d0650a94c40aa3b1facfb70d55bed73ee5c79 14792259 1652786763 2022-05-17 11:26:03 0x7100bd23913cbbfcfb655ec476f16a027d4e9d5d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004744117376 5.190538821 2089.29 Intend To Withdraw | |
0x42521547bd5a4c292bac550129709cd358f8f931aa1a2924c6e7556e72308a7c 14792714 1652793229 2022-05-17 13:13:49 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002402094514 2.628131607 2089.29 Withdraw Funds | |
0x24c0544fd3a59e9b06f384ea6144d3a7263f5fef057a3dc7290bcb44f806227d 14792720 1652793280 2022-05-17 13:14:40 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001106025483 1.210102481 2089.29 Intend To Withdraw | |
0x32aad15bacb5bf528c1ec5727d13898f5015a3d3415cf8e748814e707bba4eaf 14793459 1652803408 2022-05-17 16:03:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01043618652 11.41823167 2089.29 Claim | |
0x6dc60ca0bd4066e837aebedc54a332e1ac2582496d61d0e1d16fcdd87c3f973c 14793465 1652803460 2022-05-17 16:04:20 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008132900411 8.89820634 2089.29 Claim | |
0xa9b1723b948bad61063c5c820767a46d710c8df6a3e37ca534be315fe12261a5 14793924 1652809469 2022-05-17 17:44:29 0xae8ce6bb2b95684f57c097b407f4e9b55d9ca432 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001792405213 1.961070544 2089.29 Intend To Withdraw | |
0x2b2f23367bdbb92113f238fe3d8b1d4d1ef56f4bb55561bd0d0053fc31307ad0 14795564 1652832189 2022-05-18 00:03:09 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001993627356 2.181227691 1911.68 Withdraw Funds | |
0xa9357e0312e7c4af82e00ce5e4adf4fb9a987642622ad7b4b7ea6d71ffa1bf2d 14795844 1652835892 2022-05-18 01:04:52 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001783368963 1.951183983 1911.68 Withdraw Funds | |
0x1a0c48d21b668e07ad5a220f24b15057f9dabea8c3ba9ad1264e09b0cf09c369 14796414 1652843532 2022-05-18 03:12:12 0x54d020c2fe9d0c9d9b562fa1ffdbc6fa8a0bab93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001964917176 2.149815882 1911.68 Withdraw Funds | |
0x87bc31108892f0e51e16eced48f8c2e220273ad57892aa09670fa7c113dd9591 14797059 1652852373 2022-05-18 05:39:33 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001613677635 1.765524701 1911.68 Withdraw Funds | |
0xfff15da4459e74b7259a3da608deb23c65fbe322f1b4ee74081697ddabe93778 14797071 1652852465 2022-05-18 05:41:05 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0004076596984 0.446020476 1911.68 Intend To Withdraw | |
0x4a732a7ec7be3436b500d2c0fb37dc023648b3837826fbe6aea79cbfb7bad8a3 14797083 1652852569 2022-05-18 05:42:49 0x6ff56db6a2cf67051bd7d680443e5782594c8460 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005586155972 0.6111813249 1911.68 Intend To Withdraw | |
0xcd7d99761db1231fe00254f121b3bf34b80a1cf5bc69d0e7c2663cb5f37fdfb8 14798409 1652870957 2022-05-18 10:49:17 0x2dfec97f3221da9d9bccb6d2f706ad1b53411454 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00194123002 2.123899765 1911.68 Withdraw | |
0xd0140ae731dd28f5a497a125b2bbc4bb3afa869dcfc8352e38ed4956a4f3de15 14799790 1652890365 2022-05-18 16:12:45 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007788629973 8.521540054 1911.68 Withdraw Funds | |
0x160e54d1c0767e34b4e11c9430b8949fd15544127fd404d369224823627a810a 14799795 1652890445 2022-05-18 16:14:05 0x27aa7a2f5f6efedca512cb52ff2a52b9123271e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007561007334 8.272498124 1911.68 Withdraw | |
0x5609727d7b414072feb3eafcdc03d927c420098585ecabf6ad9b8e179d6b5025 14801028 1652907544 2022-05-18 20:59:04 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002184894169 2.390492711 1911.68 Withdraw Funds | |
0xb39d25257beefbe11a219526f1cb68b97f65a62b1e5e15223a07d806eda5e043 14801809 1652918586 2022-05-19 00:03:06 0xd7181d038545144aff736c975e00a79dd7838771 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003511599236 3.842040724 2017.78 Withdraw Funds | |
0x9932b7404ecedf9b5f69d148db9bcbe5a8a456189a2864d2139d5b86a8c54d46 14801833 1652918959 2022-05-19 00:09:19 0xe4af5b75bce58135378e25dbf99ffba53c96e7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003451849575 3.77666862 2017.78 Withdraw Funds | |
0x9b02b68e10b6ca3a502b182957b727e05f4ba9c12514355d2f861261fc6f1443 14802073 1652922609 2022-05-19 01:10:09 0xe0a998e2416159ec62a02b15e52760f85abfa13e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008889889115 9.726427681 2017.78 Deposit | |
0xcc88c11802e3ab7fa0e3d4c2d56b016e7f381f2ed1a3e26519c0a735923184ef 14802735 1652931946 2022-05-19 03:45:46 0xd0f0b33573950c4fd9fad0fc04b321996f958dd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00278899473 3.051439134 2017.78 Withdraw | |
0xe8987be1313fb5ae9c407bf2e082baa95908115cd5ddfda8396913945a392eb1 14803614 1652943921 2022-05-19 07:05:21 0x2fc2f705110a7f46ce85f701d7217ef1018f01a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008008883476 0.8762519411 2017.78 Intend To Withdraw | |
0x69c8ac30e8309be014e1ac1c41a6fc62627407da3f11031011504e7beac10372 14804673 1652959485 2022-05-19 11:24:45 0x2a5d4f800464007ce4a31cbc1e670e70b51810f1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003784830559 4.140983114 2017.78 Withdraw | |
0x7a107368569a056b201970af2f17c0c77334bb9e1db98b98aba69341b175f12e 14805044 1652964568 2022-05-19 12:49:28 0xd239cb8a45e5d10bb2bad4b7d061d751adfb99de 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002399992732 2.625832048 2017.78 Withdraw Funds | |
0x9c3c3adacd17e33fe0eeb3e28397a973982803f85fabc677774070b6a2bb34d1 14805325 1652968504 2022-05-19 13:55:04 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004576763604 5.00743706 2017.78 Withdraw Funds | |
0x3a7a83583ddb01a8ec40451893cb50603f95bcd4514b2a96ead7e782b981b3b6 14806979 1652991792 2022-05-19 20:23:12 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002147175289 2.349224484 2017.78 Withdraw Funds | |
0xaabff4b2812ed21df71f396269fb8f9e80ccf67d36aa039aa72e93c763e548a4 14807221 1652995368 2022-05-19 21:22:48 0xbe9998830c38910ef83e85eb33c90dd301d5516e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004882338092 5.341766106 2017.78 Deposit | |
0x6055b95169f0879302e1854be57988f1d2f40bc4bb8d87d1b637db40620dc8ad 14807229 1652995457 2022-05-19 21:24:17 0xbe9998830c38910ef83e85eb33c90dd301d5516e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001580986995 1.729757871 2017.78 Increase Custody Allowance | |
0x789b29dda67b65f5a9ed9f5d8568d856359c80c07901bf744ee80fefb21f58a1 14807749 1653002530 2022-05-19 23:22:10 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00270080149 2.95494691 2017.78 Withdraw Funds | |
0xd033228dbde081e83435aa63c9cb3ece5752653f6f08d00fb79fd418f6aa70f2 14809628 1653029276 2022-05-20 06:47:56 0x7ab92301188fe96b8381b7349663e1c54ac74718 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0004041995912 0.4422347727 1956.88 Intend To Withdraw | |
0x3c2dbadd4c7c6919b23cc96ae97327ab387926809b50e218f3bfcc7590e04e3d 14809631 1653029324 2022-05-20 06:48:44 0x7ab92301188fe96b8381b7349663e1c54ac74718 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001516157237 1.658827633 1956.88 Withdraw Funds | |
0x793168a07011fff5188075c84d5e9716ea96fcdf3974f8d9a362159d640123d4 14810174 1653037159 2022-05-20 08:59:19 0xc6e4ad3ccdfc65687d2d60a454a8bddc1f4d6c06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001374006057 1.503300027 1956.88 Withdraw Funds | |
0xb216bb758e0854bba562d54c64ca6aa3f6318754860ea217b792d001071f37ed 14810183 1653037325 2022-05-20 09:02:05 0x14435bb061475ff6da3f378bdd81b243ff5fcb15 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007123285974 0.7793587185 1956.88 Intend To Withdraw | |
0x803fda04a0093ba1c0b6b0f12425b6a3602e36dcd6ad983ca3670ee9411be5d0 14811693 1653057940 2022-05-20 14:45:40 0xd57e00bd3433040522eefce8f103f9a500b67ea1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002499912124 2.735153854 1956.88 Intend To Withdraw | |
0xb3bf621c61a6ce0505c31a205c1143e1c15b46bb5ddd844f0425a40dfc0b7d8a 14812277 1653065968 2022-05-20 16:59:28 0xdca313c4df33c2142b2adf202d6abf4fa56e1d41 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01151628185 12.59996397 1956.88 Deposit | |
0xa14abfd0fb548542c2d47e5be92b0cab4e2f0e284333858f7c7c742115b2b358 14812300 1653066394 2022-05-20 17:06:34 0xdca313c4df33c2142b2adf202d6abf4fa56e1d41 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005782179479 6.326282568 1956.88 Increase Custody Allowance | |
0x563e6747120157fc1cc44133c6b6cf25a0d44854ab0da498229c01511edd2c36 14812731 1653072396 2022-05-20 18:46:36 0xf85605545e3d0db432b1f87b9d43b41096485cdb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008627128365 9.438941144 1956.88 Deposit | |
0xeba771a308ac8f733d890e0586a43ec80c405868a68250b76d1d4c97071e960f 14812744 1653072569 2022-05-20 18:49:29 0xf85605545e3d0db432b1f87b9d43b41096485cdb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003503101326 3.832743161 1956.88 Increase Custody Allowance | |
0x6b1d89b21af99b39b50e7c50201e93660cf6a73b69ad85b6814bc54b2fae2cf5 14813544 1653083963 2022-05-20 21:59:23 0x1465e375f1d4da50c7f976d7aed564730c164ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002167527181 2.371491489 1956.88 Withdraw Funds | |
0x502bb933451f55550c23c9f96eceef8131635543d7adb6d5760677c0b2728376 14813557 1653084137 2022-05-20 22:02:17 0x1465e375f1d4da50c7f976d7aed564730c164ff9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002643598452 2.892361066 1956.88 Deposit | |
0x1d50f61c60411341f1f557bda52b0a6ac0a63d698ad51a9eb6674847a68ff356 14814640 1653099197 2022-05-21 02:13:17 0x82e4d78c6c62d461251fa5a1d4deb9f0fe378e30 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002609611502 2.855175944 1972.18 Withdraw | |
0xdf873b1004bd5e2feb5c086b832bbe537edf3d60d95d2380bf9297412e9f8f5c 14816018 1653118482 2022-05-21 07:34:42 0xe4af5b75bce58135378e25dbf99ffba53c96e7a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002436909504 2.666222689 1972.18 Withdraw | |
0x86826d2a6c0996b41e4df67835e289d08a68f5f51878eb23e7853095f71ce04d 14816039 1653118747 2022-05-21 07:39:07 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002176341695 2.381135449 1972.18 Withdraw Funds | |
0x1eee1e05dbdc650bd98e2b02553d764e9b64a39d8f46ea19e8ab0e3f6c5a2037 14816044 1653118803 2022-05-21 07:40:03 0xa65e7063f9f527ce14cde8836cf038067117d224 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002833889845 3.100558879 1972.18 Withdraw | |
0x2b6ad959465c93f82467e9b1b6bca8836838a3ec264df352cc71456b6563135e 14816095 1653119598 2022-05-21 07:53:18 0xd7181d038545144aff736c975e00a79dd7838771 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002100936577 2.298634709 1972.18 Withdraw | |
0x4c2587b8fc1b6fae9167d89f7454b8dd005bedf9320c7a0200411a23060b0077 14816587 1653127054 2022-05-21 09:57:34 0x9f10c27488119744fd355d4ff6894f23f57a5222 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002535140139 2.773696826 1972.18 Withdraw | |
0xf8a4e86268f2a01a3659baf618aa5bc81b19f19362d736f73854ead5894588bb 14816995 1653132438 2022-05-21 11:27:18 0x31fa64d46a6e0ee7c6990881a3a7e02277bbf238 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001894977664 2.073295063 1972.18 Withdraw Funds | |
0x2caf2e800f0a373a0f6be2e2da3a1996daeb1189cccb31ced8f4faa5bea77f02 14817411 1653138201 2022-05-21 13:03:21 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003118694317 3.412163452 1972.18 Withdraw | |
0x17e16e0de519c0232d9f85bd968864ee7b4adc5ec8c09b8028bdb0a66ec9f17b 14817414 1653138252 2022-05-21 13:04:12 0x186cf5714316f47bc59e30a850615a3f938d7d79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001485228927 1.624988969 1972.18 Increase Custody Allowance | |
0xec1019a6d804d2b239a4293019753c9e9356e9dd60a13c9517b3cb836d181733 14817769 1653143140 2022-05-21 14:25:40 0x0148107d2b0fc3e90e8ac427a9058beaffc5dd79 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003105815382 3.39807261 1972.18 Withdraw | |
0xd954f40b8f86dd058b305fd01c665068d8f22b87bfa360ebd2e4d12fef08d8dd 14818368 1653151179 2022-05-21 16:39:39 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001189950679 1.301925038 1972.18 Withdraw Funds | |
0x014d4b6b2c9035ecef638f826a39f1a396044d317022320441941b9114613668 14818383 1653151397 2022-05-21 16:43:17 0xec89639d883a9ff2086c6deb0d766064b5bbea03 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001728432942 1.891078481 1972.18 Withdraw | |
0xd1beadcf1d65996e703da58ad5010d3d7eca15ca1fda8267790a9b2e29c6e7cb 14819176 1653162714 2022-05-21 19:51:54 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002205694449 2.413250297 1972.18 Withdraw Funds | |
0x74402138b48db0c6d284651e39499a883b5d146a21bb97abb2ce33ad12b58ec5 14819194 1653162959 2022-05-21 19:55:59 0x7a22e7a4d912231f9c0fb6760c59ab560188360b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002570387102 2.812260529 1972.18 Withdraw | |
0x216f66bf5bd4d70b86c8310dfe85ed2cd266c001b55f88a9c8052d14dda30a81 14819316 1653164700 2022-05-21 20:25:00 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001251053574 1.368777715 1972.18 Withdraw Funds | |
0xbbf7d0dbb68715b64c8894a15099f75c14b44f61c788fa48c8c1915286948a71 14819326 1653164832 2022-05-21 20:27:12 0x2079c29be9c8095042edb95f293b5b510203d6ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001539118255 1.683949283 1972.18 Withdraw | |
0x5aebac34f207279c3fca52a3cd39d80b07ff3362feeaed926e2458f1d32bc81d 14820074 1653175340 2022-05-21 23:22:20 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002560149 2.801059021 1972.18 Withdraw | |
0x140e748a2d2b71749428d24a58f32cb499186f51e5538fd1d7c385fc815d9817 14820103 1653175778 2022-05-21 23:29:38 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002396628 2.622150695 1972.18 Deposit | |
0xb449e1977db698844eff767c082687b14e5796cf443deb84cfc180394be25aed 14820109 1653175862 2022-05-21 23:31:02 0x6a73204db71f8e054bf9a0680b02ae96f700b595 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0013671 1.49574411 1972.18 Increase Custody Allowance | |
0x79c65528f4fabf6288108a15151f88a07e519683b8e3dac0621109f5a618c45c 14820512 1653181662 2022-05-22 01:07:42 0xac3ed1444e1ef53c7933e87485f5a8ed50733809 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00364731123 3.990523217 2041.08 Deposit | |
0x478680b01aca3db297dd47abdd078b34ed9248d6f5f754918e3e240cd08dafeb 14820523 1653181769 2022-05-22 01:09:29 0xac3ed1444e1ef53c7933e87485f5a8ed50733809 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001254705816 1.372773633 2041.08 Increase Custody Allowance | |
0xe4ef8b830b5933e499204cd671f51bb0c38f33d0cdbe533aaa7984d08350096b 14820562 1653182179 2022-05-22 01:16:19 0x638238eba3285c4bbdeb64a5a34df883f007f68e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.000667127636 0.7299043466 2041.08 Intend To Withdraw | |
0xe51a772cca6e1b395e895806fd0ec6d0b249c3c3f48ab1b5f0f1791b39b89520 14822289 1653207306 2022-05-22 08:15:06 0x16224283be3f7c0245d9d259ea82ead7fcb8343d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002072068412 2.26705005 2041.08 Intend To Withdraw | |
0xd23681e4e026e5d03af3fe074a289ca58fc6608e07825da2ee9590b9f39bd86c 14824067 1653232075 2022-05-22 15:07:55 0x174d5a5b23a8e3269f70e78b29613128acb8ef0d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003384007473 3.702442576 2041.08 Withdraw | |
0x6462214458786405a2acad3f8136ed3a9252e6e95004edf676d22f44ab5ed7ac 14824503 1653237944 2022-05-22 16:45:44 0x7736bb1e1d8224b72cf40048d1102eb68b30b6e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002158650438 2.361779444 2041.08 Withdraw | |
0x9d149798202adffa22b25e9d86ec68070c17e232adc83a3b6192bfeb14e18efe 14824527 1653238402 2022-05-22 16:53:22 0xdc3b2dce95ebd1e7c18eaa37780d10d240146660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003463912749 3.789866939 2041.08 Withdraw Funds | |
0xa1a04e34b8429f40a12a23e2f77e3023dda04733e34165e7a8eccf7a7b2f08ad 14824580 1653239262 2022-05-22 17:07:42 0x7736bb1e1d8224b72cf40048d1102eb68b30b6e2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004496111547 4.919195644 2041.08 Withdraw | |
0xa67310bb7d262420e773d100ab647c419eefb5c3a26e9932e02896ff2412d242 14824840 1653243032 2022-05-22 18:10:32 0xdc3b2dce95ebd1e7c18eaa37780d10d240146660 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003312547704 3.624258443 2041.08 Withdraw | |
0x2e228e1a8c49f7e496e41f5c1c9913a88dc21708db764cbdd282fe4b3763c62d 14825175 1653247383 2022-05-22 19:23:03 0x9b80a5c4394cc9f2d13e7ad4983d6b26ab822ec1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002163029193 2.36657024 2041.08 Withdraw Funds | |
0xbd9cfe1c6313afdb0d69f860f0cff24866b11fdfa2b171bc964940d9ade1bb41 14825238 1653248300 2022-05-22 19:38:20 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004980295017 5.448940778 2041.08 Withdraw | |
0xf5e2a0f68ad82e15964df77d78f36d8ba561374b94043104cdbce54319576951 14825242 1653248345 2022-05-22 19:39:05 0x5e968bc1086d87158f1779fc851cf69355953fd6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002826546399 3.092524416 2041.08 Withdraw | |
0x0554dfc12e3af7c32314b8d696f94c1c60e0d8a7a21eae1b41ff5953c6d40416 14827901 1653285930 2022-05-23 06:05:30 0xeb90989c9fb9eeff64b22ebf12202709e0495e02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003146431858 3.442511096 1970.7 Deposit | |
0x502ceeaf3ef71fd084a4777d7ba66d1edaa772459f11a677ab708a6bd15d8f87 14827915 1653286082 2022-05-23 06:08:02 0xeb90989c9fb9eeff64b22ebf12202709e0495e02 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001472945846 1.61155005 1970.7 Increase Custody Allowance | |
0xcb87aaec031ca94e6b9fa27fd1581312ebc9e5dc85af379c4f81a72f4a9a83db 14828161 1653289298 2022-05-23 07:01:38 0xab219045455fe12bd0f66b9fac825d40560036a0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0030566643 3.34429641 1970.7 Withdraw | |
0x97dde2c704ba1a94f937f744a1b3d191e7525bea88a0f767453e545f807c9bc9 14829090 1653302434 2022-05-23 10:40:34 0x649b416c0ebfde0386e6b4eaa45539a9e6055b17 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005318268841 0.5818717939 1970.7 Intend To Withdraw | |
0xa1f145bc44093432918ff2c1eebfddd8b9d7ab8fe45ea0bdfdab4f2aa9264d65 14829105 1653302590 2022-05-23 10:43:10 0xf8c03084e6a0e021dd1ea0445c2a4e25339c7a4b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002598997039 2.843562661 1970.7 Deposit | |
0x27243d19501d6cc92b974150860d2a03965315defc91e219058b0d0b77ffaac1 14829229 1653304083 2022-05-23 11:08:03 0xea47fe15d19c7d63d1cd6409f39009473d198a1e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001819832312 1.991078532 1970.7 Withdraw | |
0x79f8211ce5db0e8d4c842a511e0c14493b73dde56dcd3288b2fe95db1858a0e3 14829283 1653304835 2022-05-23 11:20:35 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0004564931218 0.4994491246 1970.7 Intend To Withdraw | |
0xa5b84ac3b6ba8f375fcdb5c021a1dbd79c392250c4819c7405ba63941baa2f18 14829286 1653304885 2022-05-23 11:21:25 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00114524956 1.253017544 1970.7 Increase Custody Allowance | |
0x730b65950d82e9fa7a4306e2e333bcc99384c2dd3112a2f9279f4b101c40f393 14829365 1653306016 2022-05-23 11:40:16 0x6ff56db6a2cf67051bd7d680443e5782594c8460 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002416581651 2.643981984 1970.7 Withdraw Funds | |
0xee082d5c17cabdce3722296af0e7839ebd5bb70258b35aff826043dbfe24d670 14830400 1653320293 2022-05-23 15:38:13 0x7affe6048d4b2647ea5971793a920bee0414133c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001056496617 1.155912949 1970.7 Intend To Withdraw | |
0xcfd4f9f5d65cc8f6121cab6bdb8a9a7c3b450eb11cbbbc61528a874d5c535aef 14830419 1653320617 2022-05-23 15:43:37 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00418606043 4.579968717 1970.7 Withdraw Funds | |
0x8be87a616fa7c2678d91ebec7ed05e3a135f90775592b4c781add7d6e69e62a5 14830484 1653321486 2022-05-23 15:58:06 0xff2eb6dee6f0d137fe95acde5e9e1126e9373537 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001193824932 1.306163858 1970.7 Intend To Withdraw | |
0x8195b7999e525708f183a5674d42d9ca3de25451058f7ef63b5a54ccd05983ff 14831754 1653339274 2022-05-23 20:54:34 0x881117211e99ab4db61c5bba916c0e9ea8532e75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002409565313 2.636305409 1970.7 Withdraw Funds | |
0x8885038b6a875f50cab60ee816e0ef62cf432de8a688b026f07d1a2909691dbb 14832435 1653348859 2022-05-23 23:34:19 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007076391815 0.7742280285 1970.7 Intend To Withdraw | |
0xef85deb956d36518ec495e5011e47f4f5ebca1ca6ea4a55724f8352b51e71427 14834765 1653381513 2022-05-24 08:38:33 0xac7c2135f681fdeeea21a3e67a3d1cb323b8407f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001538394957 1.683157922 1977.85 Withdraw Funds | |
0xd920ef361b1443cce9b981e6b2e9582540bdf65c4b161dcc43d234b7b430b812 14835187 1653387354 2022-05-24 10:15:54 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001684351688 1.842849182 1977.85 Withdraw Funds | |
0xce1854e808484f0453ef3404272a06eb2269b3fa467c68568bba226a9f118c22 14835188 1653387399 2022-05-24 10:16:39 0xc9e6aacae97bd654def9078474c072b8bbb5547e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005960297565 0.6521161566 1977.85 Intend To Withdraw | |
0x4539593e9b15965a9397c88e4b9875a0ca89c56117964e0b8f59f3c622e8edd6 14835395 1653390004 2022-05-24 11:00:04 0x4986d3b5160032ab7df0fac9503f6a2360f3f888 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004662122476 5.100828201 1977.85 Withdraw | |
0x3c18696c33198920992a22341a6603f214897e20a7568fee0b207d9946c9df6c 14835885 1653397062 2022-05-24 12:57:42 0xf97e42d65d09813f1765788bb666488b8e9f4b0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004506947038 4.931050755 1977.85 Withdraw Funds | |
0x42c8ba82031a121969836c42a386be4185d2062e64b565d51534d2442b1a17a9 14835909 1653397376 2022-05-24 13:02:56 0xf97e42d65d09813f1765788bb666488b8e9f4b0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003329786966 3.64311992 1977.85 Deposit | |
0xe9ae1e73882026e74aee90bcbbe862c618aef96c75d2dc14c8b0825057aa14b6 14835914 1653397455 2022-05-24 13:04:15 0xf97e42d65d09813f1765788bb666488b8e9f4b0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00131033268 1.433634985 1977.85 Increase Custody Allowance | |
0x06e667e6ac2237e33bf6f744aa71e4f1d397c08e2e7cf525b94a8b97ae9393d2 14836365 1653403586 2022-05-24 14:46:26 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001051291682 1.150218229 1977.85 Intend To Withdraw | |
0x947f84f06d04ef740b1bfb6ddc11b3694cc7e667153ec0e31a168bc814eb0875 14836613 1653407351 2022-05-24 15:49:11 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02437926212 26.67335068 1977.85 Claim | |
0x9be54909c11bc283932e3b55986e0ea181a72504fa5233763a6a61ca72bb425f 14836617 1653407414 2022-05-24 15:50:14 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02668819323 29.19955221 1977.85 Claim | |
0x327e92835ac1f90097b627ae7b01b1c9b3ac9f61ad433c425eee108ced2ac94c 14836623 1653407520 2022-05-24 15:52:00 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02364481246 25.86978932 1977.85 Claim | |
0x16160b5e09866ebc5294c5e7839d7e115ca872da6d6c273f6e1dc2cdb320d6ec 14836629 1653407582 2022-05-24 15:53:02 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01926312996 21.07579049 1977.85 Claim | |
0xcd4f04c8c75fff12b9348cd3c0b9b671cd94a4dde6a64dcfec3eca3dd3a41859 14836635 1653407686 2022-05-24 15:54:46 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01813284429 19.83914494 1977.85 Claim | |
0x193b714298a87ea42059e9c1e81fdd93808288e50c354aae41fd73a6e95898e5 14836651 1653407867 2022-05-24 15:57:47 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01417357307 15.50730629 1977.85 Claim | |
0x58dfa1e245cf53bfefb69d105aa397bd1d505a27618438b12fb3b536cbab18bc 14836665 1653408016 2022-05-24 16:00:16 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01338200016 14.64124638 1977.85 Claim | |
0xd6702747125bdeddf7d2c60bab63ffeb2ec45b72fb3a756209d90e957905d0e1 14836699 1653408652 2022-05-24 16:10:52 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01795637159 19.64606616 1977.85 Claim | |
0x5e4f1d93a1ccb3210437d9b6c7931d6093a964b2625e44ae4ccf654260b9bdd1 14837062 1653414221 2022-05-24 17:43:41 0x23142055814dd6c01185b36ba3f5ae966643e8c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005076684336 5.554400332 1977.85 Withdraw | |
0x94f8fab960aec6938c129225982cb34e96c373795b5752f4765dec7e1ba8af6f 14837087 1653414503 2022-05-24 17:48:23 0x0f2fd86478f0de48a399dceed6dd5162ed385c9b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00467563349 5.115610601 1977.85 Deposit | |
0x9680de13a554b5ab8f9f3c050a30ed5cfbd5a84620b889a7edf06e7e2572f918 14837101 1653414686 2022-05-24 17:51:26 0x0f2fd86478f0de48a399dceed6dd5162ed385c9b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002329536546 2.548745935 1977.85 Increase Custody Allowance | |
0x481077ddc8ea235627c1f44372ce63eebd67d6baa181b5660968169e84d813a2 14838466 1653433939 2022-05-24 23:12:19 0x69bf89c1ea8378fd309765d04ed92c81b3b00934 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00929884416 10.1738654 1977.85 Withdraw | |
0xd4c8f2524485ccc311d734407ceedad7f6ff2a8342eaaf3fd6e93246bdf1d5ff 14838565 1653435654 2022-05-24 23:40:54 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002347677525 2.56859398 1977.85 Withdraw Funds | |
0xebbee2895fd55b3909cc75756a288a7f11d949f9f4b1a13101a7e97397ee666a 14838697 1653437462 2022-05-25 00:11:02 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001927801472 2.109207591 1941.04 Withdraw Funds | |
0x622727fb4c759dc71d838dd1499f3d1d38ddafa1b880fa587973d6465b0d284a 14839224 1653444941 2022-05-25 02:15:41 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00243234122 2.661224528 1941.04 Withdraw Funds | |
0xcf086b9199ddc145ba9e1f9d0cebfb5fe9d877bdc75b9b80c872fe7912db7814 14839229 1653445018 2022-05-25 02:16:58 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007562644517 0.8274289366 1941.04 Intend To Withdraw | |
0xe415ffea051f55bcaba9ce33e7d79bc6bead9fe967b315bcd4439ecd0fecffaf 14840087 1653456884 2022-05-25 05:34:44 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002151597165 2.354062458 1941.04 Withdraw Funds | |
0x6eb8b2b7f7d446bb0d8a1d53921ee16a8422f193a63bd26c98f98f8ce5ec9af2 14840097 1653456944 2022-05-25 05:35:44 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005409653323 0.5918701701 1941.04 Intend To Withdraw | |
0x802ddd40a8fdda23739cd96bcb22ce4e962b3bc84a5595041307407f6dfc732c 14840594 1653464040 2022-05-25 07:34:00 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001358774499 1.486635179 1941.04 Withdraw Funds | |
0x3daf370c6d6a6c915efeeb236ca87494061f1b705c7c16dc3972bb651725e35a 14840684 1653465374 2022-05-25 07:56:14 0x820ce800b58c7faad586a335fd57a866cc61b463 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0024653704 2.697361755 1941.04 Deposit | |
0x3bd1f92bbec681ebd23e6a902590a2368e7ace03ff347ea1691d0719e615aad8 14840692 1653465485 2022-05-25 07:58:05 0x820ce800b58c7faad586a335fd57a866cc61b463 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001015563984 1.111128555 1941.04 Increase Custody Allowance | |
0x313fcb8e39dcb9ce71fbc5ae72da0e21c681e0f5c9ce829022e41145533d97a4 14840706 1653465699 2022-05-25 08:01:39 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00165269972 1.808218764 1941.04 Withdraw Funds | |
0x4cd0f1787dfa74845f3040dc8f1c769f22ebb53a26cdfe39d22d86fc4071d5ac 14840708 1653465730 2022-05-25 08:02:10 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005645849449 0.6177123882 1941.04 Intend To Withdraw | |
0xd79d24817630fc9be71acb6f6930acf52f6a1b20260399da3699aeba637b2130 14840904 1653468215 2022-05-25 08:43:35 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001285730811 1.406718081 1941.04 Withdraw Funds | |
0x3828c995a15250acba70b31d37439b532266712a0f57a9367ae139d923d7d536 14840916 1653468375 2022-05-25 08:46:15 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001159412128 1.268512809 1941.04 Withdraw Funds | |
0x764d593f7d71928d145da2f596ea6fe00be01e34b59752924140e4e1ee8e7082 14840998 1653469598 2022-05-25 09:06:38 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001746295794 1.910622228 1941.04 Deposit | |
0xfbb7c7d35f4fb94b7157cdbd01aaf720ac7b66b7ac2694970a4d22823e932db8 14841001 1653469674 2022-05-25 09:07:54 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0005716542102 0.6254468714 1941.04 Intend To Withdraw | |
0x3b3f57eb3287a20e4512e7145af5a02f51c2baaae464a7bdee9eadf1f39ec1d9 14841001 1653469674 2022-05-25 09:07:54 0xa99c3d4d7e57894859d5b7440c329ae1fe499b57 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0007569972324 0.8282306719 1941.04 Increase Custody Allowance | |
0xc9c9426d00c5be3708d86f8f13b3cada82fca4a5f6582066258550af82211e88 14841710 1653479368 2022-05-25 11:49:28 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002027328389 2.21809999 1941.04 Withdraw Funds | |
0xb492bc05ed59c8c7ec38f65e4968d9ffd27731f8861eef781e7b238041f0d619 14842371 1653488743 2022-05-25 14:25:43 0x86a5905c330325d930830c2a4c7bc16096f10cef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008521292932 0.9323146597 1941.04 Intend To Withdraw | |
0xca7819a9185cf9dc8e09def3af4b0a73561f06d8d621e5b638869732125e7a10 14842569 1653491431 2022-05-25 15:10:31 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01144750408 12.52471422 1941.04 Claim | |
0x2d2af33851d96c1fc4498840c1575316893c45cedcabc2454117042b0a2b3cb1 14842898 1653496395 2022-05-25 16:33:15 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005863893211 6.415685562 1941.04 Withdraw Funds | |
0x611979e2b1ff2eee0fb9169790d172a81428cd122a598b60099038aa3b2e8a86 14843273 1653501217 2022-05-25 17:53:37 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003926766601 4.296275338 1941.04 Withdraw Funds | |
0x674ab5eed7f9c4a692ca8aed8d423e4d0675d9288377f1d3675eef70ccfd0e2d 14843293 1653501496 2022-05-25 17:58:16 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004871209541 5.329590358 1941.04 Withdraw | |
0x6738bc88a479b4275045037ee85dcaea905b7cbb763fec4b3f1a6dd846039c36 14843297 1653501593 2022-05-25 17:59:53 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003499625583 3.82894035 1941.04 Increase Custody Allowance | |
0x7adfc923b3da80578ee23daac5a0ebc20fd200ce70cbb053e32c783e12aa4b7e 14843746 1653508085 2022-05-25 19:48:05 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0047384 5.18428344 1941.04 Withdraw Funds | |
0x04eab58be9198ad54611db4a7addba269d483c16804f66f4e9e6b5e63b42cf1c 14844094 1653513092 2022-05-25 21:11:32 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006440082266 7.046094008 1941.04 Withdraw Funds | |
0xe3122c0b254326c2041e9e83c9996e2b15d5141a31941d83984d3fe393e2ca0b 14844097 1653513157 2022-05-25 21:12:37 0x37f722118b11a3c9baedfef1dca3423d56a19e58 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00738891426 8.084211092 1941.04 Withdraw | |
0xd08935345d3361bebaac9497afc5d361d7dd40c4d4f72abcf8e3c51262bf644b 14844693 1653521615 2022-05-25 23:33:35 0x2574d2367c58a037604d79a5a6ddd5e13603cf12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003579776 3.916632922 1941.04 Withdraw Funds | |
0x8cee9d9020e2f02511526f46b1d626554356e4370d3c33ed59eac126b364877a 14845777 1653536802 2022-05-26 03:46:42 0x98a6769b451e6625b9d8487f0d2bbe1cf6dbc7b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003383993768 3.702427581 1791 Withdraw Funds | |
0xc020ac12f5e004cd5f968e59ed4b30424d4c1fcc771b4836faa3aec61c21f3c7 14845874 1653538082 2022-05-26 04:08:02 0x3f60a58dbaafc585bbcd2ab7b3b20e1fa3ff4d93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005674547603 6.208522532 1791 Withdraw | |
0xc4af962b6c735a23e7170b152798bc700d9bf53a4b5b437cbede077c40a4e4b9 14847179 1653556923 2022-05-26 09:22:03 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01558562107 17.05222801 1791 Fund Loan | |
0x9d87db7b44373df5a541a30d3bac687fdf7a57844145bcf9ad33d38a23acaf93 14847651 1653563855 2022-05-26 11:17:35 0x07dc9483bc1839deab93c4bf4edce8c613b794a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005249727799 5.743727184 1791 Deposit | |
0x728fc6072b259e16ba59c21b5eb54e86d0734fef4a849ffb5690f87626776962 14847659 1653563931 2022-05-26 11:18:51 0x07dc9483bc1839deab93c4bf4edce8c613b794a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0019824666 2.169016708 1791 Increase Custody Allowance | |
0x34802c91cf473c5af22449b14697126102aea6764e8c6983d06abc5963f9cbe0 14848622 1653577477 2022-05-26 15:04:37 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005344127697 5.847010113 1791 Increase Custody Allowance | |
0x8c9d6dddc2a30d73e3ecc7c693a70cafc3507d88257a30f69d8a518156f87148 14848625 1653577498 2022-05-26 15:04:58 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005957703753 6.518323676 1791 Withdraw Funds | |
0xed5912ff9c4c2ff582f58db686c704cef8f2ca6cb5ce8d50f53c148bc27b28fa 14848767 1653579427 2022-05-26 15:37:07 0x54d020c2fe9d0c9d9b562fa1ffdbc6fa8a0bab93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003496851397 3.825905114 1791 Intend To Withdraw | |
0x7a985f83475047fff16023f6333ffd9ced36afbfbaa6ec2dcb3a93d76434609d 14849449 1653588663 2022-05-26 18:11:03 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006418971026 7.0229962 1791 Withdraw | |
0x52baeffde90f431337928b27f4b42c32b053bfcfd21c061a0a3fac831efb59c6 14849469 1653588883 2022-05-26 18:14:43 0x7e2e80e8250844dd4e558f13850380d5af8f0c61 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004733893699 5.179353096 1791 Withdraw | |
0x522ab8aa7c77a1e71b40160be7ad5da436720cb07e528c1c7fba337d3b8a2735 14850522 1653603819 2022-05-26 22:23:39 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01566997938 17.14452444 1791 Fund Loan | |
0xad1fa3bed9c2514f6636eaa64cdcbddac5582d6ff58a94535dde1582dacc8464 14851222 1653613958 2022-05-27 01:12:38 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004077089213 4.460743308 1724.73 Withdraw Funds | |
0x04aa54299b7867d7cc82c0da0c77178c916179b0da4592332553a2780f22de87 14852891 1653637130 2022-05-27 07:38:50 0xb4522eb2ca49963de9c3dc69023cbe6d53489c98 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001004141684 1.098631417 1724.73 Intend To Withdraw | |
0xd945daff1231f761c5e51bf240fc1a127ffee163e8ccd2b075969a148565d7a7 14853006 1653638803 2022-05-27 08:06:43 0x449816d520c89c87b320e94a0bfdca9ed66e156f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003836032125 4.197002748 1724.73 Withdraw Funds | |
0xe44f7abb9e8fefc998d14ad4e6c0e97bb8371c468a03c0397321097245a530e8 14853010 1653638872 2022-05-27 08:07:52 0x449816d520c89c87b320e94a0bfdca9ed66e156f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005040860076 5.51520501 1724.73 Withdraw | |
0xeff6db78d0666dfce687eb942a2556314c982c9fd349215aac879a3597fc8ae6 14855070 1653667796 2022-05-27 16:09:56 0x7100bd23913cbbfcfb655ec476f16a027d4e9d5d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0112458663 12.30410232 1724.73 Withdraw Funds | |
0xeeb43ab1b7fca7e57b964fbf7c69e5c5255325f0e36f3133f62235949a6c0ad2 14855074 1653667845 2022-05-27 16:10:45 0x7100bd23913cbbfcfb655ec476f16a027d4e9d5d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01272131576 13.91839157 1724.73 Withdraw | |
0x36fd688072982916db1ec87a83d6824caccad5eea4c999e74c3b4b547c02f54c 14855096 1653668151 2022-05-27 16:15:51 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005535252419 6.056119671 1724.73 Deposit | |
0xad62b2e412ba6eef748d2adfd116ec22048e5fbef22243d01c7aa7e83309e83b 14855100 1653668199 2022-05-27 16:16:39 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001978828797 2.165036587 1724.73 Increase Custody Allowance | |
0x1f2b6319db6436bc656dfeae482ad8fc342ad8bbf1fd67f93cf1c3808da1fd80 14855146 1653668720 2022-05-27 16:25:20 0xfd225193f80f40053fd1a1548bca6cf0e6577bb4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003860754679 4.224051694 1724.73 Withdraw Funds | |
0x00388b4f2120f4357d57e46965e88417821da588a18a4f968c965ffb0b6e1b1d 14855315 1653671267 2022-05-27 17:07:47 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001324048 1.448640917 1724.73 Intend To Withdraw | |
0x42877b891b49c67548e7f70d626ecdb81202eeb0eeddec9f7ccf5f360f6d7cb2 14855653 1653675693 2022-05-27 18:21:33 0x0f2fd86478f0de48a399dceed6dd5162ed385c9b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007572185174 8.284727799 1724.73 Deposit | |
0x13d5cce2259d4cb8a00473c4fa5e163017e952c2cc98fbfa5da5ff5a24871fd5 14855663 1653675839 2022-05-27 18:23:59 0x0f2fd86478f0de48a399dceed6dd5162ed385c9b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002769889174 3.030535746 1724.73 Increase Custody Allowance | |
0x718c5d4f17af17cfe0c0302b7cd7428003f1abb787190899408cdaca5087e139 14855774 1653677288 2022-05-27 18:48:08 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004807984293 5.260415615 1724.73 Withdraw Funds | |
0xf263616f6aabc9a5a8000495b59829c1e3812339ab2359f9b5ab94be07d84f34 14855824 1653677973 2022-05-27 18:59:33 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009623387461 1.052894822 1724.73 Intend To Withdraw | |
0x2b877b3dfb8729e147e77e5bdf7eeee33c151b20af8a8068b3d1ff34fb4ca915 14858549 1653716975 2022-05-28 05:49:35 0x6ff56db6a2cf67051bd7d680443e5782594c8460 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00258383867 2.826977889 1790.79 Withdraw | |
0x534bde0ad071805ca099709ee80618b5fb144236f8eea5de0a0f077fb15ab553 14859375 1653728323 2022-05-28 08:58:43 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004393509226 4.806938444 1790.79 Claim | |
0x810b2dfcac237186e39038fa5fe90539b903bb4afef975bef425d1cdc1f9c9a7 14860906 1653749522 2022-05-28 14:52:02 0x0c8ee7dbf8cb1d980c107d3df6357deac7dbe9ef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002582267588 2.825258968 1790.79 Deposit | |
0xcc36891e48de7247e6ca6edafceaab867cf8f566b23f446ed838af627c38a16a 14860928 1653749769 2022-05-28 14:56:09 0x0c8ee7dbf8cb1d980c107d3df6357deac7dbe9ef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001246577949 1.363880934 1790.79 Increase Custody Allowance | |
0x0524bdbaa5def673af36bf68157ec3d5c0ece05b69d6aca3ea49f50ecb5498b9 14861281 1653754655 2022-05-28 16:17:35 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002171253736 2.375568712 1790.79 Withdraw Funds | |
0x9360e5c3edafd0164584a47bb90a02580c0bd180a1ab9ffbceb13fd7bcc906ed 14862814 1653775931 2022-05-28 22:12:11 0xba0b3e6a81d8f26a46d958a36cd364ec0ee4476d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002282992825 2.49782245 1790.79 Withdraw Funds | |
0xc54b126e5d69e97e18a96e017e48a18f22f9ee64411bf44d45ec4a8150aa8220 14862820 1653776017 2022-05-28 22:13:37 0xba0b3e6a81d8f26a46d958a36cd364ec0ee4476d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0006182130258 0.6763868716 1790.79 Intend To Withdraw | |
0x7816be0ad8facc0f5d25c28ffbf0c6db456fea263a21d173e27d7f49aa4af05b 14865183 1653809058 2022-05-29 07:24:18 0x2fc2f705110a7f46ce85f701d7217ef1018f01a3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002251597075 2.46347236 1811.69 Withdraw | |
0x8eed21049ee94ded76548aeb39eb7b5313d95f041e4995e43abbe858f7f0b9a9 14865473 1653813131 2022-05-29 08:32:11 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009711036028 1.062484452 1811.69 Withdraw Funds | |
0xcf9d1ef38fa464d4771ef1025bbae4d4d06b0c0f598243fe6c406271d56ce369 14865476 1653813204 2022-05-29 08:33:24 0x9feef5f51fdb694374e3d7bb3a8330631d298bfa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001519762038 1.662771646 1811.69 Withdraw | |
0x150a68528a9f351df116a54815cd263b90db6b73f3d8bd81eb1a01f65da7a557 14866039 1653821447 2022-05-29 10:50:47 0x3ea81e57226d4386ad441683f0ebb63595ee91fb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00094768 1.036856688 1811.69 Withdraw Funds | |
0xfad890b026267f20a42da4b0b79fe9063595637c149b68a706edcc73d1b863b2 14866052 1653821635 2022-05-29 10:53:55 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001064192954 1.164333511 1811.69 Withdraw Funds | |
0x87070f8538a288a8bca5443347a4be4c54e80e68f74bc7731fd9c93ba4ef9bae 14866067 1653821797 2022-05-29 10:56:37 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0009830355488 1.075539194 1811.69 Withdraw Funds | |
0x30c05ed6d365668b9e5246fc64197fd5b08995dbb66996b9e079ca6f12c4119a 14869282 1653866645 2022-05-29 23:24:05 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008867093117 0.9701486579 1811.69 Intend To Withdraw | |
0x96ac9eab5f5aeb9483eb80345b404df6c86d67ed29859a8fb09888ba80a2bb97 14871267 1653895269 2022-05-30 07:21:09 0x7ab92301188fe96b8381b7349663e1c54ac74718 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007788641878 8.521553079 1997.64 Withdraw | |
0x9d05b87eb75c9ede97c1824a01c68f64f7659590ecac4327c5468adfe94c28ed 14871473 1653898027 2022-05-30 08:07:07 0xae8ce6bb2b95684f57c097b407f4e9b55d9ca432 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008842365016 0.9674431564 1997.64 Intend To Withdraw | |
0xd4fd21af7d3df7239d2771b7979825e00a951697e450d165ba0d84160d256b08 14871483 1653898089 2022-05-30 08:08:09 0xae8ce6bb2b95684f57c097b407f4e9b55d9ca432 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001599999214 1.75055914 1997.64 Increase Custody Allowance | |
0x84c9594d5faccefe8eb4d43908aaec85cf0015da93780d698b986689edc9cd30 14872160 1653908226 2022-05-30 10:57:06 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00552489851 6.04479146 1997.64 Claim | |
0x3f36dd104a69323cce2ff4a02665dffc64590f715b63ff534ecd2d39036ad34b 14872168 1653908277 2022-05-30 10:57:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005270448129 5.766397298 1997.64 Claim | |
0xb768b8a9d3a29dbdba0b785cfe37ef37a7858ee6f717b7f708873462478270aa 14872169 1653908291 2022-05-30 10:58:11 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005462378005 5.976387775 1997.64 Claim | |
0x6bfe14b23c46cb51fab64428ee8bf02224c4f48f978cde481b8ae7b913a7124f 14872172 1653908315 2022-05-30 10:58:35 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003486580394 3.814667609 1997.64 Claim | |
0x5e6019b121b7f26aee524c47ac9bb74b663eea6787117f96af02645619ce75cf 14872737 1653916801 2022-05-30 13:20:01 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01109234932 12.13613939 1997.64 Claim | |
0x0aac9d203dead802be7686c6442e1db6deda3005ff22d85cbd0fe16662e83a36 14872869 1653918573 2022-05-30 13:49:33 0x81313cd8b1eee4dff9256669c804e229906b1705 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008012543574 8.766523924 1997.64 Withdraw Funds | |
0x72f4df285f52a075b2db10f5f0eac2407803d0777a9d24d8d3bfa706231807aa 14873661 1653929071 2022-05-30 16:44:31 0x0f2fd86478f0de48a399dceed6dd5162ed385c9b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005748899572 6.289871021 1997.64 Deposit | |
0x8662157179f625cbcdbb52238ec42c1f89860751a4ae7883bcb81f3e9081d2e4 14873723 1653929806 2022-05-30 16:56:46 0x0f2fd86478f0de48a399dceed6dd5162ed385c9b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001123704093 1.229444649 1997.64 Increase Custody Allowance | |
0x3d2695e9952c7159530f3f6341d3f841ed0ac8b25f8d42cee1286fffaba9e0ee 14874386 1653938546 2022-05-30 19:22:26 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001649654998 1.804887533 1997.64 Withdraw Funds | |
0xdb3b743bb2bc8530dd41b80b338e993cd26c056d93ef2d9da803c043a2e3e946 14874747 1653943747 2022-05-30 20:49:07 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006022928836 6.58968644 1997.64 Deposit | |
0xcc52981e7716c545deee8fee72c4a96e9223c34173f70f80b53c740d6750c994 14874751 1653943822 2022-05-30 20:50:22 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001834193701 2.006791329 1997.64 Increase Custody Allowance | |
0x0ab622b1112101e56adc0f895f653b6199cd05d183297ba6f7c4273e3607e7a2 14877098 1653976935 2022-05-31 06:02:15 0xc87d690a8d20fae8509aa27db0850b199645327c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005278991066 5.775744125 1940.59 Deposit | |
0xf695c9fb3554e09bb2a75057fa7023cb8ca377c3461be9e7bd5a32f3f1ec3f06 14877103 1653976970 2022-05-31 06:02:50 0xc87d690a8d20fae8509aa27db0850b199645327c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002010293172 2.19946176 1940.59 Increase Custody Allowance | |
0x4f7ec1acd2db0b1e9b422cb97b631da44b0d23b465bb3b5c33fd2bfec8507f91 14877372 1653980905 2022-05-31 07:08:25 0xc87d690a8d20fae8509aa27db0850b199645327c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003163298139 3.460964494 1940.59 Deposit | |
0x782519f25be65935cfef206030c1bdaab0671ee6cc305ae2c80af65fff3eb451 14877425 1653981596 2022-05-31 07:19:56 0xc87d690a8d20fae8509aa27db0850b199645327c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001008952978 1.103895454 1940.59 Increase Custody Allowance | |
0xdd2dba365793dde092377fa45b07c23cfffc644e79fefa614102ee6d27640b9f 14877643 1653984758 2022-05-31 08:12:38 0x3f3c8b2ec580bb7b4bf60125d5db58612e5cffa0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0011798 1.29081918 1940.59 Intend To Withdraw | |
0xc494591463a03108beb10cd767f947094b8438dfd4c228281339dda313a32195 14877918 1653988878 2022-05-31 09:21:18 0x6957d2139d29e7db7913ac21e813f2a561e47ac8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002878678 3.1495616 1940.59 Deposit | |
0x5f58be38cd6b3d7547b3a02034c6b554682a5e5180bbcb10c92f49de60471984 14877952 1653989271 2022-05-31 09:27:51 0x6957d2139d29e7db7913ac21e813f2a561e47ac8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001225120233 1.340404047 1940.59 Increase Custody Allowance | |
0xdf30f291b9e4cd7f8c3a3e40d280e4a8ff7353816477fcf1c018b00f457116b7 14878010 1653990210 2022-05-31 09:43:30 0xafd0659e7993bd4d820f17a2bb2e79205feaf9b9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006191171644 6.773760895 1940.59 Deposit | |
0xa0a5687cf12da68a472244edce103c8b5bb4cde9cc5195e5dba299d923f87a5b 14878280 1653994262 2022-05-31 10:51:02 0x6b6310bd7fb278c7d6a12f888a0360b44d209e33 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002061917626 2.255944075 1940.59 Withdraw Funds | |
0xabc72da3352933908ba4f034078711dedc01504811472a78a4875ab741135d57 14878333 1653995142 2022-05-31 11:05:42 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002442390284 2.67221921 1940.59 Withdraw Funds | |
0x5b5bfc58d65e41d178bc271af6a6f44c41bedbccb5845ce2239592511282a857 14878336 1653995179 2022-05-31 11:06:19 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008768638185 0.9593767039 1940.59 Intend To Withdraw | |
0xd40442d961745cf3952d6ccbb8d8b519a92e784b025fcc61c8be216c5f6d6c3c 14878836 1654002127 2022-05-31 13:02:07 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001132418178 1.238978729 1940.59 Intend To Withdraw | |
0xb3586669ebd13b58144d880afbf89a5fe8176c6557c648a42a1994985bc0681e 14878937 1654003466 2022-05-31 13:24:26 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0020445162 2.236905175 1940.59 Withdraw Funds | |
0x502b044dd7131434f82a415da136caa5718d8a7559cf90b791abb36c2aadfae6 14878963 1654003841 2022-05-31 13:30:41 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003628227121 3.969643293 1940.59 Deposit | |
0xcc866d36fc9f6e1d172346e82c74dcc777b3fb4119645c270fb72c7585665511 14879179 1654007071 2022-05-31 14:24:31 0xf0163143ed4f65cedc3ff7db3a0b30a610088518 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001986819783 2.173779524 1940.59 Increase Custody Allowance | |
0x68c021c613ae28dd8a3154c0aa491827dc9f596ffb07b83419fefb33c6a88f01 14879539 1654011803 2022-05-31 15:43:23 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006784746692 7.423191356 1940.59 Withdraw Funds | |
0x1a84738ca2ac12c65ea29fda7692fdfe609baf4db53216fc7a664b52406fb465 14879600 1654012446 2022-05-31 15:54:06 0xf92dfc9450dedda906d944d15b8d511060a1753d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003951863661 4.323734031 1940.59 Withdraw Funds | |
0xbe5281dc417d562e63a61826febc3552ba34874f71c92f3b78c8b86bd645a0b7 14879997 1654017787 2022-05-31 17:23:07 0x5789527ec57ff76286e42673e7b97e692b13f6d0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005175213499 5.662201089 1940.59 Withdraw Funds | |
0x7d6ab289b7ad8c59e690b2686e9a2da37019dcc4c24810e60f6e3b58739bad28 14881693 1654041861 2022-06-01 00:04:21 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006035454312 6.603390563 1817.42 Withdraw Funds | |
0x167484cef1e372bcf5c827e098fa2f11875c26dfc815a2bf83fb4ef4b9b2160f 14881698 1654041916 2022-06-01 00:05:16 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004854696089 5.311522991 1817.42 Withdraw Funds | |
0x89efb76d2a78dc43db850a013527d4938009ae208ac257d9fd6587889d61c58f 14882370 1654050950 2022-06-01 02:35:50 0x09c8f6d2360c57059b39e6d28ea1a02665602ffb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005089106568 5.567991496 1817.42 Withdraw Funds | |
0x9fb22edad132a8c2de0563073eba0b18116963962895ccbfb9780d8069c4d0c3 14882394 1654051166 2022-06-01 02:39:26 0x09c8f6d2360c57059b39e6d28ea1a02665602ffb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001473226079 1.611856653 1817.42 Intend To Withdraw | |
0xb284ab69f5b9213dcb523ad9c161afab75b848b2d473904952a6f4e96d637c06 14882457 1654052185 2022-06-01 02:56:25 0xc95adae711dfd7c741db02d6645d24aa91cec563 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005589472114 6.115441439 1817.42 Withdraw Funds | |
0x1a85349db1cd88fa4898c74afa15485afb0143a7129de10cca3eec6ca0791c28 14883900 1654073294 2022-06-01 08:48:14 0x47c3006af872af4022895c8720224f786bad397c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004672169969 5.111821163 1817.42 Withdraw Funds | |
0x3ba1df5428b0dab1648e4d073d1feb9cc4377cd2da5f4e00b3283df8bbed5128 14883994 1654074999 2022-06-01 09:16:39 0x47c3006af872af4022895c8720224f786bad397c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002057280282 2.250870357 1817.42 Intend To Withdraw | |
0xc6495a96d31959c14fed6c52e3c1af2a4da32cb6f77dcbc322cbac7bba9298c5 14885139 1654091438 2022-06-01 13:50:38 0x7d6105d75c5e6a40791a50a52a92365545e9b112 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01001948606 10.9623197 1817.42 Deposit | |
0x0c44b2cd9fbd005affa854ffbb6ba2c5ac69e5056d1b22c5a20e30aa3111396b 14885912 1654102166 2022-06-01 16:49:26 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00838211503 9.170872054 1817.42 Withdraw Funds | |
0x877a3a0fa27ad208721b494c0b071b0bad7a3738f3097c0ef1e315045d7662a1 14885918 1654102321 2022-06-01 16:52:01 0x16224283be3f7c0245d9d259ea82ead7fcb8343d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02188223195 23.94134998 1817.42 Withdraw | |
0xbe4dd0039587771dc8c5388b0c7ba48410443be275751a1da3f68a933e141b71 14886701 1654113105 2022-06-01 19:51:45 0xd57e00bd3433040522eefce8f103f9a500b67ea1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001896592183 2.075061507 1817.42 Intend To Withdraw | |
0x98959a27403289e27981b12a3494f4ff7d6f586f5aa139a4488e528295df9cbe 14887804 1654128181 2022-06-02 00:03:01 0x0c2a6ab3c392bbb3c571a1b33014d99c214f4e4e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01061514021 11.6140249 1833.26 Deposit | |
0x04435cd340bb750fe437e5bce7793d9c115c8ccc41ed47e48bb74f0e531d8877 14887806 1654128227 2022-06-02 00:03:47 0x0c2a6ab3c392bbb3c571a1b33014d99c214f4e4e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005153487253 5.638430403 1833.26 Increase Custody Allowance | |
0x91270dccf397c42b68b7a5804b9103ae2c66199d283fd307fcb0e1281cec0453 14888658 1654140239 2022-06-02 03:23:59 0xff3fc772434505abff38eecde3c689d4b0254528 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007954975735 8.703538952 1833.26 Deposit | |
0xa27f2810e0681adc27a62357f25a176af7f4acc120749dc3b93ddd39b8972a31 14888667 1654140342 2022-06-02 03:25:42 0xff3fc772434505abff38eecde3c689d4b0254528 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003694290429 4.041923159 1833.26 Increase Custody Allowance | |
0xe020b9c5f7195a058fa3c136e9258013fba656f07c7fc5bbb64566cb972ebd41 14888838 1654142830 2022-06-02 04:07:10 0x0272ec6b528511f6d6d10f034df8eab8ec2e6fec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01218733939 13.33416803 1833.26 Deposit | |
0x40945dc514467a0005e30a11bca75979997e4394688a2d67958340ae654fdad2 14888851 1654143041 2022-06-02 04:10:41 0x0272ec6b528511f6d6d10f034df8eab8ec2e6fec 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005441228178 5.95324775 1833.26 Increase Custody Allowance | |
0x1ccedc84d055681785a0942e9855a09feac7051f01cec6d0feecbcee7891a00f 14890125 1654161335 2022-06-02 09:15:35 0x638238eba3285c4bbdeb64a5a34df883f007f68e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008763364377 9.587996965 1833.26 Withdraw | |
0x3468d7216729687849187164606a4cf894d2b5010c4c07f57a720fb3ee1fc139 14890583 1654167552 2022-06-02 10:59:12 0x649b416c0ebfde0386e6b4eaa45539a9e6055b17 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007356911831 8.049197234 1833.26 Withdraw | |
0xf928cecabb6afcc5d5468ee856939a296e4e4b940c3640800aa6bec323dfb6d4 14891400 1654178653 2022-06-02 14:04:13 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0357639486 39.12933617 1833.26 Fund Loan | |
0x03c7afe708e0dae0da64e5b019c036172fd14eeaa166bc352d4fb76baeae0bfb 14891859 1654184654 2022-06-02 15:44:14 0x7affe6048d4b2647ea5971793a920bee0414133c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006718113822 7.350288333 1833.26 Withdraw Funds | |
0x56fe954949c72b7c040fffff936314c5a1fececaa68c16c94c5c7befaff0ba9e 14891861 1654184741 2022-06-02 15:45:41 0x7affe6048d4b2647ea5971793a920bee0414133c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009164651066 10.02704473 1833.26 Withdraw | |
0x7af5554a6540257a4b0d3b93d5627473ab56d93a5fca2b602cd159e6e9fce944 14892312 1654192045 2022-06-02 17:47:25 0x7afed9ca0c0aa5e847d74de27927bcd05030a97b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01140869977 12.48225841 1833.26 Deposit | |
0x81b97f1272d374746605d55b8ef2d5ecd585e344bc064caf42ba9fa47657f3f8 14892328 1654192292 2022-06-02 17:51:32 0x7afed9ca0c0aa5e847d74de27927bcd05030a97b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005523447524 6.043203936 1833.26 Increase Custody Allowance | |
0x39ec00f3ed048bcdf9c672f669c17daa8c0140832e8774d4ff502820142eb99d 14892332 1654192340 2022-06-02 17:52:20 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003393860395 3.713222658 1833.26 Intend To Withdraw | |
0xd7959aa92ce71d3d4771ad40669869e90591368ae61b3866602a3f8f6ee8def6 14892909 1654200205 2022-06-02 20:03:25 0xc3be098f9594e57a3e71f485a53d990fe3961fe5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02911919577 31.85931209 1833.26 Deposit | |
0xccd77aeabb8782e259b915c118c2f6b0a54f1783bab80de884f567e21aabec3f 14892914 1654200295 2022-06-02 20:04:55 0xc3be098f9594e57a3e71f485a53d990fe3961fe5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01137784504 12.44850026 1833.26 Increase Custody Allowance | |
0xeec12082c40ec206e71ca12c09214474729b7fc9cd4f0a186c01498d724ad365 14893219 1654204632 2022-06-02 21:17:12 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003389752452 3.708728158 1833.26 Intend To Withdraw | |
0xfceddff8814296a2925d748af6489f5279500bf99c8b7c66631011f3f53682fe 14893229 1654204721 2022-06-02 21:18:41 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005970254869 6.532055852 1833.26 Withdraw Funds | |
0x9b85d88ddbf8b1588f04f08579b743305e815dc415a92590edf4f759f8f7d902 14893444 1654207547 2022-06-02 22:05:47 0x554c5af96e9e3c05aec01ce18221d0dd25975ab4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008199236702 8.970784876 1833.26 Deposit | |
0xbd8b32fb048d1fcdbf202f9e68ab72ef07985ea0f2adedb50cfed57e61138f56 14893448 1654207599 2022-06-02 22:06:39 0x554c5af96e9e3c05aec01ce18221d0dd25975ab4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00347919639 3.806588771 1833.26 Increase Custody Allowance | |
0x9f84c3c1ad519f0baacaa27917903ff39d55791d0d4f896b0f6cd8287f529d7c 14894294 1654219171 2022-06-03 01:19:31 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003764503536 4.118743319 1773.59 Withdraw Funds | |
0x19263b50d028d60f9038991d932639a3e503f54138590041ef4c40aba2b30328 14894632 1654224017 2022-06-03 02:40:17 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006704479926 7.335371487 1773.59 Withdraw Funds | |
0xc5a6f8189d5ff3b48ccea450fde5b105481b5f0dca8bc40232519c63138cb3c7 14895931 1654242640 2022-06-03 07:50:40 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008766197104 9.591096252 1773.59 Claim | |
0xe9e51dbe2de37bd72e7e8fe9a4767aac0e87bf7da48ca0b5f79fc8deb68ebef4 14896490 1654250170 2022-06-03 09:56:10 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001502318546 1.643686721 1773.59 Intend To Withdraw | |
0x3216c69dba169fe54e9701f678c0603f781d86c2dee78fbb890eb743d1e2877f 14896492 1654250189 2022-06-03 09:56:29 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003881119233 4.246332553 1773.59 Withdraw Funds | |
0xeec07e075150d5cef70c339f452ec63ce912c1468456d877d535fc25aa60ff22 14896610 1654251695 2022-06-03 10:21:35 0x5a59938832e5a6cf505b1934cc7f32e29ee326d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002529111252 2.767100621 1773.59 Withdraw Funds | |
0x88e1967ad813796d29ce88fbffc7a38830594a2e601e1633e13999d4e7c79390 14897066 1654258575 2022-06-03 12:16:15 0xe46c821441771cf14f1d07602b27c64ca3341a12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01190458923 13.02481107 1773.59 Deposit | |
0x7b619f4cdfab845586d9ba95c9e0f39cf6dd2087c7c0a461f84c8fe9434fd935 14897069 1654258648 2022-06-03 12:17:28 0xe46c821441771cf14f1d07602b27c64ca3341a12 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005566949029 6.090798933 1773.59 Increase Custody Allowance | |
0x08ba7030bcd4d6cf50da579083767873707c2d1bf1f9488c480b3474886338b5 14897630 1654266651 2022-06-03 14:30:51 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003692683053 4.040164529 1773.59 Intend To Withdraw | |
0x5a44a79ee401bf2309de98fff57a121042ca724941c3a589f7641f31528a1ad4 14897770 1654268579 2022-06-03 15:02:59 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008306619714 9.088272629 1773.59 Withdraw Funds | |
0xbcc6e826d72de310fc83c46d040d76c1ac62f2bb4c171dea7abd62c4de389ac7 14897772 1654268622 2022-06-03 15:03:42 0xe00a56c6eedf324c91b88e5676c736cd5855e638 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01098010358 12.01333133 1773.59 Withdraw | |
0xa86dee79572d84c9f93f7122c3027d4b192bcd0c96533e4666237009024c875d 14897841 1654269514 2022-06-03 15:18:34 0xd1adb83cd6390c6bbd619fdd79fc37f9f58f1a4c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009503499422 10.39777872 1773.59 Deposit | |
0x02159b7331202233d5c68a369fc4b5c58f901238b698738de670b504443f4c15 14897845 1654269588 2022-06-03 15:19:48 0xd1adb83cd6390c6bbd619fdd79fc37f9f58f1a4c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004929383226 5.393238188 1773.59 Increase Custody Allowance | |
0x1ee028448d351722e9884c73f7f70b524b3c38ef3de7bb493593fe5bd9e8c9e2 14898151 1654274149 2022-06-03 16:35:49 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008617224648 9.428105487 1773.59 Deposit | |
0xf5e1e047a415d719cda23813532fbf9ec2ed4701dea71c3006f53afb87a5fae6 14898157 1654274200 2022-06-03 16:36:40 0xa0f75491720835b36edc92d06ddc468d201e9b73 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002204489208 2.411931643 1773.59 Increase Custody Allowance | |
0x98d07ede07f7d1bc1a1fca0b1d48cf4b8f7bf7a7bcca168dfc5616ce7af8cd1c 14900315 1654304081 2022-06-04 00:54:41 0x3c8319dd83fa18ec1a0df2acf65277a731514d67 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00281959663 3.084920672 1803.65 Withdraw Funds | |
0xc159a50c75419a486b02662dacdffb424c1eb30bdfc0d1288a98a26da77804eb 14900333 1654304386 2022-06-04 00:59:46 0xc6e4ad3ccdfc65687d2d60a454a8bddc1f4d6c06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001349497252 1.476484944 1803.65 Intend To Withdraw | |
0xb58e1df5081c23bb24bfe19ad1e4bc69c66045ee31cdd288336afc801e9bce03 14901257 1654316627 2022-06-04 04:23:47 0xff2eb6dee6f0d137fe95acde5e9e1126e9373537 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003219429754 3.522378094 1803.65 Withdraw Funds | |
0x414785ea8433114ed8fe3d823a10eebbaf43884f88a0e660fa96d6ed9fc578a3 14901265 1654316713 2022-06-04 04:25:13 0xff2eb6dee6f0d137fe95acde5e9e1126e9373537 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003960199485 4.332854256 1803.65 Withdraw | |
0x5e6f00c9ed70c18ed4bda1ebee4d681a4f7522eda36e52e79d83ab58c2696bf6 14901392 1654318229 2022-06-04 04:50:29 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00342179367 3.743784454 1803.65 Deposit | |
0xa9a4f37a61941f58f05279337e47aab5609669b5b7248df13adaf3ca101393b0 14901396 1654318251 2022-06-04 04:50:51 0x28aaae3f51529b31fe1360f1bd64e9c89254adcc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002037295773 2.229005305 1803.65 Increase Custody Allowance | |
0x57c7654647b9848a11f1091a87f5c104a08e2d401a12a4f2a44a4ded3ed7942b 14901636 1654322082 2022-06-04 05:54:42 0x3b82b31bbe0dc3fe0f13d17f9a4d0455ef562e06 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007471583263 8.174659249 1803.65 Withdraw | |
0xc5f887fb3bee7a0711991182d45df236adf85757f50f6f9f61129956e7dc61f0 14901947 1654326494 2022-06-04 07:08:14 0x651f673659ef05949e24820ae8fc5f2924e31a77 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003118822059 3.412303214 1803.65 Withdraw Funds | |
0xd9acf961dd3e6ddd831f725c8ffaa0903c8ca713411407dc82bf2b1b1d2d7961 14902093 1654328380 2022-06-04 07:39:40 0x651f673659ef05949e24820ae8fc5f2924e31a77 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002677151264 2.929071197 1803.65 Deposit | |
0xea07cf233af4173035f659a5ddd78a18314349589e284db4f537861ebae643ce 14902095 1654328423 2022-06-04 07:40:23 0x651f673659ef05949e24820ae8fc5f2924e31a77 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001181341049 1.292505241 1803.65 Increase Custody Allowance | |
0x858cf83c5a6ce618ac74dc888191fa98edc2bc4d93b43be732f7d0d0585a28fb 14902685 1654337397 2022-06-04 10:09:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007502658066 8.20865819 1803.65 Claim | |
0x6b00e16e3feab2de2b58b8ad81a1ddd813f0cdcc4fe3a464decd0f18e845c44c 14902693 1654337431 2022-06-04 10:10:31 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004579848242 5.010811962 1803.65 Claim | |
0x4edb7c6db79064dd58aa236edfb3d94c89cd21827fcf45d755bb0461d5f6f17e 14902699 1654337543 2022-06-04 10:12:23 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006037300914 6.60541093 1803.65 Claim | |
0x6727864c63bf0116705dd38a22a4d714ec301fc4af7d63e4fd5b16e44769bbea 14903344 1654347059 2022-06-04 12:50:59 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002847370313 3.11530786 1803.65 Withdraw Funds | |
0x5cc0d0ad70c60c013082afec5e68a40692aae6ff785aa39d85adb91b2ec8a12c 14903367 1654347338 2022-06-04 12:55:38 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002685028614 2.937689806 1803.65 Deposit | |
0x4d72ce585c311d0f0cc6f40469301fe1a316ce9b5263e5e4d49f174ff0693594 14903370 1654347398 2022-06-04 12:56:38 0x9b0c19000a8631c1f555bb365bde308384e4f2ff 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002076232722 2.271606221 1803.65 Increase Custody Allowance | |
0xbb21cbba514f482d31a61c223d13ba18e010c3f573151b0209fd6ba3061cf641 14903403 1654347959 2022-06-04 13:05:59 0x6914fc70fac4cab20a8922e900c4ba57feecf8e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.04481666515 49.03391334 1803.65 Withdraw | |
0x26720159ca9933847cc2dc49f3f5f2fa4d33ef5893515d9fa1e9425a7f2693fa 14903799 1654354055 2022-06-04 14:47:35 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005189207974 5.677512445 1803.65 Withdraw Funds | |
0x1cad0c3552bbf9104b5061bb4a5296473a57ebaee0beb72dcf85f8bde5bf0107 14903804 1654354106 2022-06-04 14:48:26 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002923245456 3.198322853 1803.65 Intend To Withdraw | |
0xfdf8ff219cde0ada07c8162a0d24beb7b93ae25a154a5b4eff7b87c586b2c9db 14904939 1654371221 2022-06-04 19:33:41 0x115d0d8822efc9607c52b04628098b48970b993b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006683507578 7.312425641 1803.65 Deposit | |
0x1bf050e5cba86de5a3bc4987b9b1026d662f1fbf756c32d22394a98b140cd436 14904942 1654371250 2022-06-04 19:34:10 0x115d0d8822efc9607c52b04628098b48970b993b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002154212553 2.356923955 1803.65 Increase Custody Allowance | |
0xb7db54476bdb4879537c7eadbd2d12cc6e4c4d0e976f1ea9ac90231b068593ef 14905319 1654377139 2022-06-04 21:12:19 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009566105543 10.46627607 1803.65 Withdraw | |
0xf458e8f321fc1777abc252237e7b8c3d6a21938175763d87307340c83b9488fb 14905323 1654377257 2022-06-04 21:14:17 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005235682193 5.728359888 1803.65 Increase Custody Allowance | |
0x2637e1bc36e883d769b705c25bc19f09477559be16d09efc5f6c99381a2a771f 14905596 1654381448 2022-06-04 22:24:08 0xbe102d2698b089e6e2a18c66281ecf29cf35d58e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001783897408 1.951762154 1803.65 Intend To Withdraw | |
0xe504371997af3ace8fef0887b1e2607ca11e00de1cc075a093ddc3811ef29c14 14905604 1654381605 2022-06-04 22:26:45 0xbe102d2698b089e6e2a18c66281ecf29cf35d58e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004884119534 5.343715182 1803.65 Withdraw Funds | |
0x7a3fb91de39b87014e8040013d4eb0d81ae6fa35aedc8837c5199271554bf76b 14905638 1654382188 2022-06-04 22:36:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.07090186437 77.5737298 1803.65 Fund Loan | |
0xe000d7d5de232c34d54a85c9028d93c20222f983554aac760c0964dda82de31f 14906307 1654391916 2022-06-05 01:18:36 0x9a6f0de94cf51e9ffde08977f5340764131e46c6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003202481766 3.5038353 1804.7 Withdraw Funds | |
0x4ca8168a56127151f3a021436ae0ab7e9e7a05d4fa6815a5ff91926c460a2a70 14907235 1654405858 2022-06-05 05:10:58 0x061e130573532f9a84d83e5276ebd8d0fed00cfe 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001857638224 2.032441981 1804.7 Withdraw Funds | |
0x6ae6186fe2a80ade4e7c49c42dfed1947f1472254f466f5ff252528ad36289d7 14907522 1654409669 2022-06-05 06:14:29 0xb2e083b127986a9342a6918e1d7a8c0053e828a4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001365399694 1.493883806 1804.7 Intend To Withdraw | |
0x60246e53024967add0fbd6b65adf7c682872fe7db2ff4a2924eb75a5376ef5c4 14907754 1654413208 2022-06-05 07:13:28 0xb2e083b127986a9342a6918e1d7a8c0053e828a4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002166678128 2.370562539 1804.7 Withdraw Funds | |
0xd37982b5c71bd423c74d64af2eda8fd589fe3e82a51ef8f96ebc89692e73deda 14907759 1654413251 2022-06-05 07:14:11 0x62a08f0535f01623890613f6acbedf19591a9ec3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002117833918 2.317122089 1804.7 Withdraw Funds | |
0x896d3a2e92fdc642c57a9b663d570d5dad128e9d3fe668d81a2454aa20065a31 14908444 1654422343 2022-06-05 09:45:43 0x0c8ee7dbf8cb1d980c107d3df6357deac7dbe9ef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002691205483 2.944447919 1804.7 Deposit | |
0x4e33bb2d61e02a647b74fa13ad04a50f8618a52816fc6716a52b78df03a94645 14908534 1654423996 2022-06-05 10:13:16 0x70978f453c9ac86817bb4ae2fe3fb985f3aa5c0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003738308976 4.090083851 1804.7 Withdraw Funds | |
0x230e7dd50c41c422429cc8e8acb79f15f84fe1525d252a6355f41d58be563c19 14908539 1654424042 2022-06-05 10:14:02 0x70978f453c9ac86817bb4ae2fe3fb985f3aa5c0a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001571589825 1.719476427 1804.7 Intend To Withdraw | |
0x3f0ec1f05cc1fc1a7931fc1162814c6ab666f3bd944dc57ccf8da68691e99f74 14908551 1654424147 2022-06-05 10:15:47 0x0c8ee7dbf8cb1d980c107d3df6357deac7dbe9ef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001104876397 1.208845266 1804.7 Increase Custody Allowance | |
0x116fb7a4ad8596e135e9d9f5844d10eba1f45f1386fa1f09035cc83eaf3bab14 14909576 1654438643 2022-06-05 14:17:23 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001981147128 2.167573073 1804.7 Intend To Withdraw | |
0x5c8dfb77154bc0f703d79ed8b98832cf630720cc95f123de11aee8625467ffa1 14910378 1654450967 2022-06-05 17:42:47 0x54d020c2fe9d0c9d9b562fa1ffdbc6fa8a0bab93 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02209179256 24.17063024 1804.7 Withdraw | |
0x728947aea3475ddc467c72ffb14c0235df443e0fb3b59f92da0093f9113286cf 14912427 1654481253 2022-06-06 02:07:33 0xab601f86b3ecef94d0f43ea71b0d7b39a13e22d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005117677798 5.599251279 1858.56 Withdraw Funds | |
0xabb0cf13da8b4908bbd92e86eeec4769f2a6b291653cd249475d4f5a99f470f5 14912511 1654482472 2022-06-06 02:27:52 0xa8f49d90b24d6a007e5f47bf86d122a9f3211734 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007428320214 8.127325146 1858.56 Withdraw Funds | |
0x4e0d017dc5bf6d5d12b9b60f34666cc59feb1380d513bab01d97f7bd9e74b534 14912743 1654486277 2022-06-06 03:31:17 0x0f2fd86478f0de48a399dceed6dd5162ed385c9b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004135941703 4.525133817 1858.56 Withdraw Funds | |
0x8e027a6faf0ce63b50e91c4db2d08d6f1d9969951d8d965e5e5ea37414d839dd 14914032 1654505152 2022-06-06 08:45:52 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003573107522 3.90933694 1858.56 Withdraw Funds | |
0x154c8be24985f3d979ed03ebedb1fc91980a21b51b90618dd928d480c594f78d 14914061 1654505687 2022-06-06 08:54:47 0xad9ee9cb7bb3f06cb8f6d3106bb5d798b61477ed 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004180858184 4.57427694 1858.56 Withdraw Funds | |
0xa12a5ef092958ad7dd90d223c3a3612474deeb8d088fc3563dd78f7d61b3c321 14914081 1654506006 2022-06-06 09:00:06 0xb4522eb2ca49963de9c3dc69023cbe6d53489c98 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006603575563 7.224972023 1858.56 Withdraw | |
0x9bc2dca3ff5cfec2e1aaa05e40ddd4845e25a939f2a7aa16a4dce7a369aa8bf1 14914130 1654506711 2022-06-06 09:11:51 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003032576 3.317941402 1858.56 Withdraw Funds | |
0x16bb58317c745cfc8868a3d9447738194a78a039baab7fa5d8d0b215c5366015 14914228 1654508173 2022-06-06 09:36:13 0x8129c94d2f2b18fa4b63bd0a3b64ede4823374ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005366172768 5.871129626 1858.56 Deposit | |
0x26eb1d6b3653d35dfa46e089f3c0bb7fcab872a2c67706559a8fd831e51de6e1 14914259 1654508558 2022-06-06 09:42:38 0x8129c94d2f2b18fa4b63bd0a3b64ede4823374ae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002004296347 2.192900633 1858.56 Increase Custody Allowance | |
0x525e289397ed40f449a5d7d05b34cc6e7621e414687d86e1ffd0cc7dc071ceb9 14915244 1654522568 2022-06-06 13:36:08 0x537c1c6ba209292f5037fc243e3b45d92ccadde4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00256804505 2.809698089 1858.56 Intend To Withdraw | |
0x2200d1e516160235f71bb54c2bee5fc3c0bb8a2415221b9d6db6dbdc3df89fd5 14915803 1654531285 2022-06-06 16:01:25 0x9b80a5c4394cc9f2d13e7ad4983d6b26ab822ec1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007267675836 7.951564132 1858.56 Deposit | |
0xb8c225894c4fe8181c6d08cd50e5630c7b17ca50489af5d9322502219e2fd15c 14915853 1654532024 2022-06-06 16:13:44 0x9b80a5c4394cc9f2d13e7ad4983d6b26ab822ec1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002348517603 2.569513109 1858.56 Increase Custody Allowance | |
0x3e375eb90bb3f2005c8a07adc5b408fa244ec7a2a32550344d20a7cc051450f3 14916957 1654548065 2022-06-06 20:41:05 0x64e57c6de1a17013f39b6fe271f79ff3df79b19b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008743640618 9.5664172 1858.56 Deposit | |
0x4546c33cf767516e7e558de45fe1317ca0a3f33bfdae97c96536511e5cf2ff59 14916961 1654548129 2022-06-06 20:42:09 0x64e57c6de1a17013f39b6fe271f79ff3df79b19b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004782494402 5.232527126 1858.56 Increase Custody Allowance | |
0xf7014a14e8e215f8f0dbf3a2301b76584d74d99d600d65b4111ebb10489ae7b7 14917644 1654558554 2022-06-06 23:35:54 0x41e7d45610417b1909b6f71d0993cf7b5728e0e7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005968867881 6.530538349 1858.56 Withdraw | |
0x9b95ca917806e56536b222e00d8868b9953bcca4c9ffa5fc68ed71d69b44679f 14918726 1654574263 2022-06-07 03:57:43 0x36542d8c30e1fe067fb803be8855cf9f35ea54c2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001466638102 1.604648747 1812.7 Intend To Withdraw | |
0x13f125673132c8ad44c716492a9da87d4a7d20da50ae365495e0f708bbb8c1ba 14918823 1654575637 2022-06-07 04:20:37 0xb4d1340303d89ccc48a19cdbdb5723aeceda933d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003242784033 3.547930011 1812.7 Withdraw Funds | |
0xaebf7ca6770dd71b7a12ffe5341292c9c943f527deda6ada43dbc203618e8193 14918831 1654575742 2022-06-07 04:22:22 0x6226f686e215b3810ec402b1401bc43fa602193b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004021778423 4.400227773 1812.7 Withdraw Funds | |
0x66d02cf0e5cf8d9a06dff2a65575ba36ef0fceedf794334d7ebf51e05b3a7e68 14919208 1654581601 2022-06-07 06:00:01 0xe54554b38db81380243bb5c705fde2a24018c8a9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006117798454 6.693483288 1812.7 Deposit | |
0xb4aa249b5d51d368503fc222b7c5c6a54526ea747fa4d3b56d79a996b678d8ff 14919211 1654581675 2022-06-07 06:01:15 0xe54554b38db81380243bb5c705fde2a24018c8a9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003080979053 3.370899182 1812.7 Increase Custody Allowance | |
0xb8227a076bcb6e999c2ee79ea0340bb257f340e9f41ae3c89d7f88cd1b7f0fd4 14919310 1654583068 2022-06-07 06:24:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01570953437 17.18780156 1812.7 Fund Loan | |
0x8ecc39e17cbf9b9ef38101541dd931b0b5fef4271cc1b0e58929084036b70a6a 14919332 1654583291 2022-06-07 06:28:11 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0050327886 5.506374007 1812.7 Claim | |
0x8063255954c41b62c4c7bf94a6d2e1e4a9c22ba9087dfd7b74918eb17147595d 14919335 1654583368 2022-06-07 06:29:28 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005483349477 5.999332663 1812.7 Claim | |
0xbb4404540de937772d843fc80a75e2f3b17d3981b35d995e6fbdc2d863548be1 14919347 1654583618 2022-06-07 06:33:38 0xcfc7e5c3f931080e1f865f117dad0e2dfb504e99 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002126523259 2.326629098 1812.7 Intend To Withdraw | |
0xe3f5afd26869f83d789df8b5e1cd206c36865eb8d89af849c4093ae7496a0116 14920098 1654594265 2022-06-07 09:31:05 0x5fa5d55f11ba187d4c318b21a2c1b67714b5a9e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003770166367 4.124939022 1812.7 Withdraw Funds | |
0xc169c6490173819cacb5498377492ddeef57ec4c0d641ce8e1a614b82281c2f2 14921499 1654614182 2022-06-07 15:03:02 0x5a154e4408be554216a709e2c1637ef5ca141dd8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007840420011 8.578203534 1812.7 Deposit | |
0xc7777bb66429df01703c1998630251ec36d6b5ce19648db99c477e5e0a81091c 14921528 1654614579 2022-06-07 15:09:39 0x5a154e4408be554216a709e2c1637ef5ca141dd8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003400362001 3.720336065 1812.7 Increase Custody Allowance | |
0x640474dea810acf0fe482cbcb4a80fdb9b3c05126c5c2c0596d80c440626077e 14921573 1654615193 2022-06-07 15:19:53 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005458134633 5.971745102 1812.7 Deposit | |
0x8a413c17f8527e63233bca7282e543b8ac47ad48a7a5658cd2393fb051384862 14921577 1654615274 2022-06-07 15:21:14 0xcde0c4e5c2c3a85bc822538348ff96ae28be5bf8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004743303814 5.189648702 1812.7 Increase Custody Allowance | |
0xe09534a4f7b6f8e811d52fe64662b8c266e7b3aa0a19d9b431f14ac971815c32 14921729 1654617397 2022-06-07 15:56:37 0x4e5b56e8b3f770f7feb40ec60504b89b025a937a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008118214929 8.882138954 1812.7 Deposit | |
0xd12726ff91cbfe2c3a13480f9125234a0a52852975005c7a9193c45d36032bf7 14921733 1654617460 2022-06-07 15:57:40 0x4e5b56e8b3f770f7feb40ec60504b89b025a937a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004015480544 4.393337263 1812.7 Increase Custody Allowance | |
0xcca574887ebc68d4a9f27ac36925dc3b6ede7384e09c1f9f25c47dca20ccadcc 14923596 1654645196 2022-06-07 23:39:56 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006058079706 6.628145006 1812.7 Withdraw Funds | |
0xde35d6afbcfea78c2c18b813e1d1175db366d71638b32c284464ba3db57f1430 14924064 1654652335 2022-06-08 01:38:55 0x82886ad5e67d5142d44ed1449c2e41b988bfc0ab 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005495640207 6.012779951 1791.03 Increase Custody Allowance | |
0xda9e7cd636924eedd9f1406d0b57fd2e098311eaf99ad15852893d1f275335bc 14925194 1654669391 2022-06-08 06:23:11 0x14435bb061475ff6da3f378bdd81b243ff5fcb15 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00262357288 2.870451088 1791.03 Intend To Withdraw | |
0x4fc91f9e06e6c014626d8c26c62bac34dd2b25cd7fa1f3da124ef93e0d45f79c 14925626 1654675404 2022-06-08 08:03:24 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005737308431 6.277189154 1791.03 Withdraw Funds | |
0xfad0ce854fa21fec501961b1087a6ef26683fd87b256e57251b5584209b42c58 14925631 1654675449 2022-06-08 08:04:09 0xacdb71aafea5a519abf6c415137213ea3f094fe7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006291922544 6.883992456 1791.03 Withdraw | |
0x209f1b2d1577454b97d91d7b5cfa7bc3270436883458a746063ac71647acd29b 14925741 1654677233 2022-06-08 08:33:53 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005592180128 6.118404278 1791.03 Withdraw Funds | |
0x53cad77f53bd3e3ec76e06e60c0c8f089a56633cdc4c6aacbf88aacf2674b37c 14925924 1654679934 2022-06-08 09:18:54 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009653167436 10.56153049 1791.03 Claim | |
0xa1f2c67b4b10736657887cf7e27755a6cdddabe54c2a9f216fbd74806ff8d77a 14925926 1654679955 2022-06-08 09:19:15 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01442998699 15.78784876 1791.03 Claim | |
0x3ad6fe22620a7877ac8dfa903c6cbb8a2f502dbe1b5fd83f0efa67d10a100e01 14926079 1654682280 2022-06-08 09:58:00 0xf9a8da5432f2f4053f131f70cf63cecd08f142ab 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.008491299097 9.290330342 1791.03 Deposit | |
0x354f5640631f75a3627b85457093505f996d93a3aa392efd16d83fbe80b0291a 14926082 1654682334 2022-06-08 09:58:54 0xf9a8da5432f2f4053f131f70cf63cecd08f142ab 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003825504256 4.185484206 1791.03 Increase Custody Allowance | |
0x1d46888844067cfab15bfe6b9d426b75d3cccf6ac662107474069af4d36b6d9d 14926289 1654685455 2022-06-08 10:50:55 0xea93c16b2ed1cd73e6f9d5b5a92c36e504e8dc72 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007194311634 7.871296359 1791.03 Deposit | |
0x1b9997659e4925256d43377ca6a7c18b93b77245ab51374dc60deb5e1e1c41b5 14926293 1654685520 2022-06-08 10:52:00 0xea93c16b2ed1cd73e6f9d5b5a92c36e504e8dc72 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003589207962 3.926952431 1791.03 Increase Custody Allowance | |
0x5d8e29a3ab19ba8acefc276cd12fb5d5544cdb4471039bce544089cb5042fa85 14927879 1654708197 2022-06-08 17:09:57 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007428801407 8.127851619 1791.03 Withdraw Funds | |
0x49f5afe69637d71c266a4c9adfaa26e07d27afc454397cd3158ca88be0d29aa9 14928360 1654715309 2022-06-08 19:08:29 0x554f11f7f47c210513900367063eaebc3a4d853e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003592971636 3.931070267 1791.03 Intend To Withdraw | |
0xb359af8bd0112e2a9bd3a7d8aca403a4acf4d0a02cb74ca55a7913c72fc0358d 14930959 1654753593 2022-06-09 05:46:33 0xc3be098f9594e57a3e71f485a53d990fe3961fe5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005655324424 6.187490452 1787.71 Deposit | |
0x971a913935bb9505571e58465c85f43390e13b7d8a347a30957ddd74ef0fa7c8 14930964 1654753646 2022-06-09 05:47:26 0xc3be098f9594e57a3e71f485a53d990fe3961fe5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001698526775 1.858358144 1787.71 Increase Custody Allowance | |
0x9aa075ecf3656514b6803448d5f80ffffb00ecc78ec5a712772a7f371dcde826 14931141 1654756465 2022-06-09 06:34:25 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004194822789 4.589555613 1787.71 Withdraw Funds | |
0x1eea3b0c183e737a0d005eb2afc4bc1544b679f0da4c6a59ccbd89e05bd742ea 14931367 1654759775 2022-06-09 07:29:35 0x6dfc18c0881af552bbb8b33e957829328285b88a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005880173231 6.433497532 1787.71 Deposit | |
0xf5fd385997db940032e2d559d1e20d673298e959c09ee1035ad232a05810a365 14931370 1654759851 2022-06-09 07:30:51 0x6dfc18c0881af552bbb8b33e957829328285b88a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003335091512 3.648923624 1787.71 Increase Custody Allowance | |
0x4c63a0a8ccebcb9add02ba91a46136acb2c5347a02009b2f09a55adae446e6e5 14931933 1654768083 2022-06-09 09:48:03 0xbfb496acb99299e9ece84b3fd1b3fdd0f6cddf49 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00144564371 1.581678783 1787.71 Intend To Withdraw | |
0x77417d76af94454140301bf6039cc654b91570422723acb86f6f30fca40b7689 14931951 1654768311 2022-06-09 09:51:51 0x7a75789832c4fc67edea0dc8aee186af4d1248b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00291645756 3.190896217 1787.71 Withdraw Funds | |
0x6dede3468b924b445ff4782add3508aa2f9a1ade514b3d3191dde77fdfbc76a8 14932007 1654768964 2022-06-09 10:02:44 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005468070765 5.982616224 1787.71 Claim | |
0xd58453848ff198a4fbb6174154ba0f99ce57dba1518252dc46bfe8be39c33bad 14932013 1654769021 2022-06-09 10:03:41 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005707985039 6.245106431 1787.71 Claim | |
0xa4a48801248c666f4730b60c0caebffd81e09ec3f764aea91a5f8752435f68b9 14932079 1654769920 2022-06-09 10:18:40 0x0521ca372321b20b7a59abac4d71a4e3112806ad 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005528135887 6.048333474 1787.71 Deposit | |
0x9b5140c8c0cf44044e4b7939f61142962cb412b6116ee98f83c430d21f00b586 14932086 1654770060 2022-06-09 10:21:00 0x0521ca372321b20b7a59abac4d71a4e3112806ad 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002935356622 3.21157368 1787.71 Increase Custody Allowance | |
0x01cd1298fe494ecc05a58933e99bc644d9c6372c835db5d5bc5bb2dca8667759 14932158 1654771351 2022-06-09 10:42:31 0x7a75789832c4fc67edea0dc8aee186af4d1248b3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001322614835 1.447072891 1787.71 Intend To Withdraw | |
0x4cf203fade125c049c97fe7fd3db9cd3d18a27e176c5d9fad26de097e56e0ed5 14932631 1654778194 2022-06-09 12:36:34 0xe58aa11a1ad425b12b4a3155124245cd36da4f5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007426454809 8.125284207 1787.71 Deposit | |
0x3dfa160c42ed87b5f714bd5a4015dd6dc022751849eb1818d64c892cd55371cd 14932639 1654778387 2022-06-09 12:39:47 0xe58aa11a1ad425b12b4a3155124245cd36da4f5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004096021255 4.481456855 1787.71 Increase Custody Allowance | |
0x3d0ae644c4c93e33c8217d5f8499211095d832a033e8217ec0fc024d174a04c6 14932718 1654779626 2022-06-09 13:00:26 0x8f40dcd6ba523561a8a497001896330965520fa4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005333480298 5.835360794 1787.71 Withdraw | |
0x199be9d6a5440c01cd9bc7a49d59da44f8a1df132789ed47b5f59239ad73b0fd 14933039 1654784020 2022-06-09 14:13:40 0x0f2fd86478f0de48a399dceed6dd5162ed385c9b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004415081177 4.830540316 1787.71 Withdraw Funds | |
0xc75ab40480fecb11b2171a94bc9f8bde294fce3ea2ca1815d1c884cbad3e17fa 14936976 1654842591 2022-06-10 06:29:51 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004514705019 4.939538761 1661.1 Withdraw Funds | |
0x667f40229adff1f5882457a20eefd1a35fbf231e286adf20347f9580d8a193c3 14937048 1654843782 2022-06-10 06:49:42 0xa583f99495077952103235ad50606246d69e829f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002173707332 2.378253192 1661.1 Intend To Withdraw | |
0xff8d195f9a3dccf5058eacc4cd1d86b99fd87761d4c629b88c0508e93cb663c5 14937226 1654846455 2022-06-10 07:34:15 0x2e66420dba7890dfa163d36e99a3e8bf5668c791 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004849053996 5.305349977 1661.1 Withdraw Funds | |
0x02344fdb58bd08422ae4e8003f95aa5428932e87c66c7f67a2ccc0d2a7d38853 14937607 1654852311 2022-06-10 09:11:51 0x76bfdb851cda72ffcd86c7544ac649c84402764e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001961623203 2.146211946 1661.1 Intend To Withdraw | |
0x02b03a5165115ac6c2747411bd7368385545ecc73b0c0321f15689e72a499ed1 14937675 1654853297 2022-06-10 09:28:17 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003744852607 4.097243237 1661.1 Withdraw Funds | |
0xfb09102f3358e2c9324adf88b4132993b5b8beac674fc884ddd5192cbf538f5b 14938237 1654861466 2022-06-10 11:44:26 0x4e83362442b8d1bec281594cea3050c8eb01311c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005550871422 6.073208423 1661.1 Withdraw | |
0x54b620c49382568108bad9e5afe706da743ae7d65ff73dc19a8563a61aae79a7 14938313 1654862571 2022-06-10 12:02:51 0x929ad05bea8b88aa303fe68aee4fb8d3b74d60fa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002231210128 2.441167001 1661.1 Intend To Withdraw | |
0x8652131ad868040fe88d71a32854451b05403d2a9877940f7b01e87cc1f64f91 14938662 1654867624 2022-06-10 13:27:04 0x6f0970a341733718b181aae1febae09c73f68e3d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003618780297 3.959307522 1661.1 Intend To Withdraw | |
0xc0e0355fb45694eff817b04923282abfeedd44521aa09a46e4846666adb0ec09 14940134 1654888791 2022-06-10 19:19:51 0x73e3766c7e445ddeb11787d61e8000a0c52fb739 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006203582202 6.787339287 1661.1 Deposit | |
0x9def0b0bf90cc682a04c587e2d93ef9b524119facf455af1d7d7c99efbc2d9f7 14940140 1654888865 2022-06-10 19:21:05 0x73e3766c7e445ddeb11787d61e8000a0c52fb739 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002690891118 2.944103972 1661.1 Increase Custody Allowance | |
0x8459b489f8e8153c9af7dbb573444834ac1b8c7ddd5a7ee4c17490a59496cc55 14941542 1654909958 2022-06-11 01:12:38 0x1527dfc52df14067a7c5335fd848773a7e1f611a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002171152657 2.375458122 1530.28 Intend To Withdraw | |
0x285f91d886690439f47983ec66caf0831db13464e545500eb929589fe68b30a5 14941544 1654910048 2022-06-11 01:14:08 0x1527dfc52df14067a7c5335fd848773a7e1f611a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00699727507 7.655718654 1530.28 Withdraw Funds | |
0x38c5381010577525da5d7fc2b23eefb38039e7d1b9d503d5d542bda070c34bff 14941674 1654912023 2022-06-11 01:47:03 0xfbe4e7121b417b6b9bca1e97229d2ed3b09d4735 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001715171018 1.87656861 1530.28 Intend To Withdraw | |
0x764cd88d9e49222d1fccf0465d7c8fc52546af4536233c769427aa860bd763ec 14941681 1654912212 2022-06-11 01:50:12 0x2222222229b89c7844f19ef503c4dc503be47f84 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007077496202 7.743488594 1530.28 Deposit | |
0xc9f61d2dd46ae677e4a2c1442ccf6f1faec85189aba705bd72c61d1331bdd37b 14941687 1654912378 2022-06-11 01:52:58 0x2222222229b89c7844f19ef503c4dc503be47f84 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003254833484 3.561113314 1530.28 Increase Custody Allowance | |
0xc713d016a559b924e66d5ff57b91884d4a93055e8fbb3d9af5c9805d8395a639 14941895 1654915564 2022-06-11 02:46:04 0x9337cd9bab74c2cea1529ebd63d5a3ba6dd51da4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003178086268 3.477144186 1530.28 Withdraw Funds | |
0x853f8efee656ac0d753f249637651c38c56aaf62eb53fcf076bfbf0db828a159 14942018 1654917370 2022-06-11 03:16:10 0x9337cd9bab74c2cea1529ebd63d5a3ba6dd51da4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001438920178 1.574322566 1530.28 Intend To Withdraw | |
0xccb35cab6dc09944f8a518ce37fc7c40323c209d83acd6df883b64d32ff366ae 14942333 1654921882 2022-06-11 04:31:22 0x5fa5d55f11ba187d4c318b21a2c1b67714b5a9e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003368231794 3.685182406 1530.28 Deposit | |
0x71579023c68d0bb36652eb854e8bf1faad938592ab933fe861ce51a8a7d920d4 14942346 1654921976 2022-06-11 04:32:56 0x5fa5d55f11ba187d4c318b21a2c1b67714b5a9e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0008879757782 0.9715342989 1530.28 Increase Custody Allowance | |
0x433aa16c6982db2f36b393eb094f7a29ff3043fd51548bbd68d94c3fa3fb4887 14943242 1654935566 2022-06-11 08:19:26 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0023181809 2.536321722 1530.28 Withdraw Funds | |
0x66eae53ff55b48c1e0b407fd368014f3308239c4f62aa87c2c7c7984fd5a6f21 14943259 1654935758 2022-06-11 08:22:38 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00199176688 2.179192144 1530.28 Withdraw Funds | |
0x9b7c86c483926b2d68234a8acaedc67fe602c23dc2b104dabe66b6e552ba4bc8 14944182 1654949499 2022-06-11 12:11:39 0x6fbc7865c0a1ee4752ec0d1e563c2cab61c98f5a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004735640322 5.181264077 1530.28 Deposit | |
0xbddb116e8f0ecc8d51ab915676444fa47c4c2c1d4524f196c51bfb95f59349b8 14944191 1654949753 2022-06-11 12:15:53 0x6fbc7865c0a1ee4752ec0d1e563c2cab61c98f5a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00195614544 2.140218726 1530.28 Increase Custody Allowance | |
0xa8475001f7c4ae17a35952e214b7b99ddf255bea90f67679ad80c47bc4b9de18 14945078 1654962137 2022-06-11 15:42:17 0x970a006c4d782b4ccdec13e04473271d2c42c078 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01358723201 14.86579054 1530.28 Withdraw | |
0xb18aa22639c3b24665cdc89e0cbafe71661f8e1960f844c65a920525cd20c367 14945214 1654964199 2022-06-11 16:16:39 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005102641082 5.582799607 1530.28 Withdraw Funds | |
0x6fb80e40df66ccf88eee8e50e5481b30895ca0b4f3945e05595f8c738c73665f 14946173 1654978323 2022-06-11 20:12:03 0x638c1ee06500ca91255fa26e34b98dff97bbe96f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001086401472 1.18863185 1530.28 Intend To Withdraw | |
0xf017e696b064f99f6ade7d9a8ee79d58264c46a947810dad17915e44754632f1 14946179 1654978389 2022-06-11 20:13:09 0xf9db64e6fdee3770e6181c345a4acf51b8607577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003571513373 3.907592781 1530.28 Deposit | |
0x50529f30cb4f5f104cb21452a802b12db30be1322313abc91c39989e73e461b2 14946187 1654978482 2022-06-11 20:14:42 0xf9db64e6fdee3770e6181c345a4acf51b8607577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001714529638 1.875866877 1530.28 Increase Custody Allowance | |
0x85b98ec384e53361f29e15983226db9fc2f2b12734d3eae29d9993217231d486 14946607 1654984079 2022-06-11 21:47:59 0xc95adae711dfd7c741db02d6645d24aa91cec563 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002801168011 3.064757921 1530.28 Withdraw Funds | |
0x8a549a44c3791abb28ec92e1139852046742d72ef57e4fb57a2c2409ebfc9281 14946735 1654986215 2022-06-11 22:23:35 0x1f02f8f9c2d0430d9f0475bc7ebfbbcc6c84dd75 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003150987419 3.447495335 1530.28 Withdraw Funds | |
0x92d59c7e45cb9f6037d2a27d07c6f6c31ed09df66d4d65dfe4d9c9fce60d9d83 14946992 1654989959 2022-06-11 23:25:59 0x9b3611abceb1550b7ff2ebd46cf6ae4319130014 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001643033426 1.797642871 1530.28 Intend To Withdraw | |
0xdd4a9f05e2c6ebdf093b66ede663cc1e25e5d36cf04b0e6dc494c29751c3736d 14947523 1654998263 2022-06-12 01:44:23 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0027855132 3.047629992 1434.02 Withdraw Funds | |
0x624f6bc24bd6b5759d55a673688f6776c2bc5cd18e62d05f0ecd0d70eca40a6f 14948376 1655010647 2022-06-12 05:10:47 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003887581702 4.25340314 1434.02 Withdraw Funds | |
0x9af479723720885d5d00c738389349803c96fccff66063f17534123386b26b28 14948380 1655010697 2022-06-12 05:11:37 0xe649edcb64ea6512a95b150da18bfd20c84bc549 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001800335218 1.969746762 1434.02 Intend To Withdraw | |
0xec15704846ead04935b9c64087511a9c98d8b3a089a077b9e6dae433cb75ef9a 14948439 1655011378 2022-06-12 05:22:58 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0038938378 4.260247937 1434.02 Deposit | |
0xeee682ea3933d5b392a1d4d7e5be50ebf90e2bf03bf8d723b216e4c19caafbf7 14948467 1655011752 2022-06-12 05:29:12 0x42dd9b2eca8a6d7bf44e8568c2eccc588b3eee2c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0011728378 1.283201837 1434.02 Increase Custody Allowance | |
0xfe880b0a74993b1d4e2cff743f576d35af6ac4b5ad42006b27de5013cd3ead65 14949015 1655020181 2022-06-12 07:49:41 0xd57e00bd3433040522eefce8f103f9a500b67ea1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004237565061 4.636319933 1434.02 Withdraw Funds | |
0x52e4e5dc911750f9580f55d0c3a3765b87774f8c0e0165300af617f8d0b24915 14949022 1655020265 2022-06-12 07:51:05 0xd57e00bd3433040522eefce8f103f9a500b67ea1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003751308011 4.104306095 1434.02 Withdraw | |
0xffa9bae27bc372b56a0bca10719cdbf0ecc73fdccbd7378a8e09420c6392ff49 14949115 1655021651 2022-06-12 08:14:11 0xb3a9b31e0e678a9db4483bb19ce8298717cbd37f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001106349654 1.210457157 1434.02 Intend To Withdraw | |
0x156c3066f98581b4c90dc813568d45a16454a7cb95ad4dd4ffb8de60f5d97d3a 14949227 1655023252 2022-06-12 08:40:52 0x47c3006af872af4022895c8720224f786bad397c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003598964916 3.937627515 1434.02 Withdraw | |
0x0374fe1160db51f1c4c9cf7bd118b987f3744a3b67c1f78646545ca71f6d5104 14949950 1655034169 2022-06-12 11:42:49 0xfeba6502ea8c7fb27abf4d83e51715d3bd434ec0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003378500393 3.69641728 1434.02 Deposit | |
0xe45d839c829c03a233263e23d1b06a60619c4f3b7e4ef46c5d09fd2f845cf6ff 14950014 1655035403 2022-06-12 12:03:23 0xfeba6502ea8c7fb27abf4d83e51715d3bd434ec0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001933339851 2.115267131 1434.02 Increase Custody Allowance | |
0x67ae66db32c64ad825a3f64612860f7c3eb5b804e34487b036e40d6a915d22f4 14950036 1655035718 2022-06-12 12:08:38 0x7e8fd7233e3f6074789a1af3125077b2f09563ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003192586557 3.493008952 1434.02 Deposit | |
0xff09e403f81e643c52ac2782c76aa9ded38445df3ded9d4d7d260189b0e8ebf8 14950039 1655035777 2022-06-12 12:09:37 0x7e8fd7233e3f6074789a1af3125077b2f09563ce 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001460871051 1.598339017 1434.02 Increase Custody Allowance | |
0xef163cd7f17fc8b701336034a0f96ad709d24018f943dcd32ffe3506b04a381d 14950381 1655040408 2022-06-12 13:26:48 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00188589675 2.063359634 1434.02 Withdraw Funds | |
0x77bd85e6b16b1c32493c113c8848430dd8a61a137151bb448ff73454df74942d 14951031 1655049651 2022-06-12 16:00:51 0x9953f61941cf781e31d76788a949e1d7fca046aa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00188768 2.065310688 1434.02 Intend To Withdraw | |
0xf2fc1ac7274970cece256d19c059f0eac45b17a6b67a1aa2400547db2bfb59a9 14952045 1655064630 2022-06-12 20:10:30 0x1debd6c16b92c1d5c93237d9d65dbc5e5eb3e02f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001814699156 1.985462347 1434.02 Intend To Withdraw | |
0xba5751adc5f9c4e0e19f05d399d9665d8f48f81e3326c8403caee6e6ec3246d7 14952276 1655068102 2022-06-12 21:08:22 0x5b1d911e4405c252dc3fe62131b458321d6dce4a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00243542707 2.664600757 1434.02 Withdraw Funds | |
0x72466695c74dbfc9aa38960e4055c95480e0f28fe4d14151b6549df75c952335 14952293 1655068284 2022-06-12 21:11:24 0x5b1d911e4405c252dc3fe62131b458321d6dce4a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002739073309 2.996820108 1434.02 Deposit | |
0x000a5c4d3b1248d490648ad0f8300ecce1114cd7bbf43d8b706285a750d2b97e 14952301 1655068370 2022-06-12 21:12:50 0x5b1d911e4405c252dc3fe62131b458321d6dce4a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00125114732 1.368880282 1434.02 Increase Custody Allowance | |
0x1efdb89f92f9337e408b58dc211d124412e2af812d9671841a884405233a1923 14952311 1655068492 2022-06-12 21:14:52 0x3c8319dd83fa18ec1a0df2acf65277a731514d67 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001189559468 1.301497014 1434.02 Intend To Withdraw | |
0xe362a9fbed41f1657a9dc6408dd7d00610cbf8d0032734a86e0126e56aee1fc4 14952739 1655075113 2022-06-12 23:05:13 0x3af015f6e3ac79d217198f00ef36af099d223e29 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003534541052 3.867141365 1434.02 Withdraw Funds | |
0x2b0e3c89dd48379c9fb3b159454686475003f200a6c8e01e160ea2281b28b458 14953230 1655082343 2022-06-13 01:05:43 0x554f11f7f47c210513900367063eaebc3a4d853e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007862368411 8.602217279 1209.12 Withdraw Funds | |
0x59d3f607d15ce7ba25622c1d897d0284cbc951a34552f8726651c72895719b6a 14953511 1655086424 2022-06-13 02:13:44 0xc23ef3adf050f4ca50b30998d37eb6464e387577 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01337911046 14.63808475 1209.12 Withdraw | |
0x6af89501bcf382e5c9a56d6602f4cb13413968e58430c1791616dad4bed6e0ca 14953561 1655087347 2022-06-13 02:29:07 0x82886ad5e67d5142d44ed1449c2e41b988bfc0ab 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00376408456 4.118284917 1209.12 Intend To Withdraw | |
0x72cc7b12205d73fe7e77f923dbe9b7929ec52f12df6b133bf6487518bde02f2c 14953789 1655090635 2022-06-13 03:23:55 0xed514f9de8c06e6d1f0883a21ddcfc8f4c8d3bae 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005585071087 6.110626276 1209.12 Intend To Withdraw | |
0xbde33436571610fcb60f1f63ebf1145d6796ac95d49f27478c4c3e823ddcd043 14954245 1655097280 2022-06-13 05:14:40 0x775f6a8eaa17775eb19e7f873ae2d8a807b20b95 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002934577615 3.210721369 1209.12 Intend To Withdraw | |
0x66e9cf9925f0e46e87bf8cc9b5440d2638bfaba991e8f8b55219dac7bee9e317 14954321 1655098600 2022-06-13 05:36:40 0x6a4d361b7d0dadf8146dcfe6258a8699ea35eb81 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001515282668 1.657870767 1209.12 Intend To Withdraw | |
0xfe8b93a0bfb9284b2f6b676c67427229dcd5efdc14684de39f68c59a6becb861 14954602 1655102875 2022-06-13 06:47:55 0x093d5f54f2a212f82056b34c12e3710e24cc6af1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00292368782 3.198806844 1209.12 Intend To Withdraw | |
0x051feefc4c0085d878ca975786c1de2a953f5bba291c6e433b672461a1dbae1f 14954751 1655105145 2022-06-13 07:25:45 0x58616eb1d37262c5369624847d102847c3b98858 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003136481235 3.431624119 1209.12 Intend To Withdraw | |
0x75e332db721350a5344dab335edfb99a8745aa3be9f6945ba47e91e214b9edd2 14954960 1655108191 2022-06-13 08:16:31 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00546076137 5.974619015 1209.12 Intend To Withdraw | |
0x04cb8d6c21473c5f82e78b7582069833fdc14a3ee1ca681e35e8fabc138e6e76 14954960 1655108191 2022-06-13 08:16:31 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003166491783 3.46445866 1209.12 Intend To Withdraw | |
0xb67a2f56b76082913c84f9d1d9c1dadbc6501897fff2e0e2c9246d5d205f2118 14954960 1655108191 2022-06-13 08:16:31 0x00ae0c6eaddcb87eaab5de7a9b218d48f6cf270c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003168948063 3.467146076 1209.12 Intend To Withdraw | |
0x25ee52c777fdf6cbb2149e69ec12f1e0785674052c2e25f7d2fed40aec422df4 14955127 1655110619 2022-06-13 08:56:59 0x5ce4104c395665e68d5b09949002070aa31ffe7b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00830386326 9.085256792 1209.12 Intend To Withdraw | |
0xa6ef9b297af8121194e5ffcaae7a99f6c6b8fa627dc8c216eae4dc07f8ded6d8 14955139 1655110793 2022-06-13 08:59:53 0x09c8f6d2360c57059b39e6d28ea1a02665602ffb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.02621305055 28.67969861 1209.12 Withdraw Funds | |
0x6b9d2d5965f8ab4fc74716aa1517d859e2688bfdf460cb52562872b3cf055c0f 14955273 1655112974 2022-06-13 09:36:14 0xe9d6e2b6d15e386266b634fe12b868faa3b3fd5e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01114149275 12.18990722 1209.12 Intend To Withdraw | |
0xa6862d31fafc5646c0d0268e76ee6fd932627ef59a2e3b70514644df9e0d4171 14956003 1655123738 2022-06-13 12:35:38 0xba0b3e6a81d8f26a46d958a36cd364ec0ee4476d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003357828881 3.673800579 1209.12 Intend To Withdraw | |
0x53107c9ff3c57788c9602187081d71226eca8d5fee2ca03562b5b46188c04bf0 14956006 1655123768 2022-06-13 12:36:08 0xba0b3e6a81d8f26a46d958a36cd364ec0ee4476d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003482879415 3.810618367 1209.12 Intend To Withdraw | |
0xa48a791c010bd2b6164cf7a85c8bd073350fa146e9f14884141f02c0b2517b8d 14956046 1655124330 2022-06-13 12:45:30 0xc0819e1e01204bcb9cb5a0a3be826afedad6edef 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003717629636 4.067458585 1209.12 Intend To Withdraw | |
0x4798b596609e33c8180072b9407cf39e9a19933dcbbc9866992efbfe08e416ba 14956138 1655125750 2022-06-13 13:09:10 0xd3ed2a824a3fc4ab35ec49bb3a7545c4f53a6bdd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003728284328 4.079115884 1209.12 Intend To Withdraw | |
0x32ee8dc97b153174e0c5791fea4d91dd5a8095d762540e0a0c183a9a21515419 14956162 1655126125 2022-06-13 13:15:25 0xd3ed2a824a3fc4ab35ec49bb3a7545c4f53a6bdd 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01010159143 11.05215119 1209.12 Withdraw Funds | |
0x1e9b745c3e4468b53d3c421de2442da2f7cdffe5a3610b90c9adfc87e64052b8 14956176 1655126369 2022-06-13 13:19:29 0x09c8f6d2360c57059b39e6d28ea1a02665602ffb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002956497109 3.234703487 1209.12 Intend To Withdraw | |
0xef15e9dd404f88faa8c6889628bdfd0fbb4c5aee9bd8689f257bcd7cf11bdbb6 14956331 1655128561 2022-06-13 13:56:01 0x146c1754959cf35f168bdf129f72eafe1066322f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01104905318 12.08876909 1209.12 Withdraw | |
0x74c7d4e681b540faf00d358c91718d9549e0db7e5411dcdf391092533e8555e0 14956640 1655133199 2022-06-13 15:13:19 0x09282ed7a307cb6d253c0f876815e13ffe6807c8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01177066482 12.87828438 1209.12 Withdraw Funds | |
0x49e9952ae47fc955e8c51e92f96a3423c18945b08b909dfe636348780a267588 14956649 1655133286 2022-06-13 15:14:46 0x2b5db48462d658cef7b2f46e27616a8b52b8b5ea 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005687442422 6.222630754 1209.12 Intend To Withdraw | |
0x7661e62db39a4bf62bf98c512c77dbd5739261eb5a40c1210cd3e7a4f888c529 14956718 1655134463 2022-06-13 15:34:23 0x417ac7e5e214053149746e28d516683ffb90e933 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007565533891 8.27745063 1209.12 Intend To Withdraw | |
0x1703812ee67b4a8cd3372671be34140a7f69af5a7b70e41abb2f915da7c4734b 14957391 1655144001 2022-06-13 18:13:21 0xed2c2cdec695be3a4dc421c1a8a6756dc5a927b6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001934872 2.116943455 1209.12 Intend To Withdraw | |
0xe9537237e41f3e901cabfdcf55b13d45b0febe579433c890b0e9d4c8a47dd103 14957519 1655145818 2022-06-13 18:43:38 0x70b0deeb4b1c98fca3368325a3e8965001143c83 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006431086879 7.036252155 1209.12 Withdraw | |
0xf8121672ecedf4210211848f43b30ba33ab282f1dae3ed19ceaba476cd793213 14958136 1655155128 2022-06-13 21:18:48 0xd93a3ced8ca0a74a29d85cab06dff41dec207991 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001726861157 1.889358792 1209.12 Intend To Withdraw | |
0x619c58894eefca8ad9dbfafb1cbccbfa4074945d97dfbbe0e779b460e3d51f95 14958158 1655155431 2022-06-13 21:23:51 0x9953f61941cf781e31d76788a949e1d7fca046aa 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003244172 3.549448585 1209.12 Withdraw Funds | |
0x985b301b0e526745216597968b3ac6d3bd81709c4c802b38093e5f2e8970aa63 14959109 1655169506 2022-06-14 01:18:26 0x844b4bdab7b27c77a1535a8145a4a9d5c44b663f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004569944254 4.999976008 1206.94 Intend To Withdraw | |
0xf18b93ec16c18970266192928845aa5e6fe2b0678a6f4a69dc181a62a9a5c428 14959112 1655169548 2022-06-14 01:19:08 0x844b4bdab7b27c77a1535a8145a4a9d5c44b663f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009775932477 10.69584772 1206.94 Withdraw Funds | |
0x7987add0dc71f84873de895e4e325a15ba35d3417b2acf8d79475f0932a27a78 14959449 1655174726 2022-06-14 02:45:26 0xb2a6c51c4d88a87b243d931c5ee876713fc6a69c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009205681469 10.0719361 1206.94 Intend To Withdraw | |
0x527f7a43c44e4510ec152df3794f36717dbf92d81d89674a7da9c72b783170fe 14960085 1655184494 2022-06-14 05:28:14 0x4baad650a6e58c4d3be40358657bac526927b53d 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007035187459 7.697198599 1206.94 Withdraw Funds | |
0xd76e4d520fd6ac1ad8d845bdaf4dda1635df32a2ac40430e544de49592777948 14960452 1655189924 2022-06-14 06:58:44 0x3f3c8b2ec580bb7b4bf60125d5db58612e5cffa0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00114608376 1.253930242 1206.94 Intend To Withdraw | |
0x0ef0a31d1a6f2d0bd7179088b040bddea5ae69605273456fc6d7f6c44f4d53b7 14960460 1655190070 2022-06-14 07:01:10 0x179517f1c6c3981a50630f5c8b3d7099875cb8a6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001453122435 1.589861256 1206.94 Intend To Withdraw | |
0xbee971a8044d4279f6d0c3e21f470ac87653f4f9d4162f1e150a2c010028442b 14960530 1655191113 2022-06-14 07:18:33 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001870616348 2.046641346 1206.94 Intend To Withdraw | |
0x0203ddef80ba25354ade285cb81fd00be1de308a7432f09484b2e0e0c9c5d82c 14960537 1655191252 2022-06-14 07:20:52 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001301233091 1.423679125 1206.94 Intend To Withdraw | |
0x0b7baf4c2d5bc11ae01e569cb9a03c86873546c26dd813838f1eeecd08d7eac5 14960541 1655191361 2022-06-14 07:22:41 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004663998883 5.102881178 1206.94 Withdraw Funds | |
0x33c8872a7f92fae98fdff1d7b4bc6c425c03e987e50943351231a180fc829dba 14960640 1655192895 2022-06-14 07:48:15 0x37f23097ad3c862dfe895139a63a33b1d236e89f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001532964714 1.677216693 1206.94 Intend To Withdraw | |
0xd22f5ca4bc277b561248943d39984de53e2d64c677eb09c9c5cce39f6ddb0a19 14960687 1655193488 2022-06-14 07:58:08 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006254622392 6.843182359 1206.94 Claim | |
0xaeea194b7d4a670321cf1de7c9122c6848307f746cc2a14617ca9d8fd0edf034 14960691 1655193576 2022-06-14 07:59:36 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006515789077 7.128924829 1206.94 Claim | |
0x6befce2a85d77803c01cf9ba512e222e457b91ac0ea9773aff942e48d647feb0 14960696 1655193657 2022-06-14 08:00:57 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006748476973 7.383508656 1206.94 Claim | |
0x984978b3bbe2976ea764a8f78d5ce0dcd763f51437a735e207a2902a6878ded8 14960702 1655193684 2022-06-14 08:01:24 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006006545594 6.571761535 1206.94 Claim | |
0xa1e22578851a4db3ba2acda208caff11ae2ac01a2c5ef03a2532dbcc8f82034e 14960704 1655193708 2022-06-14 08:01:48 0x8b4aa04e9642b387293ce6fffa42715a9cd19f3c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007429588323 8.128712584 1206.94 Claim | |
0x472321a0fc8d6f36f6ee58efa58a45f9968c3af16cd80a90ed9d5ec89040f332 14960754 1655194590 2022-06-14 08:16:30 0x22ab0ce219be85cd12e791d715ee5ff1922d9a4f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002475831041 2.708806742 1206.94 Intend To Withdraw | |
0xd0f6733b66520900a4bb3d9b88c54bfd24fc278f35d3f3cc4c58864c31afc9c8 14960913 1655196878 2022-06-14 08:54:38 0xae8ce6bb2b95684f57c097b407f4e9b55d9ca432 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003378649083 3.696579962 1206.94 Withdraw Funds | |
0x6189898732efad84df690757c615cd51b819bbda8d5f794a5b630e6273eb2a81 14961076 1655199793 2022-06-14 09:43:13 0x6dfc18c0881af552bbb8b33e957829328285b88a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004281661714 4.684566082 1206.94 Deposit | |
0x6a2c5e57b14481ef4e7f49705d147ab692ab95006f2e64bafdbfef15b71fe66e 14961081 1655199855 2022-06-14 09:44:15 0x6dfc18c0881af552bbb8b33e957829328285b88a 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001286523799 1.407585688 1206.94 Increase Custody Allowance | |
0x5a01d95e58a667945ce8870f25eae71e75f852e645c0546adbcd4b0efab35af5 14961897 1655212370 2022-06-14 13:12:50 0x379a5d034ed9b98a1193f6a1f98ae721a758b729 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004745530842 5.192085294 1206.94 Withdraw Funds | |
0xe891c290e05b9593a43e7389f4454873a50afcd9f380587cb65cf6d393627158 14962054 1655214467 2022-06-14 13:47:47 0xc4dd94f53210169889da9a9e96b66cd61874365c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.01144970347 12.52712056 1206.94 Deposit | |
0x23bda00417c5002448ad4f17ec1d63854f96d1c438805d9be63281f3b9a0e8dc 14962066 1655214668 2022-06-14 13:51:08 0xc4dd94f53210169889da9a9e96b66cd61874365c 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004868643934 5.326783329 1206.94 Increase Custody Allowance | |
0xa5f5d14a7d14b7eccd470c5f8faed29d8f391094ca5380801e3e3add89d53ec0 14962334 1655218764 2022-06-14 14:59:24 0x109ff7c478bf199e00b4d1c1cbf1ee292ebe87da 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009810043773 10.73316889 1206.94 Withdraw | |
0xedbf71cbbf225af7d9752a4bcbeedad56e7dfb12f10a6f03029df343d8182f40 14963007 1655228947 2022-06-14 17:49:07 0xc34e6e034a7ae881fdfaa0ff977b5eb3eb769245 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005880671471 6.434042657 1206.94 Deposit | |
0xfba3ec3e7d6b8356824aa46267edb93e3abc63f6c6b279fcb3a37d69712040ad 14963016 1655229084 2022-06-14 17:51:24 0xc34e6e034a7ae881fdfaa0ff977b5eb3eb769245 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003081015151 3.370938676 1206.94 Increase Custody Allowance | |
0xc370524e1500ad0d6dd1e2365fac518924454eaafcd2f55865d9b5ac4374e41d 14963511 1655236149 2022-06-14 19:49:09 0x52131aeaf3c6f0d59d81cc00ed5436c1c686a174 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004284802891 4.688002843 1206.94 Withdraw Funds | |
0xf813ca6fbb28ce8d966d65c1cc8b9e454606de5f2e0cee5d6d1ee85fb43801d6 14963512 1655236192 2022-06-14 19:49:52 0x52131aeaf3c6f0d59d81cc00ed5436c1c686a174 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002024653187 2.215173052 1206.94 Intend To Withdraw | |
0x1a2687c9d29991fec3378fcde10238a51b58bb0bd651f7ad4223fe7cf44d4ef4 14963957 1655242297 2022-06-14 21:31:37 0x4e3f9fe856cf1d909ca2521b18ec5ae310d514a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003797944927 4.155331545 1206.94 Withdraw Funds | |
0x07941d54b347319694a25a49b7b71469c2f1fa265e6f7311d8bc45db77adfaa2 14963966 1655242396 2022-06-14 21:33:16 0x4e3f9fe856cf1d909ca2521b18ec5ae310d514a7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001293626537 1.415356795 1206.94 Intend To Withdraw | |
0x6a8ed8d8ec3c6c116deac7cd97de2e31939ea2d47c56ac1d91d19eac539e756f 14964290 1655247056 2022-06-14 22:50:56 0x741aa7cfb2c7bf2a1e7d4da2e3df6a56ca4131f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002149985593 2.352299238 1206.94 Withdraw Funds | |
0x564519a796fa102583b3cbc53697e03e39d655e3eceb9e0b92e0da57fd58e3a8 14964290 1655247056 2022-06-14 22:50:56 0x28a55c4b4f9615fde3cdaddf6cc01fcf2e38a6b0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002537930402 2.776749653 1206.94 Withdraw Funds | |
0xcd860f0d4800f0bbd6cd0ad4e1bbc77006ae24feb711d7463627fb59d5e7256e 14964411 1655249099 2022-06-14 23:24:59 0xa5d62640081d2a1bc5ded398f2aa5ac6e463746b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003842000457 4.203532701 1206.94 Withdraw Funds | |
0xf9faff854783a25711194215c8f121698460143175f5aa606886e01eec6c6b8a 14964412 1655249102 2022-06-14 23:25:02 0xea5ed53ec1244a1baf72086c6f5726b1dd913fdc 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003580669151 3.917610118 1206.94 Withdraw Funds | |
0xa766fee8cde2ba5534a72aa9b8e4cece6ea6cea5e0085fa22b18d4030b6cbbaf 14965015 1655258194 2022-06-15 01:56:34 0x6089c477925b05a7e648d69aa7b3041912c647c5 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001414847629 1.547984791 1236.89 Intend To Withdraw | |
0x3d2efca5f4ac338d154c346a2791f1526ad9582a69c848f67209630097f72026 14965319 1655263075 2022-06-15 03:17:55 0x5789527ec57ff76286e42673e7b97e692b13f6d0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001412855168 1.545804839 1236.89 Intend To Withdraw | |
0x85740895bfb5c15d211f19b629912dd6d91aebb6f428e0337fe6b0845b084428 14965694 1655268595 2022-06-15 04:49:55 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001805510484 1.975409021 1236.89 Intend To Withdraw | |
0x5816bc9d6d8d9d1622b32ebc1934e1bbd977bd3ca5d6934224b65a2a105cb15f 14965701 1655268649 2022-06-15 04:50:49 0x10bf1dcb5ab7860bab1c3320163c6dddf8dcc0e4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003157117961 3.454202761 1236.89 Withdraw Funds | |
0x1235faa3182d31522619ccdd06abb8bc86038533b083d6ebd8de55dad96c5da8 14965718 1655268937 2022-06-15 04:55:37 0xb3ce5ae1a2796acac6ab45a74a9cca557816c9f8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.006967754705 7.623420422 1236.89 Deposit | |
0xe4d0e4d609f82c838d68fce4060d4ae0c86086790e822443a2fc902d11dc27a4 14965832 1655270834 2022-06-15 05:27:14 0xb3ce5ae1a2796acac6ab45a74a9cca557816c9f8 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004982920114 5.451812896 1236.89 Increase Custody Allowance | |
0x7b13ca153d1a04b173337882328ec26463038eb62f4ceac119601ea0b079119d 14965896 1655271601 2022-06-15 05:40:01 0x3b4235238dd16d69d90cdefa1cc9af606eea4b37 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002815639519 3.080591197 1236.89 Withdraw Funds | |
0xa750ab04398cf95e1f0e220e6a2916289f6a72a298d3c53f1079f04252678b6b 14966027 1655273682 2022-06-15 06:14:42 0x58d3d0aac31b61471fb38676556569f46b3519d2 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001360261752 1.488262383 1236.89 Intend To Withdraw | |
0xaf84c515dc13621b875d83c28d640eaba110755da70e3495ff02c349e48b1434 14966055 1655274204 2022-06-15 06:23:24 0x8d6845e3778a9a888b7e1ce1fc368101073290af 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001623485029 1.77625497 1236.89 Intend To Withdraw | |
0x47a256447dfa16178ba3fcc23fc7553207dc31fba977470308b80215c488eff0 14966058 1655274344 2022-06-15 06:25:44 0x509b302e20b24e33710b51056a0f815808261181 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002101275477 2.2990055 1236.89 Intend To Withdraw | |
0x3817e66d828a88be8848a9f5d07caa87456a71194cb65c8ea846af0d5fdace13 14966088 1655274748 2022-06-15 06:32:28 0x397a4fd6cb0f6c9509521b6f3a9f3541fc5664f3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001517549223 1.660350605 1236.89 Intend To Withdraw | |
0xe50951e2eac27cad43f15c75e0d6fa21bd222e5371dde8d6a084ef4596b7b50d 14966097 1655274839 2022-06-15 06:33:59 0x0f6410e884f115166f82e3ffb5840badc20619e1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002142717584 2.344347308 1236.89 Withdraw Funds | |
0x9e3bde1f12fc0173c512b4da7619df317af20e39753c2c2c00a272d36a9c4f63 14966125 1655275366 2022-06-15 06:42:46 0xb2e083b127986a9342a6918e1d7a8c0053e828a4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00451791 4.943045331 1236.89 Withdraw | |
0x672f0d841da7115a8f584e7deff4d6bcdb8f12d17aebbc6e4b107d0e6ba63cdb 14966302 1655277919 2022-06-15 07:25:19 0x244d64fd0ef74132cecef6df9ea18bc884ae6727 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0006024128105 0.659099856 1236.89 Intend To Withdraw | |
0x1235d591d1c1f6244f178bc9da64b839eb0a975d82cb4c8ac5c04288c54531ad 14966487 1655280665 2022-06-15 08:11:05 0x254285f14dea6ee112681b9d2f16e59b1a5d33f6 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007263482015 7.946975673 1236.89 Intend To Withdraw | |
0xcea9457bbacff860893ec4df68f9e128768f3663602d3dd581273501e3524925 14966586 1655282222 2022-06-15 08:37:02 0x60b83af2bc4f1f2a7db6c4c1d10d3da24f9e70eb 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002284736216 2.499729893 1236.89 Intend To Withdraw | |
0x2a66b8b4a77c5c1c93f4a5104276835700e2b23a4110de90d5f30fd8e03af777 14966741 1655284661 2022-06-15 09:17:41 0x7929d31d084e08c83cd7d64bfc333937448019d3 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005801224165 6.347119359 1236.89 Intend To Withdraw | |
0x0b3084e43a08e1e56f6ce94f806f862b4150116785bbfe8cd651b2e344c9bfc0 14967005 1655289025 2022-06-15 10:30:25 0xd275e5cb559d6dc236a5f8002a5f0b4c8e610701 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.009526539996 10.42298741 1236.89 Withdraw Funds | |
0xe5bd645ad8710536d3b7937b88ee72b3e68b66cd06ec9c7aacfcf79d11bcc86f 14967036 1655289473 2022-06-15 10:37:53 0x3d57b83154423edb0ba0e747b03858e69075fca1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0030910446 3.381911897 1236.89 Intend To Withdraw | |
0x5c50416f38cb31ed9561db7a4677fb7ba5dfcfe887c5b0f25e964944f94d4052 14967174 1655291431 2022-06-15 11:10:31 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002193725423 2.400154986 1236.89 Intend To Withdraw | |
0x199fc51e5a8323f2cd0bc113c0283ed2189c504b094762a61a9d45fb4d0fd447 14967189 1655291570 2022-06-15 11:12:50 0xfbb7b5eb128f4d023a365cb7658222d30b9ab4e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001549720857 1.695549589 1236.89 Intend To Withdraw | |
0x2cf6810bf49c652265dc9296ea1c8aa6c67cccf88027238b7bb279e15f141d99 14967254 1655292420 2022-06-15 11:27:00 0x5a59938832e5a6cf505b1934cc7f32e29ee326d7 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.001859184264 2.034133503 1236.89 Intend To Withdraw | |
0x7daaf876d07b33e3373bed462237222e279b29c29f39423d17e9f28132485b02 14967345 1655294023 2022-06-15 11:53:43 0x41318efd233207db1e78588e4a78fbb30bf1d376 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002399141826 2.624901072 1236.89 Intend To Withdraw | |
0x8729b6b8530d07967bc41efc8a2fc719ccab7d9663b43b04de1800e61fe12976 14967413 1655295056 2022-06-15 12:10:56 0xec6576483a4e9a7a0dc03d9ccae811d5cd2a52c1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003633784 3.975723074 1236.89 Intend To Withdraw | |
0xaaa587f9371c3718c3250776e2e9a16cf2ec008ea6741f712ae92d80820316f1 14967749 1655300415 2022-06-15 13:40:15 0xec6576483a4e9a7a0dc03d9ccae811d5cd2a52c1 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.004867907657 5.325977767 1236.89 Withdraw Funds | |
0x58d0dd67f8bdf0d06be74be1d1fa7fb448ad5893cf1bed972d63828933f2beaa 14968319 1655308459 2022-06-15 15:54:19 0xe3b206a0ed144cb558ade4699f3aa322b8d5d08e 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003964670571 4.337746072 1236.89 Intend To Withdraw | |
0x70419bf3aa4a695dc29cf5b239f3f5673d286536fd9f900cdbc7aae735ab3f9d 14968403 1655309682 2022-06-15 16:14:42 0x9a8a9958ac1b70c49cce9693ccb0230f13f63505 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007042829075 7.705559291 1236.89 Withdraw Funds | |
0x849ec8177cbaf17628760cf80922dfbb8d2813799a1d71ff5b55d0a3e65cdb4f 14968406 1655309724 2022-06-15 16:15:24 0x9a8a9958ac1b70c49cce9693ccb0230f13f63505 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002594117976 2.838224478 1236.89 Intend To Withdraw | |
0xf9e37cbeabf48d279618cea8d4f4a747e87c2ba0788f76c5b80c1699446f91f8 14968430 1655309976 2022-06-15 16:19:36 0xe1074f129271bda4d7f95826c2b609d79ce24e0f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002369878581 2.592884155 1236.89 Intend To Withdraw | |
0x5c668ffcce61f6d74afd92624f2f4a1bc07b0ab018b53a01f1c1290f8f84fef7 14968435 1655310030 2022-06-15 16:20:30 0xe1074f129271bda4d7f95826c2b609d79ce24e0f 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.005588618393 6.114507383 1236.89 Withdraw Funds | |
0x7a2d5e191cdccc58429f3a66f75b248eb17ff1280d2c307d3203dbff5e404cd9 14968498 1655310908 2022-06-15 16:35:08 0x4857d1c4b89a046f834fd9f271b0a82f5159889b 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.0023596 2.58163836 1236.89 Intend To Withdraw | |
0xa4f85a54eb352a0acd66bb3b0399e6d3c1743e79d11abd4f88612c3d55c54b8a 14968946 1655317716 2022-06-15 18:28:36 0x190a031ccbd45abcf1b751cdbc20646ffc2bbda9 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.00559240619 6.118651612 1236.89 Intend To Withdraw | |
0x79e3dcfb1c5064be3400bf555f94a94aa95660040b8f7e123949b587b8fe8bac 14969861 1655330983 2022-06-15 22:09:43 0x3b87f7d473550ef9e53e46baae856608f8b8a0c4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002734735195 2.992073777 1236.89 Intend To Withdraw | |
0x3ba11a6fac134f4401ddab05beb57ef52232ef647ff651b35e944e52d0105172 14969868 1655331048 2022-06-15 22:10:48 0x3b87f7d473550ef9e53e46baae856608f8b8a0c4 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.007130624893 7.801616695 1236.89 Withdraw Funds | |
0xb450582b76b0a7a82024395122e063286867d85a00015601cc584d46a7ccb234 14970495 1655340588 2022-06-16 00:49:48 0xa7d1b49a4c3cb52af136490986c2f6bbed2a7a82 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.003325154032 3.638051027 Increase Custody Allowance | |
0x3470d8290f6e21cfa7028c0f4c4a705987d2e01ed75987c780f381421fa6153e 14970502 1655340647 2022-06-16 00:50:47 0xfbb7b5eb128f4d023a365cb7658222d30b9ab4e0 0x6f6c8013f639979c84b756c7fc1500eb5af18dc4 0 0 0 0.002469419477 2.70179185 Increase Custody Allo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment