ERC-20
Overview
Max Total Supply
88,888,888,888 $CARTEL
Holders
548
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 $CARTELValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CartelCoin
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "./ERC20.sol"; import "./Ownable.sol"; /** * $$\ $$$$$$\ $$$$$$\ $$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$\ * $$$$$$\ $$ __$$\ $$ __$$\ $$ __$$\\__$$ __|$$ _____|$$ | * $$ __$$\ $$ / \__|$$ / $$ |$$ | $$ | $$ | $$ | $$ | * $$ / \__|$$ | $$$$$$$$ |$$$$$$$ | $$ | $$$$$\ $$ | * \$$$$$$\ $$ | $$ __$$ |$$ __$$< $$ | $$ __| $$ | * \___ $$\ $$ | $$\ $$ | $$ |$$ | $$ | $$ | $$ | $$ | * $$\ \$$ |\$$$$$$ |$$ | $$ |$$ | $$ | $$ | $$$$$$$$\ $$$$$$$$\ * \$$$$$$ | \______/ \__| \__|\__| \__| \__| \________|\________| * \_$$ _/ * \ _/ * * https://twitter.com/cartelcoin_eth * https://t.me/cartelcoineth */ contract CartelCoin is ERC20, Ownable { uint256 public maxHoldLimit; mapping(address => bool) public blacklisted; constructor(string memory name, string memory symbol, uint256 initialSupply) ERC20(name, symbol) { require(initialSupply > 0, "Initial token supply should be > 0"); _mint(msg.sender, initialSupply); } function blacklist(address who, bool flag) public onlyOwner { require(who != address(0), "Invalid address"); blacklisted[who] = flag; } function batchBlacklist(address[] calldata holders) public onlyOwner { for (uint256 i = 0; i < holders.length; i++) { blacklist(holders[i], true); } } function setMaxHoldLimit(uint256 limit) public onlyOwner { maxHoldLimit = limit; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { require(!blacklisted[from] && !blacklisted[to], "Blacklisted"); if (maxHoldLimit > 0) { require(balanceOf(to) + amount <= maxHoldLimit, "Max hold limit exceeded"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"}],"name":"batchBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"maxHoldLimit","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setMaxHoldLimit","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":"to","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":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001372380380620013728339810160408190526200003491620003df565b82826003620000448382620004e0565b506004620000538282620004e0565b505050620000706200006a620000e660201b60201c565b620000ea565b60008111620000d15760405162461bcd60e51b815260206004820152602260248201527f496e697469616c20746f6b656e20737570706c792073686f756c64206265203e604482015261020360f41b60648201526084015b60405180910390fd5b620000dd33826200013c565b505050620005d4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000c8565b620001a2600083836200020d565b8060026000828254620001b69190620005ac565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03831660009081526007602052604090205460ff161580156200025057506001600160a01b03821660009081526007602052604090205460ff16155b6200028c5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401620000c8565b60065415620003155760065481620002b9846001600160a01b031660009081526020819052604090205490565b620002c59190620005ac565b1115620003155760405162461bcd60e51b815260206004820152601760248201527f4d617820686f6c64206c696d69742065786365656465640000000000000000006044820152606401620000c8565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200034257600080fd5b81516001600160401b03808211156200035f576200035f6200031a565b604051601f8301601f19908116603f011681019082821181831017156200038a576200038a6200031a565b81604052838152602092508683858801011115620003a757600080fd5b600091505b83821015620003cb5785820183015181830184015290820190620003ac565b600093810190920192909252949350505050565b600080600060608486031215620003f557600080fd5b83516001600160401b03808211156200040d57600080fd5b6200041b8783880162000330565b945060208601519150808211156200043257600080fd5b50620004418682870162000330565b925050604084015190509250925092565b600181811c908216806200046757607f821691505b6020821081036200048857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031557600081815260208120601f850160051c81016020861015620004b75750805b601f850160051c820191505b81811015620004d857828155600101620004c3565b505050505050565b81516001600160401b03811115620004fc57620004fc6200031a565b62000514816200050d845462000452565b846200048e565b602080601f8311600181146200054c5760008415620005335750858301515b600019600386901b1c1916600185901b178555620004d8565b600085815260208120601f198616915b828110156200057d578886015182559484019460019091019084016200055c565b50858210156200059c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620005ce57634e487b7160e01b600052601160045260246000fd5b92915050565b610d8e80620005e46000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80638756aabd116100ad578063a9059cbb11610071578063a9059cbb14610246578063c81b684814610259578063dbac26e91461026c578063dd62ed3e1461028f578063f2fde38b146102a257600080fd5b80638756aabd146101f45780638da5cb5b1461020757806395d89b41146102225780639a36dfa11461022a578063a457c2d71461023357600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b578063404e5129146101ae57806370a08231146101c3578063715018a6146101ec57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102b5565b60405161013b9190610ad7565b60405180910390f35b610157610152366004610b41565b610347565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610b6b565b610361565b6040516012815260200161013b565b6101576101a9366004610b41565b610385565b6101c16101bc366004610ba7565b6103a7565b005b61016b6101d1366004610be3565b6001600160a01b031660009081526020819052604090205490565b6101c1610427565b6101c1610202366004610c05565b61043b565b6005546040516001600160a01b03909116815260200161013b565b61012e610448565b61016b60065481565b610157610241366004610b41565b610457565b610157610254366004610b41565b6104d2565b6101c1610267366004610c1e565b6104e0565b61015761027a366004610be3565b60076020526000908152604090205460ff1681565b61016b61029d366004610c93565b61053b565b6101c16102b0366004610be3565b610566565b6060600380546102c490610cc6565b80601f01602080910402602001604051908101604052809291908181526020018280546102f090610cc6565b801561033d5780601f106103125761010080835404028352916020019161033d565b820191906000526020600020905b81548152906001019060200180831161032057829003601f168201915b5050505050905090565b6000336103558185856105df565b60019150505b92915050565b60003361036f858285610703565b61037a85858561077d565b506001949350505050565b600033610355818585610398838361053b565b6103a29190610d16565b6105df565b6103af61092c565b6001600160a01b0382166103fc5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b61042f61092c565b6104396000610986565b565b61044361092c565b600655565b6060600480546102c490610cc6565b60003381610465828661053b565b9050838110156104c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b61037a82868684036105df565b60003361035581858561077d565b6104e861092c565b60005b818110156105365761052483838381811061050857610508610d29565b905060200201602081019061051d9190610be3565b60016103a7565b8061052e81610d3f565b9150506104eb565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61056e61092c565b6001600160a01b0381166105d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b6105dc81610986565b50565b6001600160a01b0383166106415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b0382166106a25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061070f848461053b565b90506000198114610777578181101561076a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f3565b61077784848484036105df565b50505050565b6001600160a01b0383166107e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b0382166108435760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b61084e8383836109d8565b6001600160a01b038316600090815260208190526040902054818110156108c65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610777565b6005546001600160a01b031633146104395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526007602052604090205460ff16158015610a1a57506001600160a01b03821660009081526007602052604090205460ff16155b610a545760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016103f3565b600654156105365760065481610a7f846001600160a01b031660009081526020819052604090205490565b610a899190610d16565b11156105365760405162461bcd60e51b815260206004820152601760248201527f4d617820686f6c64206c696d697420657863656564656400000000000000000060448201526064016103f3565b600060208083528351808285015260005b81811015610b0457858101830151858201604001528201610ae8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b3c57600080fd5b919050565b60008060408385031215610b5457600080fd5b610b5d83610b25565b946020939093013593505050565b600080600060608486031215610b8057600080fd5b610b8984610b25565b9250610b9760208501610b25565b9150604084013590509250925092565b60008060408385031215610bba57600080fd5b610bc383610b25565b915060208301358015158114610bd857600080fd5b809150509250929050565b600060208284031215610bf557600080fd5b610bfe82610b25565b9392505050565b600060208284031215610c1757600080fd5b5035919050565b60008060208385031215610c3157600080fd5b823567ffffffffffffffff80821115610c4957600080fd5b818501915085601f830112610c5d57600080fd5b813581811115610c6c57600080fd5b8660208260051b8501011115610c8157600080fd5b60209290920196919550909350505050565b60008060408385031215610ca657600080fd5b610caf83610b25565b9150610cbd60208401610b25565b90509250929050565b600181811c90821680610cda57607f821691505b602082108103610cfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561035b5761035b610d00565b634e487b7160e01b600052603260045260246000fd5b600060018201610d5157610d51610d00565b506001019056fea2646970667358221220ced957d945f6419ddb523de47bb8db811791b264ccf882a207fbfeef8a38518c64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000011f372a621c0f72bf15e00000000000000000000000000000000000000000000000000000000000000000000b43617274656c20436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000072443415254454c00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c80638756aabd116100ad578063a9059cbb11610071578063a9059cbb14610246578063c81b684814610259578063dbac26e91461026c578063dd62ed3e1461028f578063f2fde38b146102a257600080fd5b80638756aabd146101f45780638da5cb5b1461020757806395d89b41146102225780639a36dfa11461022a578063a457c2d71461023357600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b578063404e5129146101ae57806370a08231146101c3578063715018a6146101ec57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102b5565b60405161013b9190610ad7565b60405180910390f35b610157610152366004610b41565b610347565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610b6b565b610361565b6040516012815260200161013b565b6101576101a9366004610b41565b610385565b6101c16101bc366004610ba7565b6103a7565b005b61016b6101d1366004610be3565b6001600160a01b031660009081526020819052604090205490565b6101c1610427565b6101c1610202366004610c05565b61043b565b6005546040516001600160a01b03909116815260200161013b565b61012e610448565b61016b60065481565b610157610241366004610b41565b610457565b610157610254366004610b41565b6104d2565b6101c1610267366004610c1e565b6104e0565b61015761027a366004610be3565b60076020526000908152604090205460ff1681565b61016b61029d366004610c93565b61053b565b6101c16102b0366004610be3565b610566565b6060600380546102c490610cc6565b80601f01602080910402602001604051908101604052809291908181526020018280546102f090610cc6565b801561033d5780601f106103125761010080835404028352916020019161033d565b820191906000526020600020905b81548152906001019060200180831161032057829003601f168201915b5050505050905090565b6000336103558185856105df565b60019150505b92915050565b60003361036f858285610703565b61037a85858561077d565b506001949350505050565b600033610355818585610398838361053b565b6103a29190610d16565b6105df565b6103af61092c565b6001600160a01b0382166103fc5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b61042f61092c565b6104396000610986565b565b61044361092c565b600655565b6060600480546102c490610cc6565b60003381610465828661053b565b9050838110156104c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b61037a82868684036105df565b60003361035581858561077d565b6104e861092c565b60005b818110156105365761052483838381811061050857610508610d29565b905060200201602081019061051d9190610be3565b60016103a7565b8061052e81610d3f565b9150506104eb565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61056e61092c565b6001600160a01b0381166105d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b6105dc81610986565b50565b6001600160a01b0383166106415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b0382166106a25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061070f848461053b565b90506000198114610777578181101561076a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f3565b61077784848484036105df565b50505050565b6001600160a01b0383166107e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b0382166108435760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b61084e8383836109d8565b6001600160a01b038316600090815260208190526040902054818110156108c65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610777565b6005546001600160a01b031633146104395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526007602052604090205460ff16158015610a1a57506001600160a01b03821660009081526007602052604090205460ff16155b610a545760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016103f3565b600654156105365760065481610a7f846001600160a01b031660009081526020819052604090205490565b610a899190610d16565b11156105365760405162461bcd60e51b815260206004820152601760248201527f4d617820686f6c64206c696d697420657863656564656400000000000000000060448201526064016103f3565b600060208083528351808285015260005b81811015610b0457858101830151858201604001528201610ae8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b3c57600080fd5b919050565b60008060408385031215610b5457600080fd5b610b5d83610b25565b946020939093013593505050565b600080600060608486031215610b8057600080fd5b610b8984610b25565b9250610b9760208501610b25565b9150604084013590509250925092565b60008060408385031215610bba57600080fd5b610bc383610b25565b915060208301358015158114610bd857600080fd5b809150509250929050565b600060208284031215610bf557600080fd5b610bfe82610b25565b9392505050565b600060208284031215610c1757600080fd5b5035919050565b60008060208385031215610c3157600080fd5b823567ffffffffffffffff80821115610c4957600080fd5b818501915085601f830112610c5d57600080fd5b813581811115610c6c57600080fd5b8660208260051b8501011115610c8157600080fd5b60209290920196919550909350505050565b60008060408385031215610ca657600080fd5b610caf83610b25565b9150610cbd60208401610b25565b90509250929050565b600181811c90821680610cda57607f821691505b602082108103610cfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561035b5761035b610d00565b634e487b7160e01b600052603260045260246000fd5b600060018201610d5157610d51610d00565b506001019056fea2646970667358221220ced957d945f6419ddb523de47bb8db811791b264ccf882a207fbfeef8a38518c64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000011f372a621c0f72bf15e00000000000000000000000000000000000000000000000000000000000000000000b43617274656c20436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000072443415254454c00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Cartel Coin
Arg [1] : symbol (string): $CARTEL
Arg [2] : initialSupply (uint256): 88888888888000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000011f372a621c0f72bf15e00000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 43617274656c20436f696e000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 2443415254454c00000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
754:1112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2133:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4410:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:6;;1162:22;1144:41;;1132:2;1117:18;4410:197:2;1004:187:6;3221:106:2;3308:12;;3221:106;;;1342:25:6;;;1330:2;1315:18;3221:106:2;1196:177:6;5169:256:2;;;;;;:::i;:::-;;:::i;3070:91::-;;;3152:2;1853:36:6;;1841:2;1826:18;3070:91:2;1711:184:6;5820:234:2;;;;;;:::i;:::-;;:::i;1107:155:0:-;;;;;;:::i;:::-;;:::i;:::-;;3385:125:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3485:18:2;3459:7;3485:18;;;;;;;;;;;;3385:125;1824:101:5;;;:::i;1456:94:0:-;;;;;;:::i;:::-;;:::i;1194:85:5:-;1266:6;;1194:85;;-1:-1:-1;;;;;1266:6:5;;;2774:51:6;;2762:2;2747:18;1194:85:5;2628:203:6;2344:102:2;;;:::i;798:27:0:-;;;;;;6541:427:2;;;;;;:::i;:::-;;:::i;3706:189::-;;;;;;:::i;:::-;;:::i;1268:182:0:-;;;;;;:::i;:::-;;:::i;831:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3953:149:2;;;;;;:::i;:::-;;:::i;2074:198:5:-;;;;;;:::i;:::-;;:::i;2133:98:2:-;2187:13;2219:5;2212:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2133:98;:::o;4410:197::-;4493:4;719:10:1;4547:32:2;719:10:1;4563:7:2;4572:6;4547:8;:32::i;:::-;4596:4;4589:11;;;4410:197;;;;;:::o;5169:256::-;5266:4;719:10:1;5322:38:2;5338:4;719:10:1;5353:6:2;5322:15;:38::i;:::-;5370:27;5380:4;5386:2;5390:6;5370:9;:27::i;:::-;-1:-1:-1;5414:4:2;;5169:256;-1:-1:-1;;;;5169:256:2:o;5820:234::-;5908:4;719:10:1;5962:64:2;719:10:1;5978:7:2;6015:10;5987:25;719:10:1;5978:7:2;5987:9;:25::i;:::-;:38;;;;:::i;:::-;5962:8;:64::i;1107:155:0:-;1087:13:5;:11;:13::i;:::-;-1:-1:-1;;;;;1185:17:0;::::1;1177:45;;;::::0;-1:-1:-1;;;1177:45:0;;4570:2:6;1177:45:0::1;::::0;::::1;4552:21:6::0;4609:2;4589:18;;;4582:30;-1:-1:-1;;;4628:18:6;;;4621:45;4683:18;;1177:45:0::1;;;;;;;;;-1:-1:-1::0;;;;;1232:16:0;;;::::1;;::::0;;;:11:::1;:16;::::0;;;;:23;;-1:-1:-1;;1232:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;1107:155::o;1824:101:5:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1456:94:0:-;1087:13:5;:11;:13::i;:::-;1523:12:0::1;:20:::0;1456:94::o;2344:102:2:-;2400:13;2432:7;2425:14;;;;;:::i;6541:427::-;6634:4;719:10:1;6634:4:2;6715:25;719:10:1;6732:7:2;6715:9;:25::i;:::-;6688:52;;6778:15;6758:16;:35;;6750:85;;;;-1:-1:-1;;;6750:85:2;;4914:2:6;6750:85:2;;;4896:21:6;4953:2;4933:18;;;4926:30;4992:34;4972:18;;;4965:62;-1:-1:-1;;;5043:18:6;;;5036:35;5088:19;;6750:85:2;4712:401:6;6750:85:2;6869:60;6878:5;6885:7;6913:15;6894:16;:34;6869:8;:60::i;3706:189::-;3785:4;719:10:1;3839:28:2;719:10:1;3856:2:2;3860:6;3839:9;:28::i;1268:182:0:-;1087:13:5;:11;:13::i;:::-;1352:9:0::1;1347:97;1367:18:::0;;::::1;1347:97;;;1406:27;1416:7;;1424:1;1416:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1428:4;1406:9;:27::i;:::-;1387:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1347:97;;;;1268:182:::0;;:::o;3953:149:2:-;-1:-1:-1;;;;;4068:18:2;;;4042:7;4068:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3953:149::o;2074:198:5:-;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:5;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:5;;5592:2:6;2154:73:5::1;::::0;::::1;5574:21:6::0;5631:2;5611:18;;;5604:30;5670:34;5650:18;;;5643:62;-1:-1:-1;;;5721:18:6;;;5714:36;5767:19;;2154:73:5::1;5390:402:6::0;2154:73:5::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;10423:340:2:-;-1:-1:-1;;;;;10524:19:2;;10516:68;;;;-1:-1:-1;;;10516:68:2;;5999:2:6;10516:68:2;;;5981:21:6;6038:2;6018:18;;;6011:30;6077:34;6057:18;;;6050:62;-1:-1:-1;;;6128:18:6;;;6121:34;6172:19;;10516:68:2;5797:400:6;10516:68:2;-1:-1:-1;;;;;10602:21:2;;10594:68;;;;-1:-1:-1;;;10594:68:2;;6404:2:6;10594:68:2;;;6386:21:6;6443:2;6423:18;;;6416:30;6482:34;6462:18;;;6455:62;-1:-1:-1;;;6533:18:6;;;6526:32;6575:19;;10594:68:2;6202:398:6;10594:68:2;-1:-1:-1;;;;;10673:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10724:32;;1342:25:6;;;10724:32:2;;1315:18:6;10724:32:2;;;;;;;10423:340;;;:::o;11044:411::-;11144:24;11171:25;11181:5;11188:7;11171:9;:25::i;:::-;11144:52;;-1:-1:-1;;11210:16:2;:37;11206:243;;11291:6;11271:16;:26;;11263:68;;;;-1:-1:-1;;;11263:68:2;;6807:2:6;11263:68:2;;;6789:21:6;6846:2;6826:18;;;6819:30;6885:31;6865:18;;;6858:59;6934:18;;11263:68:2;6605:353:6;11263:68:2;11373:51;11382:5;11389:7;11417:6;11398:16;:25;11373:8;:51::i;:::-;11134:321;11044:411;;;:::o;7422:788::-;-1:-1:-1;;;;;7518:18:2;;7510:68;;;;-1:-1:-1;;;7510:68:2;;7165:2:6;7510:68:2;;;7147:21:6;7204:2;7184:18;;;7177:30;7243:34;7223:18;;;7216:62;-1:-1:-1;;;7294:18:6;;;7287:35;7339:19;;7510:68:2;6963:401:6;7510:68:2;-1:-1:-1;;;;;7596:16:2;;7588:64;;;;-1:-1:-1;;;7588:64:2;;7571:2:6;7588:64:2;;;7553:21:6;7610:2;7590:18;;;7583:30;7649:34;7629:18;;;7622:62;-1:-1:-1;;;7700:18:6;;;7693:33;7743:19;;7588:64:2;7369:399:6;7588:64:2;7663:38;7684:4;7690:2;7694:6;7663:20;:38::i;:::-;-1:-1:-1;;;;;7734:15:2;;7712:19;7734:15;;;;;;;;;;;7767:21;;;;7759:72;;;;-1:-1:-1;;;7759:72:2;;7975:2:6;7759:72:2;;;7957:21:6;8014:2;7994:18;;;7987:30;8053:34;8033:18;;;8026:62;-1:-1:-1;;;8104:18:6;;;8097:36;8150:19;;7759:72:2;7773:402:6;7759:72:2;-1:-1:-1;;;;;7865:15:2;;;:9;:15;;;;;;;;;;;7883:20;;;7865:38;;8080:13;;;;;;;;;;:23;;;;;;8129:26;;1342:25:6;;;8080:13:2;;8129:26;;1315:18:6;8129:26:2;;;;;;;8166:37;1268:182:0;1352:130:5;1266:6;;-1:-1:-1;;;;;1266:6:5;719:10:1;1415:23:5;1407:68;;;;-1:-1:-1;;;1407:68:5;;8382:2:6;1407:68:5;;;8364:21:6;;;8401:18;;;8394:30;8460:34;8440:18;;;8433:62;8512:18;;1407:68:5;8180:356:6;2426:187:5;2518:6;;;-1:-1:-1;;;;;2534:17:5;;;-1:-1:-1;;;;;;2534:17:5;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;1556:308:0:-;-1:-1:-1;;;;;1673:17:0;;;;;;:11;:17;;;;;;;;1672:18;:38;;;;-1:-1:-1;;;;;;1695:15:0;;;;;;:11;:15;;;;;;;;1694:16;1672:38;1664:62;;;;-1:-1:-1;;;1664:62:0;;8743:2:6;1664:62:0;;;8725:21:6;8782:2;8762:18;;;8755:30;-1:-1:-1;;;8801:18:6;;;8794:41;8852:18;;1664:62:0;8541:335:6;1664:62:0;1741:12;;:16;1737:121;;1807:12;;1797:6;1781:13;1791:2;-1:-1:-1;;;;;3485:18:2;3459:7;3485:18;;;;;;;;;;;;3385:125;1781:13:0;:22;;;;:::i;:::-;:38;;1773:74;;;;-1:-1:-1;;;1773:74:0;;9083:2:6;1773:74:0;;;9065:21:6;9122:2;9102:18;;;9095:30;9161:25;9141:18;;;9134:53;9204:18;;1773:74:0;8881:347:6;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:6;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:6:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:347::-;1965:6;1973;2026:2;2014:9;2005:7;2001:23;1997:32;1994:52;;;2042:1;2039;2032:12;1994:52;2065:29;2084:9;2065:29;:::i;:::-;2055:39;;2144:2;2133:9;2129:18;2116:32;2191:5;2184:13;2177:21;2170:5;2167:32;2157:60;;2213:1;2210;2203:12;2157:60;2236:5;2226:15;;;1900:347;;;;;:::o;2252:186::-;2311:6;2364:2;2352:9;2343:7;2339:23;2335:32;2332:52;;;2380:1;2377;2370:12;2332:52;2403:29;2422:9;2403:29;:::i;:::-;2393:39;2252:186;-1:-1:-1;;;2252:186:6:o;2443:180::-;2502:6;2555:2;2543:9;2534:7;2530:23;2526:32;2523:52;;;2571:1;2568;2561:12;2523:52;-1:-1:-1;2594:23:6;;2443:180;-1:-1:-1;2443:180:6:o;2836:615::-;2922:6;2930;2983:2;2971:9;2962:7;2958:23;2954:32;2951:52;;;2999:1;2996;2989:12;2951:52;3039:9;3026:23;3068:18;3109:2;3101:6;3098:14;3095:34;;;3125:1;3122;3115:12;3095:34;3163:6;3152:9;3148:22;3138:32;;3208:7;3201:4;3197:2;3193:13;3189:27;3179:55;;3230:1;3227;3220:12;3179:55;3270:2;3257:16;3296:2;3288:6;3285:14;3282:34;;;3312:1;3309;3302:12;3282:34;3365:7;3360:2;3350:6;3347:1;3343:14;3339:2;3335:23;3331:32;3328:45;3325:65;;;3386:1;3383;3376:12;3325:65;3417:2;3409:11;;;;;3439:6;;-1:-1:-1;2836:615:6;;-1:-1:-1;;;;2836:615:6:o;3456:260::-;3524:6;3532;3585:2;3573:9;3564:7;3560:23;3556:32;3553:52;;;3601:1;3598;3591:12;3553:52;3624:29;3643:9;3624:29;:::i;:::-;3614:39;;3672:38;3706:2;3695:9;3691:18;3672:38;:::i;:::-;3662:48;;3456:260;;;;;:::o;3721:380::-;3800:1;3796:12;;;;3843;;;3864:61;;3918:4;3910:6;3906:17;3896:27;;3864:61;3971:2;3963:6;3960:14;3940:18;3937:38;3934:161;;4017:10;4012:3;4008:20;4005:1;3998:31;4052:4;4049:1;4042:15;4080:4;4077:1;4070:15;3934:161;;3721:380;;;:::o;4106:127::-;4167:10;4162:3;4158:20;4155:1;4148:31;4198:4;4195:1;4188:15;4222:4;4219:1;4212:15;4238:125;4303:9;;;4324:10;;;4321:36;;;4337:18;;:::i;5118:127::-;5179:10;5174:3;5170:20;5167:1;5160:31;5210:4;5207:1;5200:15;5234:4;5231:1;5224:15;5250:135;5289:3;5310:17;;;5307:43;;5330:18;;:::i;:::-;-1:-1:-1;5377:1:6;5366:13;;5250:135::o
Swarm Source
ipfs://ced957d945f6419ddb523de47bb8db811791b264ccf882a207fbfeef8a38518c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.