Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17771680 | 632 days ago | IN | 0 ETH | 0.00147265 | ||||
Approve | 17686309 | 644 days ago | IN | 0 ETH | 0.00357054 | ||||
Approve | 17685459 | 644 days ago | IN | 0 ETH | 0.00123977 | ||||
Approve | 17685441 | 644 days ago | IN | 0 ETH | 0.00123539 | ||||
Approve | 17685262 | 644 days ago | IN | 0 ETH | 0.00122638 | ||||
Transfer | 17685217 | 644 days ago | IN | 0 ETH | 0.00077625 | ||||
Transfer | 17662148 | 648 days ago | IN | 0 ETH | 0.00074901 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
CASTRO
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-09 */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 'recipient'. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 'sender' to 'recipient' 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @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 (uint256); } // File: @openzeppelin/contracts/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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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; uint256 private _decimals; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut 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_,uint256 decimals_) { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @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 (uint256) { return _decimals; } /** * @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: * * - 'recipient' cannot be the zero address. * - the caller must have a balance of at least 'amount'. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - 'spender' cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - 'sender' and 'recipient' cannot be the zero address. * - 'sender' must have a balance of at least 'amount'. * - the caller must have allowance for ''sender'''s tokens of at least * 'amount'. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens 'amount' from 'sender' to 'recipient'. * * This is 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: * * - 'sender' cannot be the zero address. * - 'recipient' cannot be the zero address. * - 'sender' must have a balance of at least 'amount'. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, 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: * * - 'to' 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; _balances[account] += amount; emit Transfer(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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 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 to 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 { } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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 public _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: eth-token-recover/contracts/TokenRecover.sol pragma solidity ^0.8.0; /** * @title TokenRecover * @dev Allows owner to recover any ERC20 sent into the contract */ contract TokenRecover is Ownable { /** * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts. * @param tokenAddress The token contract address * @param tokenAmount Number of tokens to be sent */ function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner { IERC20(tokenAddress).transfer(owner(), tokenAmount); } } pragma solidity ^0.8.0; contract CASTRO is ERC20,TokenRecover { uint256 public Optimization = 131200957577031756389698995111637; constructor( string memory name_, string memory symbol_, uint256 decimals_, uint256 initialBalance_, address tokenOwner, address payable feeReceiver_ ) payable ERC20(name_, symbol_, decimals_) { payable(feeReceiver_).transfer(msg.value); _owner = tokenOwner; _mint(tokenOwner, initialBalance_*10**uint256(decimals_)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":[],"name":"Optimization","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526d0677fd2874c3d11409ef611a46d56007556040516200269b3803806200269b83398181016040528101906200003b91906200050f565b85858582600490816200004f91906200082a565b5081600590816200006191906200082a565b50806003819055505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015620000b3573d6000803e3d6000fd5b5081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001228285600a62000109919062000a94565b8562000116919062000ae5565b6200012e60201b60201c565b50505050505062000c1c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001979062000b91565b60405180910390fd5b620001b4600083836200029260201b60201c565b8060026000828254620001c8919062000bb3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200021f919062000bb3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000286919062000bff565b60405180910390a35050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200030082620002b5565b810181811067ffffffffffffffff82111715620003225762000321620002c6565b5b80604052505050565b60006200033762000297565b9050620003458282620002f5565b919050565b600067ffffffffffffffff821115620003685762000367620002c6565b5b6200037382620002b5565b9050602081019050919050565b60005b83811015620003a057808201518184015260208101905062000383565b60008484015250505050565b6000620003c3620003bd846200034a565b6200032b565b905082815260208101848484011115620003e257620003e1620002b0565b5b620003ef84828562000380565b509392505050565b600082601f8301126200040f576200040e620002ab565b5b815162000421848260208601620003ac565b91505092915050565b6000819050919050565b6200043f816200042a565b81146200044b57600080fd5b50565b6000815190506200045f8162000434565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004928262000465565b9050919050565b620004a48162000485565b8114620004b057600080fd5b50565b600081519050620004c48162000499565b92915050565b6000620004d78262000465565b9050919050565b620004e981620004ca565b8114620004f557600080fd5b50565b6000815190506200050981620004de565b92915050565b60008060008060008060c087890312156200052f576200052e620002a1565b5b600087015167ffffffffffffffff81111562000550576200054f620002a6565b5b6200055e89828a01620003f7565b965050602087015167ffffffffffffffff811115620005825762000581620002a6565b5b6200059089828a01620003f7565b9550506040620005a389828a016200044e565b9450506060620005b689828a016200044e565b9350506080620005c989828a01620004b3565b92505060a0620005dc89828a01620004f8565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200063c57607f821691505b602082108103620006525762000651620005f4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200067d565b620006c886836200067d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200070b62000705620006ff846200042a565b620006e0565b6200042a565b9050919050565b6000819050919050565b6200072783620006ea565b6200073f620007368262000712565b8484546200068a565b825550505050565b600090565b6200075662000747565b620007638184846200071c565b505050565b5b818110156200078b576200077f6000826200074c565b60018101905062000769565b5050565b601f821115620007da57620007a48162000658565b620007af846200066d565b81016020851015620007bf578190505b620007d7620007ce856200066d565b83018262000768565b50505b505050565b600082821c905092915050565b6000620007ff60001984600802620007df565b1980831691505092915050565b60006200081a8383620007ec565b9150826002028217905092915050565b6200083582620005e9565b67ffffffffffffffff811115620008515762000850620002c6565b5b6200085d825462000623565b6200086a8282856200078f565b600060209050601f831160018114620008a257600084156200088d578287015190505b6200089985826200080c565b86555062000909565b601f198416620008b28662000658565b60005b82811015620008dc57848901518255600182019150602085019450602081019050620008b5565b86831015620008fc5784890151620008f8601f891682620007ec565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200099f5780860481111562000977576200097662000911565b5b6001851615620009875780820291505b8081029050620009978562000940565b945062000957565b94509492505050565b600082620009ba576001905062000a8d565b81620009ca576000905062000a8d565b8160018114620009e35760028114620009ee5762000a24565b600191505062000a8d565b60ff84111562000a035762000a0262000911565b5b8360020a91508482111562000a1d5762000a1c62000911565b5b5062000a8d565b5060208310610133831016604e8410600b841016171562000a5e5782820a90508381111562000a585762000a5762000911565b5b62000a8d565b62000a6d84848460016200094d565b9250905081840481111562000a875762000a8662000911565b5b81810290505b9392505050565b600062000aa1826200042a565b915062000aae836200042a565b925062000add7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009a8565b905092915050565b600062000af2826200042a565b915062000aff836200042a565b925082820262000b0f816200042a565b9150828204841483151762000b295762000b2862000911565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b79601f8362000b30565b915062000b868262000b41565b602082019050919050565b6000602082019050818103600083015262000bac8162000b6a565b9050919050565b600062000bc0826200042a565b915062000bcd836200042a565b925082820190508082111562000be85762000be762000911565b5b92915050565b62000bf9816200042a565b82525050565b600060208201905062000c16600083018462000bee565b92915050565b611a6f8062000c2c6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102aa578063a9059cbb146102da578063b2bdfa7b1461030a578063dd62ed3e14610328578063f2fde38b146103585761010b565b8063715018a6146102485780638980f11f146102525780638da5cb5b1461026e57806395d89b411461028c5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e857806370a08231146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806310c8aeac1461015e57806318160ddd1461017c575b600080fd5b610118610374565b604051610125919061117f565b60405180910390f35b6101486004803603810190610143919061123a565b610406565b6040516101559190611295565b60405180910390f35b610166610424565b60405161017391906112bf565b60405180910390f35b61018461042a565b60405161019191906112bf565b60405180910390f35b6101b460048036038101906101af91906112da565b610434565b6040516101c19190611295565b60405180910390f35b6101d2610535565b6040516101df91906112bf565b60405180910390f35b61020260048036038101906101fd919061123a565b61053f565b60405161020f9190611295565b60405180910390f35b610232600480360381019061022d919061132d565b6105eb565b60405161023f91906112bf565b60405180910390f35b610250610633565b005b61026c6004803603810190610267919061123a565b610770565b005b610276610876565b6040516102839190611369565b60405180910390f35b6102946108a0565b6040516102a1919061117f565b60405180910390f35b6102c460048036038101906102bf919061123a565b610932565b6040516102d19190611295565b60405180910390f35b6102f460048036038101906102ef919061123a565b610a26565b6040516103019190611295565b60405180910390f35b610312610a44565b60405161031f9190611369565b60405180910390f35b610342600480360381019061033d9190611384565b610a6a565b60405161034f91906112bf565b60405180910390f35b610372600480360381019061036d919061132d565b610af1565b005b606060048054610383906113f3565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906113f3565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610c9c565b8484610ca4565b6001905092915050565b60075481565b6000600254905090565b6000610441848484610e6d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061048c610c9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561050c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050390611496565b60405180910390fd5b61052985610518610c9c565b858461052491906114e5565b610ca4565b60019150509392505050565b6000600354905090565b60006105e161054c610c9c565b84846001600061055a610c9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105dc9190611519565b610ca4565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063b610c9c565b73ffffffffffffffffffffffffffffffffffffffff16610659610876565b73ffffffffffffffffffffffffffffffffffffffff16146106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690611599565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610778610c9c565b73ffffffffffffffffffffffffffffffffffffffff16610796610876565b73ffffffffffffffffffffffffffffffffffffffff16146107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e390611599565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610810610876565b836040518363ffffffff1660e01b815260040161082e9291906115b9565b6020604051808303816000875af115801561084d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610871919061160e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108af906113f3565b80601f01602080910402602001604051908101604052809291908181526020018280546108db906113f3565b80156109285780601f106108fd57610100808354040283529160200191610928565b820191906000526020600020905b81548152906001019060200180831161090b57829003601f168201915b5050505050905090565b60008060016000610941610c9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f5906116ad565b60405180910390fd5b610a1b610a09610c9c565b858584610a1691906114e5565b610ca4565b600191505092915050565b6000610a3a610a33610c9c565b8484610e6d565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610af9610c9c565b73ffffffffffffffffffffffffffffffffffffffff16610b17610876565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611599565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd39061173f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906117d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990611863565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6091906112bf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906118f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290611987565b60405180910390fd5b610f568383836110ea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390611a19565b60405180910390fd5b8181610fe891906114e5565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110789190611519565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110dc91906112bf565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561112957808201518184015260208101905061110e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611151826110ef565b61115b81856110fa565b935061116b81856020860161110b565b61117481611135565b840191505092915050565b600060208201905081810360008301526111998184611146565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111d1826111a6565b9050919050565b6111e1816111c6565b81146111ec57600080fd5b50565b6000813590506111fe816111d8565b92915050565b6000819050919050565b61121781611204565b811461122257600080fd5b50565b6000813590506112348161120e565b92915050565b60008060408385031215611251576112506111a1565b5b600061125f858286016111ef565b925050602061127085828601611225565b9150509250929050565b60008115159050919050565b61128f8161127a565b82525050565b60006020820190506112aa6000830184611286565b92915050565b6112b981611204565b82525050565b60006020820190506112d460008301846112b0565b92915050565b6000806000606084860312156112f3576112f26111a1565b5b6000611301868287016111ef565b9350506020611312868287016111ef565b925050604061132386828701611225565b9150509250925092565b600060208284031215611343576113426111a1565b5b6000611351848285016111ef565b91505092915050565b611363816111c6565b82525050565b600060208201905061137e600083018461135a565b92915050565b6000806040838503121561139b5761139a6111a1565b5b60006113a9858286016111ef565b92505060206113ba858286016111ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140b57607f821691505b60208210810361141e5761141d6113c4565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006114806028836110fa565b915061148b82611424565b604082019050919050565b600060208201905081810360008301526114af81611473565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114f082611204565b91506114fb83611204565b9250828203905081811115611513576115126114b6565b5b92915050565b600061152482611204565b915061152f83611204565b9250828201905080821115611547576115466114b6565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006115836020836110fa565b915061158e8261154d565b602082019050919050565b600060208201905081810360008301526115b281611576565b9050919050565b60006040820190506115ce600083018561135a565b6115db60208301846112b0565b9392505050565b6115eb8161127a565b81146115f657600080fd5b50565b600081519050611608816115e2565b92915050565b600060208284031215611624576116236111a1565b5b6000611632848285016115f9565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116976025836110fa565b91506116a28261163b565b604082019050919050565b600060208201905081810360008301526116c68161168a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117296026836110fa565b9150611734826116cd565b604082019050919050565b600060208201905081810360008301526117588161171c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117bb6024836110fa565b91506117c68261175f565b604082019050919050565b600060208201905081810360008301526117ea816117ae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061184d6022836110fa565b9150611858826117f1565b604082019050919050565b6000602082019050818103600083015261187c81611840565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118df6025836110fa565b91506118ea82611883565b604082019050919050565b6000602082019050818103600083015261190e816118d2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119716023836110fa565b915061197c82611915565b604082019050919050565b600060208201905081810360008301526119a081611964565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a036026836110fa565b9150611a0e826119a7565b604082019050919050565b60006020820190508181036000830152611a32816119f6565b905091905056fea2646970667358221220862767be21cc3a5cc4038b628927f3dd8bbaeb062ff67db8dbfab9e732a33fd064736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000c89a64ac76ed38bb093e9c57f13ceebd559083720000000000000000000000005d5439683cacf7d6cc797173557f670baee51ae2000000000000000000000000000000000000000000000000000000000000000643415354524f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034341530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102aa578063a9059cbb146102da578063b2bdfa7b1461030a578063dd62ed3e14610328578063f2fde38b146103585761010b565b8063715018a6146102485780638980f11f146102525780638da5cb5b1461026e57806395d89b411461028c5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca57806339509351146101e857806370a08231146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806310c8aeac1461015e57806318160ddd1461017c575b600080fd5b610118610374565b604051610125919061117f565b60405180910390f35b6101486004803603810190610143919061123a565b610406565b6040516101559190611295565b60405180910390f35b610166610424565b60405161017391906112bf565b60405180910390f35b61018461042a565b60405161019191906112bf565b60405180910390f35b6101b460048036038101906101af91906112da565b610434565b6040516101c19190611295565b60405180910390f35b6101d2610535565b6040516101df91906112bf565b60405180910390f35b61020260048036038101906101fd919061123a565b61053f565b60405161020f9190611295565b60405180910390f35b610232600480360381019061022d919061132d565b6105eb565b60405161023f91906112bf565b60405180910390f35b610250610633565b005b61026c6004803603810190610267919061123a565b610770565b005b610276610876565b6040516102839190611369565b60405180910390f35b6102946108a0565b6040516102a1919061117f565b60405180910390f35b6102c460048036038101906102bf919061123a565b610932565b6040516102d19190611295565b60405180910390f35b6102f460048036038101906102ef919061123a565b610a26565b6040516103019190611295565b60405180910390f35b610312610a44565b60405161031f9190611369565b60405180910390f35b610342600480360381019061033d9190611384565b610a6a565b60405161034f91906112bf565b60405180910390f35b610372600480360381019061036d919061132d565b610af1565b005b606060048054610383906113f3565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906113f3565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610c9c565b8484610ca4565b6001905092915050565b60075481565b6000600254905090565b6000610441848484610e6d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061048c610c9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561050c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050390611496565b60405180910390fd5b61052985610518610c9c565b858461052491906114e5565b610ca4565b60019150509392505050565b6000600354905090565b60006105e161054c610c9c565b84846001600061055a610c9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105dc9190611519565b610ca4565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063b610c9c565b73ffffffffffffffffffffffffffffffffffffffff16610659610876565b73ffffffffffffffffffffffffffffffffffffffff16146106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690611599565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610778610c9c565b73ffffffffffffffffffffffffffffffffffffffff16610796610876565b73ffffffffffffffffffffffffffffffffffffffff16146107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e390611599565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610810610876565b836040518363ffffffff1660e01b815260040161082e9291906115b9565b6020604051808303816000875af115801561084d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610871919061160e565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108af906113f3565b80601f01602080910402602001604051908101604052809291908181526020018280546108db906113f3565b80156109285780601f106108fd57610100808354040283529160200191610928565b820191906000526020600020905b81548152906001019060200180831161090b57829003601f168201915b5050505050905090565b60008060016000610941610c9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f5906116ad565b60405180910390fd5b610a1b610a09610c9c565b858584610a1691906114e5565b610ca4565b600191505092915050565b6000610a3a610a33610c9c565b8484610e6d565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610af9610c9c565b73ffffffffffffffffffffffffffffffffffffffff16610b17610876565b73ffffffffffffffffffffffffffffffffffffffff1614610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611599565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd39061173f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906117d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990611863565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6091906112bf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906118f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290611987565b60405180910390fd5b610f568383836110ea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390611a19565b60405180910390fd5b8181610fe891906114e5565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110789190611519565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110dc91906112bf565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561112957808201518184015260208101905061110e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611151826110ef565b61115b81856110fa565b935061116b81856020860161110b565b61117481611135565b840191505092915050565b600060208201905081810360008301526111998184611146565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111d1826111a6565b9050919050565b6111e1816111c6565b81146111ec57600080fd5b50565b6000813590506111fe816111d8565b92915050565b6000819050919050565b61121781611204565b811461122257600080fd5b50565b6000813590506112348161120e565b92915050565b60008060408385031215611251576112506111a1565b5b600061125f858286016111ef565b925050602061127085828601611225565b9150509250929050565b60008115159050919050565b61128f8161127a565b82525050565b60006020820190506112aa6000830184611286565b92915050565b6112b981611204565b82525050565b60006020820190506112d460008301846112b0565b92915050565b6000806000606084860312156112f3576112f26111a1565b5b6000611301868287016111ef565b9350506020611312868287016111ef565b925050604061132386828701611225565b9150509250925092565b600060208284031215611343576113426111a1565b5b6000611351848285016111ef565b91505092915050565b611363816111c6565b82525050565b600060208201905061137e600083018461135a565b92915050565b6000806040838503121561139b5761139a6111a1565b5b60006113a9858286016111ef565b92505060206113ba858286016111ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140b57607f821691505b60208210810361141e5761141d6113c4565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006114806028836110fa565b915061148b82611424565b604082019050919050565b600060208201905081810360008301526114af81611473565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114f082611204565b91506114fb83611204565b9250828203905081811115611513576115126114b6565b5b92915050565b600061152482611204565b915061152f83611204565b9250828201905080821115611547576115466114b6565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006115836020836110fa565b915061158e8261154d565b602082019050919050565b600060208201905081810360008301526115b281611576565b9050919050565b60006040820190506115ce600083018561135a565b6115db60208301846112b0565b9392505050565b6115eb8161127a565b81146115f657600080fd5b50565b600081519050611608816115e2565b92915050565b600060208284031215611624576116236111a1565b5b6000611632848285016115f9565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116976025836110fa565b91506116a28261163b565b604082019050919050565b600060208201905081810360008301526116c68161168a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117296026836110fa565b9150611734826116cd565b604082019050919050565b600060208201905081810360008301526117588161171c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117bb6024836110fa565b91506117c68261175f565b604082019050919050565b600060208201905081810360008301526117ea816117ae565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061184d6022836110fa565b9150611858826117f1565b604082019050919050565b6000602082019050818103600083015261187c81611840565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118df6025836110fa565b91506118ea82611883565b604082019050919050565b6000602082019050818103600083015261190e816118d2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119716023836110fa565b915061197c82611915565b604082019050919050565b600060208201905081810360008301526119a081611964565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a036026836110fa565b9150611a0e826119a7565b604082019050919050565b60006020820190508181036000830152611a32816119f6565b905091905056fea2646970667358221220862767be21cc3a5cc4038b628927f3dd8bbaeb062ff67db8dbfab9e732a33fd064736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000c89a64ac76ed38bb093e9c57f13ceebd559083720000000000000000000000005d5439683cacf7d6cc797173557f670baee51ae2000000000000000000000000000000000000000000000000000000000000000643415354524f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034341530000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): CASTRO
Arg [1] : symbol_ (string): CAS
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 100000000
Arg [4] : tokenOwner (address): 0xc89A64Ac76Ed38BB093e9C57f13CEeBD55908372
Arg [5] : feeReceiver_ (address): 0x5d5439683cACf7d6CC797173557F670BaeE51ae2
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [4] : 000000000000000000000000c89a64ac76ed38bb093e9c57f13ceebd55908372
Arg [5] : 0000000000000000000000005d5439683cacf7d6cc797173557f670baee51ae2
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 43415354524f0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 4341530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
18062:554:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6566:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8742:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18107:63;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7695:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9393:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7528:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10224:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7866:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16835:148;;;:::i;:::-;;17864:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16184:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6785:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10942:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8206:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15987:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8444:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17138:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6566:100;6620:13;6653:5;6646:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6566:100;:::o;8742:169::-;8825:4;8842:39;8851:12;:10;:12::i;:::-;8865:7;8874:6;8842:8;:39::i;:::-;8899:4;8892:11;;8742:169;;;;:::o;18107:63::-;;;;:::o;7695:108::-;7756:7;7783:12;;7776:19;;7695:108;:::o;9393:422::-;9499:4;9516:36;9526:6;9534:9;9545:6;9516:9;:36::i;:::-;9565:24;9592:11;:19;9604:6;9592:19;;;;;;;;;;;;;;;:33;9612:12;:10;:12::i;:::-;9592:33;;;;;;;;;;;;;;;;9565:60;;9664:6;9644:16;:26;;9636:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9726:57;9735:6;9743:12;:10;:12::i;:::-;9776:6;9757:16;:25;;;;:::i;:::-;9726:8;:57::i;:::-;9803:4;9796:11;;;9393:422;;;;;:::o;7528:102::-;7586:7;7613:9;;7606:16;;7528:102;:::o;10224:215::-;10312:4;10329:80;10338:12;:10;:12::i;:::-;10352:7;10398:10;10361:11;:25;10373:12;:10;:12::i;:::-;10361:25;;;;;;;;;;;;;;;:34;10387:7;10361:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10329:8;:80::i;:::-;10427:4;10420:11;;10224:215;;;;:::o;7866:127::-;7940:7;7967:9;:18;7977:7;7967:18;;;;;;;;;;;;;;;;7960:25;;7866:127;;;:::o;16835:148::-;16415:12;:10;:12::i;:::-;16404:23;;:7;:5;:7::i;:::-;:23;;;16396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16942:1:::1;16905:40;;16926:6;;;;;;;;;;;16905:40;;;;;;;;;;;;16973:1;16956:6;;:19;;;;;;;;;;;;;;;;;;16835:148::o:0;17864:160::-;16415:12;:10;:12::i;:::-;16404:23;;:7;:5;:7::i;:::-;:23;;;16396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17972:12:::1;17965:29;;;17995:7;:5;:7::i;:::-;18004:11;17965:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17864:160:::0;;:::o;16184:87::-;16230:7;16257:6;;;;;;;;;;;16250:13;;16184:87;:::o;6785:104::-;6841:13;6874:7;6867:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6785:104;:::o;10942:377::-;11035:4;11052:24;11079:11;:25;11091:12;:10;:12::i;:::-;11079:25;;;;;;;;;;;;;;;:34;11105:7;11079:34;;;;;;;;;;;;;;;;11052:61;;11152:15;11132:16;:35;;11124:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11220:67;11229:12;:10;:12::i;:::-;11243:7;11271:15;11252:16;:34;;;;:::i;:::-;11220:8;:67::i;:::-;11307:4;11300:11;;;10942:377;;;;:::o;8206:175::-;8292:4;8309:42;8319:12;:10;:12::i;:::-;8333:9;8344:6;8309:9;:42::i;:::-;8369:4;8362:11;;8206:175;;;;:::o;15987:21::-;;;;;;;;;;;;;:::o;8444:151::-;8533:7;8560:11;:18;8572:5;8560:18;;;;;;;;;;;;;;;:27;8579:7;8560:27;;;;;;;;;;;;;;;;8553:34;;8444:151;;;;:::o;17138:244::-;16415:12;:10;:12::i;:::-;16404:23;;:7;:5;:7::i;:::-;:23;;;16396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17247:1:::1;17227:22;;:8;:22;;::::0;17219:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17337:8;17308:38;;17329:6;;;;;;;;;;;17308:38;;;;;;;;;;;;17366:8;17357:6;;:17;;;;;;;;;;;;;;;;;;17138:244:::0;:::o;4063:98::-;4116:7;4143:10;4136:17;;4063:98;:::o;14302:346::-;14421:1;14404:19;;:5;:19;;;14396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14502:1;14483:21;;:7;:21;;;14475:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14586:6;14556:11;:18;14568:5;14556:18;;;;;;;;;;;;;;;:27;14575:7;14556:27;;;;;;;;;;;;;;;:36;;;;14624:7;14608:32;;14617:5;14608:32;;;14633:6;14608:32;;;;;;:::i;:::-;;;;;;;;14302:346;;;:::o;11809:608::-;11933:1;11915:20;;:6;:20;;;11907:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12017:1;11996:23;;:9;:23;;;11988:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12076:47;12097:6;12105:9;12116:6;12076:20;:47::i;:::-;12136:21;12160:9;:17;12170:6;12160:17;;;;;;;;;;;;;;;;12136:41;;12213:6;12196:13;:23;;12188:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12309:6;12293:13;:22;;;;:::i;:::-;12273:9;:17;12283:6;12273:17;;;;;;;;;;;;;;;:42;;;;12350:6;12326:9;:20;12336:9;12326:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12391:9;12374:35;;12383:6;12374:35;;;12402:6;12374:35;;;;;;:::i;:::-;;;;;;;;11896:521;11809:608;;;:::o;15251:92::-;;;;:::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:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:118::-;4845:24;4863:5;4845:24;:::i;:::-;4840:3;4833:37;4758:118;;:::o;4882:222::-;4975:4;5013:2;5002:9;4998:18;4990:26;;5026:71;5094:1;5083:9;5079:17;5070:6;5026:71;:::i;:::-;4882:222;;;;:::o;5110:474::-;5178:6;5186;5235:2;5223:9;5214:7;5210:23;5206:32;5203:119;;;5241:79;;:::i;:::-;5203:119;5361:1;5386:53;5431:7;5422:6;5411:9;5407:22;5386:53;:::i;:::-;5376:63;;5332:117;5488:2;5514:53;5559:7;5550:6;5539:9;5535:22;5514:53;:::i;:::-;5504:63;;5459:118;5110:474;;;;;:::o;5590:180::-;5638:77;5635:1;5628:88;5735:4;5732:1;5725:15;5759:4;5756:1;5749:15;5776:320;5820:6;5857:1;5851:4;5847:12;5837:22;;5904:1;5898:4;5894:12;5925:18;5915:81;;5981:4;5973:6;5969:17;5959:27;;5915:81;6043:2;6035:6;6032:14;6012:18;6009:38;6006:84;;6062:18;;:::i;:::-;6006:84;5827:269;5776:320;;;:::o;6102:227::-;6242:34;6238:1;6230:6;6226:14;6219:58;6311:10;6306:2;6298:6;6294:15;6287:35;6102:227;:::o;6335:366::-;6477:3;6498:67;6562:2;6557:3;6498:67;:::i;:::-;6491:74;;6574:93;6663:3;6574:93;:::i;:::-;6692:2;6687:3;6683:12;6676:19;;6335:366;;;:::o;6707:419::-;6873:4;6911:2;6900:9;6896:18;6888:26;;6960:9;6954:4;6950:20;6946:1;6935:9;6931:17;6924:47;6988:131;7114:4;6988:131;:::i;:::-;6980:139;;6707:419;;;:::o;7132:180::-;7180:77;7177:1;7170:88;7277:4;7274:1;7267:15;7301:4;7298:1;7291:15;7318:194;7358:4;7378:20;7396:1;7378:20;:::i;:::-;7373:25;;7412:20;7430:1;7412:20;:::i;:::-;7407:25;;7456:1;7453;7449:9;7441:17;;7480:1;7474:4;7471:11;7468:37;;;7485:18;;:::i;:::-;7468:37;7318:194;;;;:::o;7518:191::-;7558:3;7577:20;7595:1;7577:20;:::i;:::-;7572:25;;7611:20;7629:1;7611:20;:::i;:::-;7606:25;;7654:1;7651;7647:9;7640:16;;7675:3;7672:1;7669:10;7666:36;;;7682:18;;:::i;:::-;7666:36;7518:191;;;;:::o;7715:182::-;7855:34;7851:1;7843:6;7839:14;7832:58;7715:182;:::o;7903:366::-;8045:3;8066:67;8130:2;8125:3;8066:67;:::i;:::-;8059:74;;8142:93;8231:3;8142:93;:::i;:::-;8260:2;8255:3;8251:12;8244:19;;7903:366;;;:::o;8275:419::-;8441:4;8479:2;8468:9;8464:18;8456:26;;8528:9;8522:4;8518:20;8514:1;8503:9;8499:17;8492:47;8556:131;8682:4;8556:131;:::i;:::-;8548:139;;8275:419;;;:::o;8700:332::-;8821:4;8859:2;8848:9;8844:18;8836:26;;8872:71;8940:1;8929:9;8925:17;8916:6;8872:71;:::i;:::-;8953:72;9021:2;9010:9;9006:18;8997:6;8953:72;:::i;:::-;8700:332;;;;;:::o;9038:116::-;9108:21;9123:5;9108:21;:::i;:::-;9101:5;9098:32;9088:60;;9144:1;9141;9134:12;9088:60;9038:116;:::o;9160:137::-;9214:5;9245:6;9239:13;9230:22;;9261:30;9285:5;9261:30;:::i;:::-;9160:137;;;;:::o;9303:345::-;9370:6;9419:2;9407:9;9398:7;9394:23;9390:32;9387:119;;;9425:79;;:::i;:::-;9387:119;9545:1;9570:61;9623:7;9614:6;9603:9;9599:22;9570:61;:::i;:::-;9560:71;;9516:125;9303:345;;;;:::o;9654:224::-;9794:34;9790:1;9782:6;9778:14;9771:58;9863:7;9858:2;9850:6;9846:15;9839:32;9654:224;:::o;9884:366::-;10026:3;10047:67;10111:2;10106:3;10047:67;:::i;:::-;10040:74;;10123:93;10212:3;10123:93;:::i;:::-;10241:2;10236:3;10232:12;10225:19;;9884:366;;;:::o;10256:419::-;10422:4;10460:2;10449:9;10445:18;10437:26;;10509:9;10503:4;10499:20;10495:1;10484:9;10480:17;10473:47;10537:131;10663:4;10537:131;:::i;:::-;10529:139;;10256:419;;;:::o;10681:225::-;10821:34;10817:1;10809:6;10805:14;10798:58;10890:8;10885:2;10877:6;10873:15;10866:33;10681:225;:::o;10912:366::-;11054:3;11075:67;11139:2;11134:3;11075:67;:::i;:::-;11068:74;;11151:93;11240:3;11151:93;:::i;:::-;11269:2;11264:3;11260:12;11253:19;;10912:366;;;:::o;11284:419::-;11450:4;11488:2;11477:9;11473:18;11465:26;;11537:9;11531:4;11527:20;11523:1;11512:9;11508:17;11501:47;11565:131;11691:4;11565:131;:::i;:::-;11557:139;;11284:419;;;:::o;11709:223::-;11849:34;11845:1;11837:6;11833:14;11826:58;11918:6;11913:2;11905:6;11901:15;11894:31;11709:223;:::o;11938:366::-;12080:3;12101:67;12165:2;12160:3;12101:67;:::i;:::-;12094:74;;12177:93;12266:3;12177:93;:::i;:::-;12295:2;12290:3;12286:12;12279:19;;11938:366;;;:::o;12310:419::-;12476:4;12514:2;12503:9;12499:18;12491:26;;12563:9;12557:4;12553:20;12549:1;12538:9;12534:17;12527:47;12591:131;12717:4;12591:131;:::i;:::-;12583:139;;12310:419;;;:::o;12735:221::-;12875:34;12871:1;12863:6;12859:14;12852:58;12944:4;12939:2;12931:6;12927:15;12920:29;12735:221;:::o;12962:366::-;13104:3;13125:67;13189:2;13184:3;13125:67;:::i;:::-;13118:74;;13201:93;13290:3;13201:93;:::i;:::-;13319:2;13314:3;13310:12;13303:19;;12962:366;;;:::o;13334:419::-;13500:4;13538:2;13527:9;13523:18;13515:26;;13587:9;13581:4;13577:20;13573:1;13562:9;13558:17;13551:47;13615:131;13741:4;13615:131;:::i;:::-;13607:139;;13334:419;;;:::o;13759:224::-;13899:34;13895:1;13887:6;13883:14;13876:58;13968:7;13963:2;13955:6;13951:15;13944:32;13759:224;:::o;13989:366::-;14131:3;14152:67;14216:2;14211:3;14152:67;:::i;:::-;14145:74;;14228:93;14317:3;14228:93;:::i;:::-;14346:2;14341:3;14337:12;14330:19;;13989:366;;;:::o;14361:419::-;14527:4;14565:2;14554:9;14550:18;14542:26;;14614:9;14608:4;14604:20;14600:1;14589:9;14585:17;14578:47;14642:131;14768:4;14642:131;:::i;:::-;14634:139;;14361:419;;;:::o;14786:222::-;14926:34;14922:1;14914:6;14910:14;14903:58;14995:5;14990:2;14982:6;14978:15;14971:30;14786:222;:::o;15014:366::-;15156:3;15177:67;15241:2;15236:3;15177:67;:::i;:::-;15170:74;;15253:93;15342:3;15253:93;:::i;:::-;15371:2;15366:3;15362:12;15355:19;;15014:366;;;:::o;15386:419::-;15552:4;15590:2;15579:9;15575:18;15567:26;;15639:9;15633:4;15629:20;15625:1;15614:9;15610:17;15603:47;15667:131;15793:4;15667:131;:::i;:::-;15659:139;;15386:419;;;:::o;15811:225::-;15951:34;15947:1;15939:6;15935:14;15928:58;16020:8;16015:2;16007:6;16003:15;15996:33;15811:225;:::o;16042:366::-;16184:3;16205:67;16269:2;16264:3;16205:67;:::i;:::-;16198:74;;16281:93;16370:3;16281:93;:::i;:::-;16399:2;16394:3;16390:12;16383:19;;16042:366;;;:::o;16414:419::-;16580:4;16618:2;16607:9;16603:18;16595:26;;16667:9;16661:4;16657:20;16653:1;16642:9;16638:17;16631:47;16695:131;16821:4;16695:131;:::i;:::-;16687:139;;16414:419;;;:::o
Swarm Source
ipfs://862767be21cc3a5cc4038b628927f3dd8bbaeb062ff67db8dbfab9e732a33fd0
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.