Overview
Max Total Supply
499,716,666,666,667 DOGL
Holders
1,216 ( 0.082%)
Market
Price
$0.00 @ 0.000000 ETH (+3.45%)
Onchain Market Cap
$95,732,220.98
Circulating Supply Market Cap
$392,324.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
122,303,748 DOGLValue
$23.43 ( ~0.00722423531532379 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; /** * @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); } /** * @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); } /** * @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; } } /** * @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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 Token is Context, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private constant _decimals = 18; uint256 public constant hardCap = 500_000_000_000_000 * (10 ** _decimals); /** * @dev Contract constructor. */ constructor() { _name = 'DogLibre'; _symbol = 'DOGL'; _mint(0xE51E26A25335B16a6d2B11BF2E5Eb8c72915f001, hardCap); } /** * @dev Returns the name of the token. * @return The name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token. * @return The symbol of the token. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used for token display. * @return The number of decimals. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Returns the total supply of the token. * @return The total supply. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the balance of the specified account. * @param account The address to check the balance for. * @return The balance of the account. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Transfers tokens from the caller to a specified recipient. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner. * @param from The address that approves the spending. * @param to The address that is allowed to spend. * @return The remaining allowance for the spender. */ function allowance(address from, address to) public view virtual override returns (uint256) { return _allowances[from][to]; } /** * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller. * @param to The address to approve the spending for. * @param amount The amount of tokens to approve. * @return A boolean value indicating whether the approval was successful. */ function approve(address to, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), to, amount); return true; } /** * @dev Transfers tokens from one address to another. * @param sender The address to transfer tokens from. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ 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'); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller. * @param to The address to increase the allowance for. * @param addedValue The amount of tokens to increase the allowance by. * @return A boolean value indicating whether the increase was successful. */ function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue); return true; } /** * @dev Decreases the allowance granted by the owner of the tokens to `to` account. * @param to The account allowed to spend the tokens. * @param subtractedValue The amount of tokens to decrease the allowance by. * @return A boolean value indicating whether the operation succeeded. */ function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][to]; require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero'); unchecked { _approve(_msgSender(), to, currentAllowance - subtractedValue); } return true; } /** * @dev Transfers `amount` tokens from `sender` to `recipient`. * @param sender The account to transfer tokens from. * @param recipient The account to transfer tokens to. * @param amount The amount of tokens to transfer. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(amount > 0, 'ERC20: transfer amount zero'); require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance'); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** * @dev Creates `amount` tokens and assigns them to `account`. * @param account The account to assign the newly created tokens to. * @param amount The amount of tokens to create. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: mint to the zero address'); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the total supply. * @param account The account to burn tokens from. * @param amount The amount of tokens to burn. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: burn from the zero address'); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, 'ERC20: burn amount exceeds balance'); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Destroys `amount` tokens from the caller's account, reducing the total supply. * @param amount The amount of tokens to burn. */ function burn(uint256 amount) external { _burn(_msgSender(), amount); } /** * @dev Sets `amount` as the allowance of `to` over the caller's tokens. * @param from The account granting the allowance. * @param to The account allowed to spend the tokens. * @param amount The amount of tokens to allow. */ function _approve(address from, address to, uint256 amount) internal virtual { require(from != address(0), 'ERC20: approve from the zero address'); require(to != address(0), 'ERC20: approve to the zero address'); _allowances[from][to] = amount; emit Approval(from, to, amount); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5062000032620000266200011d60201b60201c565b6200012560201b60201c565b6040518060400160405280600881526020017f446f674c69627265000000000000000000000000000000000000000000000000815250600490805190602001906200007f9291906200033b565b506040518060400160405280600481526020017f444f474c0000000000000000000000000000000000000000000000000000000081525060059080519060200190620000cd9291906200033b565b506200011773e51e26a25335b16a6d2b11bf2e5eb8c72915f0016012600a620000f7919062000585565b6601c6bf526340006200010b9190620005d6565b620001e960201b60201c565b620007aa565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200025c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002539062000698565b60405180910390fd5b8060036000828254620002709190620006ba565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c89190620006ba565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032f919062000728565b60405180910390a35050565b828054620003499062000774565b90600052602060002090601f0160209004810192826200036d5760008555620003b9565b82601f106200038857805160ff1916838001178555620003b9565b82800160010185558215620003b9579182015b82811115620003b85782518255916020019190600101906200039b565b5b509050620003c89190620003cc565b5090565b5b80821115620003e7576000816000905550600101620003cd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200047957808604811115620004515762000450620003eb565b5b6001851615620004615780820291505b808102905062000471856200041a565b945062000431565b94509492505050565b60008262000494576001905062000567565b81620004a4576000905062000567565b8160018114620004bd5760028114620004c857620004fe565b600191505062000567565b60ff841115620004dd57620004dc620003eb565b5b8360020a915084821115620004f757620004f6620003eb565b5b5062000567565b5060208310610133831016604e8410600b8410161715620005385782820a905083811115620005325762000531620003eb565b5b62000567565b62000547848484600162000427565b92509050818404811115620005615762000560620003eb565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000592826200056e565b91506200059f8362000578565b9250620005ce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000482565b905092915050565b6000620005e3826200056e565b9150620005f0836200056e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200062c576200062b620003eb565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000680601f8362000637565b91506200068d8262000648565b602082019050919050565b60006020820190508181036000830152620006b38162000671565b9050919050565b6000620006c7826200056e565b9150620006d4836200056e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200070c576200070b620003eb565b5b828201905092915050565b62000722816200056e565b82525050565b60006020820190506200073f600083018462000717565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200078d57607f821691505b60208210811415620007a457620007a362000745565b5b50919050565b611d9280620007ba6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b1578063dd62ed3e146102e1578063f2fde38b14610311578063fb86a4041461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a9190611135565b60405180910390f35b61013d600480360381019061013891906111f0565b6103dd565b60405161014a919061124b565b60405180910390f35b61015b6103fb565b6040516101689190611275565b60405180910390f35b61018b60048036038101906101869190611290565b610405565b604051610198919061124b565b60405180910390f35b6101a96104fd565b6040516101b691906112ff565b60405180910390f35b6101d960048036038101906101d491906111f0565b610506565b6040516101e6919061124b565b60405180910390f35b6102096004803603810190610204919061131a565b6105b2565b005b61022560048036038101906102209190611347565b6105c6565b6040516102329190611275565b60405180910390f35b61024361060f565b005b61024d610623565b60405161025a9190611383565b60405180910390f35b61026b61064c565b6040516102789190611135565b60405180910390f35b61029b600480360381019061029691906111f0565b6106de565b6040516102a8919061124b565b60405180910390f35b6102cb60048036038101906102c691906111f0565b6107c9565b6040516102d8919061124b565b60405180910390f35b6102fb60048036038101906102f6919061139e565b6107e7565b6040516103089190611275565b60405180910390f35b61032b60048036038101906103269190611347565b61086e565b005b6103356108f2565b6040516103429190611275565b60405180910390f35b60606004805461035a9061140d565b80601f01602080910402602001604051908101604052809291908181526020018280546103869061140d565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610915565b848461091d565b6001905092915050565b6000600354905090565b6000610412848484610ae8565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610915565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d4906114b1565b60405180910390fd5b6104f1856104e9610915565b85840361091d565b60019150509392505050565b60006012905090565b60006105a8610513610915565b848460026000610521610915565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a39190611500565b61091d565b6001905092915050565b6105c36105bd610915565b82610d99565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610617610f5a565b6106216000610fd8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461065b9061140d565b80601f01602080910402602001604051908101604052809291908181526020018280546106879061140d565b80156106d45780601f106106a9576101008083540402835291602001916106d4565b820191906000526020600020905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b600080600260006106ed610915565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a1906115c8565b60405180910390fd5b6107be6107b5610915565b8585840361091d565b600191505092915050565b60006107dd6107d6610915565b8484610ae8565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610876610f5a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd9061165a565b60405180910390fd5b6108ef81610fd8565b50565b6012600a61090091906117ad565b6601c6bf5263400061091291906117f8565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906118c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490611956565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610adb9190611275565b60405180910390a3505050565b60008111610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b22906119c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290611a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290611ae6565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990611b78565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d279190611500565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8b9190611275565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611c0a565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790611c9c565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610ee89190611cbc565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f4d9190611275565b60405180910390a3505050565b610f62610915565b73ffffffffffffffffffffffffffffffffffffffff16610f80610623565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90611d3c565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110d65780820151818401526020810190506110bb565b838111156110e5576000848401525b50505050565b6000601f19601f8301169050919050565b60006111078261109c565b61111181856110a7565b93506111218185602086016110b8565b61112a816110eb565b840191505092915050565b6000602082019050818103600083015261114f81846110fc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111878261115c565b9050919050565b6111978161117c565b81146111a257600080fd5b50565b6000813590506111b48161118e565b92915050565b6000819050919050565b6111cd816111ba565b81146111d857600080fd5b50565b6000813590506111ea816111c4565b92915050565b6000806040838503121561120757611206611157565b5b6000611215858286016111a5565b9250506020611226858286016111db565b9150509250929050565b60008115159050919050565b61124581611230565b82525050565b6000602082019050611260600083018461123c565b92915050565b61126f816111ba565b82525050565b600060208201905061128a6000830184611266565b92915050565b6000806000606084860312156112a9576112a8611157565b5b60006112b7868287016111a5565b93505060206112c8868287016111a5565b92505060406112d9868287016111db565b9150509250925092565b600060ff82169050919050565b6112f9816112e3565b82525050565b600060208201905061131460008301846112f0565b92915050565b6000602082840312156113305761132f611157565b5b600061133e848285016111db565b91505092915050565b60006020828403121561135d5761135c611157565b5b600061136b848285016111a5565b91505092915050565b61137d8161117c565b82525050565b60006020820190506113986000830184611374565b92915050565b600080604083850312156113b5576113b4611157565b5b60006113c3858286016111a5565b92505060206113d4858286016111a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061142557607f821691505b60208210811415611439576114386113de565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061149b6028836110a7565b91506114a68261143f565b604082019050919050565b600060208201905081810360008301526114ca8161148e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061150b826111ba565b9150611516836111ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561154b5761154a6114d1565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115b26025836110a7565b91506115bd82611556565b604082019050919050565b600060208201905081810360008301526115e1816115a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116446026836110a7565b915061164f826115e8565b604082019050919050565b6000602082019050818103600083015261167381611637565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156116d1578086048111156116ad576116ac6114d1565b5b60018516156116bc5780820291505b80810290506116ca8561167a565b9450611691565b94509492505050565b6000826116ea57600190506117a6565b816116f857600090506117a6565b816001811461170e576002811461171857611747565b60019150506117a6565b60ff84111561172a576117296114d1565b5b8360020a915084821115611741576117406114d1565b5b506117a6565b5060208310610133831016604e8410600b841016171561177c5782820a905083811115611777576117766114d1565b5b6117a6565b6117898484846001611687565b925090508184048111156117a05761179f6114d1565b5b81810290505b9392505050565b60006117b8826111ba565b91506117c3836112e3565b92506117f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846116da565b905092915050565b6000611803826111ba565b915061180e836111ba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611847576118466114d1565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118ae6024836110a7565b91506118b982611852565b604082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119406022836110a7565b915061194b826118e4565b604082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b60006119ac601b836110a7565b91506119b782611976565b602082019050919050565b600060208201905081810360008301526119db8161199f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a3e6025836110a7565b9150611a49826119e2565b604082019050919050565b60006020820190508181036000830152611a6d81611a31565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ad06023836110a7565b9150611adb82611a74565b604082019050919050565b60006020820190508181036000830152611aff81611ac3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b626026836110a7565b9150611b6d82611b06565b604082019050919050565b60006020820190508181036000830152611b9181611b55565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf46021836110a7565b9150611bff82611b98565b604082019050919050565b60006020820190508181036000830152611c2381611be7565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c866022836110a7565b9150611c9182611c2a565b604082019050919050565b60006020820190508181036000830152611cb581611c79565b9050919050565b6000611cc7826111ba565b9150611cd2836111ba565b925082821015611ce557611ce46114d1565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d266020836110a7565b9150611d3182611cf0565b602082019050919050565b60006020820190508181036000830152611d5581611d19565b905091905056fea26469706673582212208af24990846c81c4333fda014d882b2b06e7a359ebd66c285ceab58f93bf800164736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b1578063dd62ed3e146102e1578063f2fde38b14610311578063fb86a4041461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a9190611135565b60405180910390f35b61013d600480360381019061013891906111f0565b6103dd565b60405161014a919061124b565b60405180910390f35b61015b6103fb565b6040516101689190611275565b60405180910390f35b61018b60048036038101906101869190611290565b610405565b604051610198919061124b565b60405180910390f35b6101a96104fd565b6040516101b691906112ff565b60405180910390f35b6101d960048036038101906101d491906111f0565b610506565b6040516101e6919061124b565b60405180910390f35b6102096004803603810190610204919061131a565b6105b2565b005b61022560048036038101906102209190611347565b6105c6565b6040516102329190611275565b60405180910390f35b61024361060f565b005b61024d610623565b60405161025a9190611383565b60405180910390f35b61026b61064c565b6040516102789190611135565b60405180910390f35b61029b600480360381019061029691906111f0565b6106de565b6040516102a8919061124b565b60405180910390f35b6102cb60048036038101906102c691906111f0565b6107c9565b6040516102d8919061124b565b60405180910390f35b6102fb60048036038101906102f6919061139e565b6107e7565b6040516103089190611275565b60405180910390f35b61032b60048036038101906103269190611347565b61086e565b005b6103356108f2565b6040516103429190611275565b60405180910390f35b60606004805461035a9061140d565b80601f01602080910402602001604051908101604052809291908181526020018280546103869061140d565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610915565b848461091d565b6001905092915050565b6000600354905090565b6000610412848484610ae8565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610915565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d4906114b1565b60405180910390fd5b6104f1856104e9610915565b85840361091d565b60019150509392505050565b60006012905090565b60006105a8610513610915565b848460026000610521610915565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a39190611500565b61091d565b6001905092915050565b6105c36105bd610915565b82610d99565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610617610f5a565b6106216000610fd8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461065b9061140d565b80601f01602080910402602001604051908101604052809291908181526020018280546106879061140d565b80156106d45780601f106106a9576101008083540402835291602001916106d4565b820191906000526020600020905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b600080600260006106ed610915565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a1906115c8565b60405180910390fd5b6107be6107b5610915565b8585840361091d565b600191505092915050565b60006107dd6107d6610915565b8484610ae8565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610876610f5a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd9061165a565b60405180910390fd5b6108ef81610fd8565b50565b6012600a61090091906117ad565b6601c6bf5263400061091291906117f8565b81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906118c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490611956565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610adb9190611275565b60405180910390a3505050565b60008111610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b22906119c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290611a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290611ae6565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990611b78565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d279190611500565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8b9190611275565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090611c0a565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790611c9c565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610ee89190611cbc565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f4d9190611275565b60405180910390a3505050565b610f62610915565b73ffffffffffffffffffffffffffffffffffffffff16610f80610623565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90611d3c565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110d65780820151818401526020810190506110bb565b838111156110e5576000848401525b50505050565b6000601f19601f8301169050919050565b60006111078261109c565b61111181856110a7565b93506111218185602086016110b8565b61112a816110eb565b840191505092915050565b6000602082019050818103600083015261114f81846110fc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111878261115c565b9050919050565b6111978161117c565b81146111a257600080fd5b50565b6000813590506111b48161118e565b92915050565b6000819050919050565b6111cd816111ba565b81146111d857600080fd5b50565b6000813590506111ea816111c4565b92915050565b6000806040838503121561120757611206611157565b5b6000611215858286016111a5565b9250506020611226858286016111db565b9150509250929050565b60008115159050919050565b61124581611230565b82525050565b6000602082019050611260600083018461123c565b92915050565b61126f816111ba565b82525050565b600060208201905061128a6000830184611266565b92915050565b6000806000606084860312156112a9576112a8611157565b5b60006112b7868287016111a5565b93505060206112c8868287016111a5565b92505060406112d9868287016111db565b9150509250925092565b600060ff82169050919050565b6112f9816112e3565b82525050565b600060208201905061131460008301846112f0565b92915050565b6000602082840312156113305761132f611157565b5b600061133e848285016111db565b91505092915050565b60006020828403121561135d5761135c611157565b5b600061136b848285016111a5565b91505092915050565b61137d8161117c565b82525050565b60006020820190506113986000830184611374565b92915050565b600080604083850312156113b5576113b4611157565b5b60006113c3858286016111a5565b92505060206113d4858286016111a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061142557607f821691505b60208210811415611439576114386113de565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061149b6028836110a7565b91506114a68261143f565b604082019050919050565b600060208201905081810360008301526114ca8161148e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061150b826111ba565b9150611516836111ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561154b5761154a6114d1565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115b26025836110a7565b91506115bd82611556565b604082019050919050565b600060208201905081810360008301526115e1816115a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116446026836110a7565b915061164f826115e8565b604082019050919050565b6000602082019050818103600083015261167381611637565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156116d1578086048111156116ad576116ac6114d1565b5b60018516156116bc5780820291505b80810290506116ca8561167a565b9450611691565b94509492505050565b6000826116ea57600190506117a6565b816116f857600090506117a6565b816001811461170e576002811461171857611747565b60019150506117a6565b60ff84111561172a576117296114d1565b5b8360020a915084821115611741576117406114d1565b5b506117a6565b5060208310610133831016604e8410600b841016171561177c5782820a905083811115611777576117766114d1565b5b6117a6565b6117898484846001611687565b925090508184048111156117a05761179f6114d1565b5b81810290505b9392505050565b60006117b8826111ba565b91506117c3836112e3565b92506117f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846116da565b905092915050565b6000611803826111ba565b915061180e836111ba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611847576118466114d1565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118ae6024836110a7565b91506118b982611852565b604082019050919050565b600060208201905081810360008301526118dd816118a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119406022836110a7565b915061194b826118e4565b604082019050919050565b6000602082019050818103600083015261196f81611933565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b60006119ac601b836110a7565b91506119b782611976565b602082019050919050565b600060208201905081810360008301526119db8161199f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a3e6025836110a7565b9150611a49826119e2565b604082019050919050565b60006020820190508181036000830152611a6d81611a31565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ad06023836110a7565b9150611adb82611a74565b604082019050919050565b60006020820190508181036000830152611aff81611ac3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b626026836110a7565b9150611b6d82611b06565b604082019050919050565b60006020820190508181036000830152611b9181611b55565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf46021836110a7565b9150611bff82611b98565b604082019050919050565b60006020820190508181036000830152611c2381611be7565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c866022836110a7565b9150611c9182611c2a565b604082019050919050565b60006020820190508181036000830152611cb581611c79565b9050919050565b6000611cc7826111ba565b9150611cd2836111ba565b925082821015611ce557611ce46114d1565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d266020836110a7565b9150611d3182611cf0565b602082019050919050565b60006020820190508181036000830152611d5581611d19565b905091905056fea26469706673582212208af24990846c81c4333fda014d882b2b06e7a359ebd66c285ceab58f93bf800164736f6c63430008090033
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.