ERC-20
Overview
Max Total Supply
9,000,000,000 XEED
Holders
1,239
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
60,000 XEEDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XEED
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-24 */ //SPDX-License-Identifier: MIT /** ██╗ ██╗███████╗███████╗██████╗ ╚██╗██╔╝██╔════╝██╔════╝██╔══██╗ ╚███╔╝ █████╗ █████╗ ██║ ██║ ██╔██╗ ██╔══╝ ██╔══╝ ██║ ██║ ██╔╝ ██╗███████╗███████╗██████╔╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═════╝ **/ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.17; /** * @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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.17; /** * @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 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 { _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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.17; /** * @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 `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 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 // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.17; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.17; /** * @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 Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/XEED.sol pragma solidity ^0.8.17; contract XEED is ERC20, Ownable { constructor() ERC20("XEED", "XEED") { _mint(msg.sender, 9000000000 * 10 ** decimals()); //9,000,000,000 TOKENS } function claimStuckTokens(address _token) external onlyOwner { if (_token == address(0x0)) { payable(owner()).transfer(address(this).balance); return; } IERC20 erc20token = IERC20(_token); uint256 balance = erc20token.balanceOf(address(this)); erc20token.transfer(owner(), balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600481526020017f58454544000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f584545440000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620005de565b508060049081620000a19190620005de565b505050620000c4620000b86200010b60201b60201c565b6200011360201b60201c565b6200010533620000d9620001d960201b60201c565b600a620000e7919062000855565b640218711a00620000f99190620008a6565b620001e260201b60201c565b620009dd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000254576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024b9062000952565b60405180910390fd5b62000268600083836200035a60201b60201c565b80600260008282546200027c919062000974565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d3919062000974565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033a9190620009c0565b60405180910390a362000356600083836200035f60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e657607f821691505b602082108103620003fc57620003fb6200039e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000427565b62000472868362000427565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004bf620004b9620004b3846200048a565b62000494565b6200048a565b9050919050565b6000819050919050565b620004db836200049e565b620004f3620004ea82620004c6565b84845462000434565b825550505050565b600090565b6200050a620004fb565b62000517818484620004d0565b505050565b5b818110156200053f576200053360008262000500565b6001810190506200051d565b5050565b601f8211156200058e57620005588162000402565b620005638462000417565b8101602085101562000573578190505b6200058b620005828562000417565b8301826200051c565b50505b505050565b600082821c905092915050565b6000620005b36000198460080262000593565b1980831691505092915050565b6000620005ce8383620005a0565b9150826002028217905092915050565b620005e98262000364565b67ffffffffffffffff8111156200060557620006046200036f565b5b620006118254620003cd565b6200061e82828562000543565b600060209050601f83116001811462000656576000841562000641578287015190505b6200064d8582620005c0565b865550620006bd565b601f198416620006668662000402565b60005b82811015620006905784890151825560018201915060208501945060208101905062000669565b86831015620006b05784890151620006ac601f891682620005a0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000753578086048111156200072b576200072a620006c5565b5b60018516156200073b5780820291505b80810290506200074b85620006f4565b94506200070b565b94509492505050565b6000826200076e576001905062000841565b816200077e576000905062000841565b8160018114620007975760028114620007a257620007d8565b600191505062000841565b60ff841115620007b757620007b6620006c5565b5b8360020a915084821115620007d157620007d0620006c5565b5b5062000841565b5060208310610133831016604e8410600b8410161715620008125782820a9050838111156200080c576200080b620006c5565b5b62000841565b62000821848484600162000701565b925090508184048111156200083b576200083a620006c5565b5b81810290505b9392505050565b600060ff82169050919050565b600062000862826200048a565b91506200086f8362000848565b92506200089e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200075c565b905092915050565b6000620008b3826200048a565b9150620008c0836200048a565b9250828202620008d0816200048a565b91508282048414831517620008ea57620008e9620006c5565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200093a601f83620008f1565b9150620009478262000902565b602082019050919050565b600060208201905081810360008301526200096d816200092b565b9050919050565b600062000981826200048a565b91506200098e836200048a565b9250828201905080821115620009a957620009a8620006c5565b5b92915050565b620009ba816200048a565b82525050565b6000602082019050620009d76000830184620009af565b92915050565b611a3780620009ed6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063f9d0831a14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611128565b60405180910390f35b610132600480360381019061012d91906111e3565b6103b4565b60405161013f919061123e565b60405180910390f35b6101506103d7565b60405161015d9190611268565b60405180910390f35b610180600480360381019061017b9190611283565b6103e1565b60405161018d919061123e565b60405180910390f35b61019e610410565b6040516101ab91906112f2565b60405180910390f35b6101ce60048036038101906101c991906111e3565b610419565b6040516101db919061123e565b60405180910390f35b6101fe60048036038101906101f9919061130d565b6104c3565b60405161020b9190611268565b60405180910390f35b61021c61050b565b005b610226610593565b6040516102339190611349565b60405180910390f35b6102446105bd565b6040516102519190611128565b60405180910390f35b610274600480360381019061026f91906111e3565b61064f565b604051610281919061123e565b60405180910390f35b6102a4600480360381019061029f91906111e3565b610739565b6040516102b1919061123e565b60405180910390f35b6102d460048036038101906102cf9190611364565b61075c565b6040516102e19190611268565b60405180910390f35b61030460048036038101906102ff919061130d565b6107e3565b005b610320600480360381019061031b919061130d565b6108da565b005b606060038054610331906113d3565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906113d3565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610aec565b90506103cc818585610af4565b600191505092915050565b6000600254905090565b6000806103ec610aec565b90506103f9858285610cbd565b610404858585610d49565b60019150509392505050565b60006012905090565b600080610424610aec565b90506104b8818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104b39190611433565b610af4565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610513610aec565b73ffffffffffffffffffffffffffffffffffffffff16610531610593565b73ffffffffffffffffffffffffffffffffffffffff1614610587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057e906114b3565b60405180910390fd5b6105916000610fc8565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105cc906113d3565b80601f01602080910402602001604051908101604052809291908181526020018280546105f8906113d3565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b60008061065a610aec565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071790611545565b60405180910390fd5b61072d8286868403610af4565b60019250505092915050565b600080610744610aec565b9050610751818585610d49565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107eb610aec565b73ffffffffffffffffffffffffffffffffffffffff16610809610593565b73ffffffffffffffffffffffffffffffffffffffff161461085f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610856906114b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c5906115d7565b60405180910390fd5b6108d781610fc8565b50565b6108e2610aec565b73ffffffffffffffffffffffffffffffffffffffff16610900610593565b73ffffffffffffffffffffffffffffffffffffffff1614610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d906114b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109dd57610992610593565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109d7573d6000803e3d6000fd5b50610ae9565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a1d9190611349565b602060405180830381865afa158015610a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e919061160c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610a84610593565b836040518363ffffffff1660e01b8152600401610aa2929190611639565b6020604051808303816000875af1158015610ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae5919061168e565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a9061172d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc9906117bf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb09190611268565b60405180910390a3505050565b6000610cc9848461075c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d435781811015610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c9061182b565b60405180910390fd5b610d428484848403610af4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906118bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e9061194f565b60405180910390fd5b610e3283838361108e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906119e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f4b9190611433565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610faf9190611268565b60405180910390a3610fc2848484611093565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110d25780820151818401526020810190506110b7565b60008484015250505050565b6000601f19601f8301169050919050565b60006110fa82611098565b61110481856110a3565b93506111148185602086016110b4565b61111d816110de565b840191505092915050565b6000602082019050818103600083015261114281846110ef565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061117a8261114f565b9050919050565b61118a8161116f565b811461119557600080fd5b50565b6000813590506111a781611181565b92915050565b6000819050919050565b6111c0816111ad565b81146111cb57600080fd5b50565b6000813590506111dd816111b7565b92915050565b600080604083850312156111fa576111f961114a565b5b600061120885828601611198565b9250506020611219858286016111ce565b9150509250929050565b60008115159050919050565b61123881611223565b82525050565b6000602082019050611253600083018461122f565b92915050565b611262816111ad565b82525050565b600060208201905061127d6000830184611259565b92915050565b60008060006060848603121561129c5761129b61114a565b5b60006112aa86828701611198565b93505060206112bb86828701611198565b92505060406112cc868287016111ce565b9150509250925092565b600060ff82169050919050565b6112ec816112d6565b82525050565b600060208201905061130760008301846112e3565b92915050565b6000602082840312156113235761132261114a565b5b600061133184828501611198565b91505092915050565b6113438161116f565b82525050565b600060208201905061135e600083018461133a565b92915050565b6000806040838503121561137b5761137a61114a565b5b600061138985828601611198565b925050602061139a85828601611198565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113eb57607f821691505b6020821081036113fe576113fd6113a4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061143e826111ad565b9150611449836111ad565b925082820190508082111561146157611460611404565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061149d6020836110a3565b91506114a882611467565b602082019050919050565b600060208201905081810360008301526114cc81611490565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061152f6025836110a3565b915061153a826114d3565b604082019050919050565b6000602082019050818103600083015261155e81611522565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115c16026836110a3565b91506115cc82611565565b604082019050919050565b600060208201905081810360008301526115f0816115b4565b9050919050565b600081519050611606816111b7565b92915050565b6000602082840312156116225761162161114a565b5b6000611630848285016115f7565b91505092915050565b600060408201905061164e600083018561133a565b61165b6020830184611259565b9392505050565b61166b81611223565b811461167657600080fd5b50565b60008151905061168881611662565b92915050565b6000602082840312156116a4576116a361114a565b5b60006116b284828501611679565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117176024836110a3565b9150611722826116bb565b604082019050919050565b600060208201905081810360008301526117468161170a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117a96022836110a3565b91506117b48261174d565b604082019050919050565b600060208201905081810360008301526117d88161179c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611815601d836110a3565b9150611820826117df565b602082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118a76025836110a3565b91506118b28261184b565b604082019050919050565b600060208201905081810360008301526118d68161189a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119396023836110a3565b9150611944826118dd565b604082019050919050565b600060208201905081810360008301526119688161192c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119cb6026836110a3565b91506119d68261196f565b604082019050919050565b600060208201905081810360008301526119fa816119be565b905091905056fea26469706673582212200820bb4e0d9696c2dee0c8e8d6017c1f15ce9464966307e63b7ad1fad5325d4864736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063f9d0831a14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611128565b60405180910390f35b610132600480360381019061012d91906111e3565b6103b4565b60405161013f919061123e565b60405180910390f35b6101506103d7565b60405161015d9190611268565b60405180910390f35b610180600480360381019061017b9190611283565b6103e1565b60405161018d919061123e565b60405180910390f35b61019e610410565b6040516101ab91906112f2565b60405180910390f35b6101ce60048036038101906101c991906111e3565b610419565b6040516101db919061123e565b60405180910390f35b6101fe60048036038101906101f9919061130d565b6104c3565b60405161020b9190611268565b60405180910390f35b61021c61050b565b005b610226610593565b6040516102339190611349565b60405180910390f35b6102446105bd565b6040516102519190611128565b60405180910390f35b610274600480360381019061026f91906111e3565b61064f565b604051610281919061123e565b60405180910390f35b6102a4600480360381019061029f91906111e3565b610739565b6040516102b1919061123e565b60405180910390f35b6102d460048036038101906102cf9190611364565b61075c565b6040516102e19190611268565b60405180910390f35b61030460048036038101906102ff919061130d565b6107e3565b005b610320600480360381019061031b919061130d565b6108da565b005b606060038054610331906113d3565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906113d3565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610aec565b90506103cc818585610af4565b600191505092915050565b6000600254905090565b6000806103ec610aec565b90506103f9858285610cbd565b610404858585610d49565b60019150509392505050565b60006012905090565b600080610424610aec565b90506104b8818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104b39190611433565b610af4565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610513610aec565b73ffffffffffffffffffffffffffffffffffffffff16610531610593565b73ffffffffffffffffffffffffffffffffffffffff1614610587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057e906114b3565b60405180910390fd5b6105916000610fc8565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105cc906113d3565b80601f01602080910402602001604051908101604052809291908181526020018280546105f8906113d3565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b5050505050905090565b60008061065a610aec565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071790611545565b60405180910390fd5b61072d8286868403610af4565b60019250505092915050565b600080610744610aec565b9050610751818585610d49565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107eb610aec565b73ffffffffffffffffffffffffffffffffffffffff16610809610593565b73ffffffffffffffffffffffffffffffffffffffff161461085f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610856906114b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c5906115d7565b60405180910390fd5b6108d781610fc8565b50565b6108e2610aec565b73ffffffffffffffffffffffffffffffffffffffff16610900610593565b73ffffffffffffffffffffffffffffffffffffffff1614610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d906114b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109dd57610992610593565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109d7573d6000803e3d6000fd5b50610ae9565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a1d9190611349565b602060405180830381865afa158015610a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e919061160c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610a84610593565b836040518363ffffffff1660e01b8152600401610aa2929190611639565b6020604051808303816000875af1158015610ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae5919061168e565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a9061172d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc9906117bf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb09190611268565b60405180910390a3505050565b6000610cc9848461075c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d435781811015610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c9061182b565b60405180910390fd5b610d428484848403610af4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906118bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e9061194f565b60405180910390fd5b610e3283838361108e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf906119e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f4b9190611433565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610faf9190611268565b60405180910390a3610fc2848484611093565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110d25780820151818401526020810190506110b7565b60008484015250505050565b6000601f19601f8301169050919050565b60006110fa82611098565b61110481856110a3565b93506111148185602086016110b4565b61111d816110de565b840191505092915050565b6000602082019050818103600083015261114281846110ef565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061117a8261114f565b9050919050565b61118a8161116f565b811461119557600080fd5b50565b6000813590506111a781611181565b92915050565b6000819050919050565b6111c0816111ad565b81146111cb57600080fd5b50565b6000813590506111dd816111b7565b92915050565b600080604083850312156111fa576111f961114a565b5b600061120885828601611198565b9250506020611219858286016111ce565b9150509250929050565b60008115159050919050565b61123881611223565b82525050565b6000602082019050611253600083018461122f565b92915050565b611262816111ad565b82525050565b600060208201905061127d6000830184611259565b92915050565b60008060006060848603121561129c5761129b61114a565b5b60006112aa86828701611198565b93505060206112bb86828701611198565b92505060406112cc868287016111ce565b9150509250925092565b600060ff82169050919050565b6112ec816112d6565b82525050565b600060208201905061130760008301846112e3565b92915050565b6000602082840312156113235761132261114a565b5b600061133184828501611198565b91505092915050565b6113438161116f565b82525050565b600060208201905061135e600083018461133a565b92915050565b6000806040838503121561137b5761137a61114a565b5b600061138985828601611198565b925050602061139a85828601611198565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113eb57607f821691505b6020821081036113fe576113fd6113a4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061143e826111ad565b9150611449836111ad565b925082820190508082111561146157611460611404565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061149d6020836110a3565b91506114a882611467565b602082019050919050565b600060208201905081810360008301526114cc81611490565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061152f6025836110a3565b915061153a826114d3565b604082019050919050565b6000602082019050818103600083015261155e81611522565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115c16026836110a3565b91506115cc82611565565b604082019050919050565b600060208201905081810360008301526115f0816115b4565b9050919050565b600081519050611606816111b7565b92915050565b6000602082840312156116225761162161114a565b5b6000611630848285016115f7565b91505092915050565b600060408201905061164e600083018561133a565b61165b6020830184611259565b9392505050565b61166b81611223565b811461167657600080fd5b50565b60008151905061168881611662565b92915050565b6000602082840312156116a4576116a361114a565b5b60006116b284828501611679565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117176024836110a3565b9150611722826116bb565b604082019050919050565b600060208201905081810360008301526117468161170a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117a96022836110a3565b91506117b48261174d565b604082019050919050565b600060208201905081810360008301526117d88161179c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611815601d836110a3565b9150611820826117df565b602082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118a76025836110a3565b91506118b28261184b565b604082019050919050565b600060208201905081810360008301526118d68161189a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119396023836110a3565b9150611944826118dd565b604082019050919050565b600060208201905081810360008301526119688161192c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119cb6026836110a3565b91506119d68261196f565b604082019050919050565b600060208201905081810360008301526119fa816119be565b905091905056fea26469706673582212200820bb4e0d9696c2dee0c8e8d6017c1f15ce9464966307e63b7ad1fad5325d4864736f6c63430008110033
Deployed Bytecode Sourcemap
20632:539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9772:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12123:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10892:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12904:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10734:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13608:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11063:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3192:103;;;:::i;:::-;;2541:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9991:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14351:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11396:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11652:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3450:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20806:360;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9772:100;9826:13;9859:5;9852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9772:100;:::o;12123:201::-;12206:4;12223:13;12239:12;:10;:12::i;:::-;12223:28;;12262:32;12271:5;12278:7;12287:6;12262:8;:32::i;:::-;12312:4;12305:11;;;12123:201;;;;:::o;10892:108::-;10953:7;10980:12;;10973:19;;10892:108;:::o;12904:295::-;13035:4;13052:15;13070:12;:10;:12::i;:::-;13052:30;;13093:38;13109:4;13115:7;13124:6;13093:15;:38::i;:::-;13142:27;13152:4;13158:2;13162:6;13142:9;:27::i;:::-;13187:4;13180:11;;;12904:295;;;;;:::o;10734:93::-;10792:5;10817:2;10810:9;;10734:93;:::o;13608:240::-;13696:4;13713:13;13729:12;:10;:12::i;:::-;13713:28;;13752:66;13761:5;13768:7;13807:10;13777:11;:18;13789:5;13777:18;;;;;;;;;;;;;;;:27;13796:7;13777:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;13752:8;:66::i;:::-;13836:4;13829:11;;;13608:240;;;;:::o;11063:127::-;11137:7;11164:9;:18;11174:7;11164:18;;;;;;;;;;;;;;;;11157:25;;11063:127;;;:::o;3192:103::-;2772:12;:10;:12::i;:::-;2761:23;;:7;:5;:7::i;:::-;:23;;;2753:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3257:30:::1;3284:1;3257:18;:30::i;:::-;3192:103::o:0;2541:87::-;2587:7;2614:6;;;;;;;;;;;2607:13;;2541:87;:::o;9991:104::-;10047:13;10080:7;10073:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9991:104;:::o;14351:438::-;14444:4;14461:13;14477:12;:10;:12::i;:::-;14461:28;;14500:24;14527:11;:18;14539:5;14527:18;;;;;;;;;;;;;;;:27;14546:7;14527:27;;;;;;;;;;;;;;;;14500:54;;14593:15;14573:16;:35;;14565:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14686:60;14695:5;14702:7;14730:15;14711:16;:34;14686:8;:60::i;:::-;14777:4;14770:11;;;;14351:438;;;;:::o;11396:193::-;11475:4;11492:13;11508:12;:10;:12::i;:::-;11492:28;;11531;11541:5;11548:2;11552:6;11531:9;:28::i;:::-;11577:4;11570:11;;;11396:193;;;;:::o;11652:151::-;11741:7;11768:11;:18;11780:5;11768:18;;;;;;;;;;;;;;;:27;11787:7;11768:27;;;;;;;;;;;;;;;;11761:34;;11652:151;;;;:::o;3450:201::-;2772:12;:10;:12::i;:::-;2761:23;;:7;:5;:7::i;:::-;:23;;;2753:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3559:1:::1;3539:22;;:8;:22;;::::0;3531:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3615:28;3634:8;3615:18;:28::i;:::-;3450:201:::0;:::o;20806:360::-;2772:12;:10;:12::i;:::-;2761:23;;:7;:5;:7::i;:::-;:23;;;2753:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20900:3:::1;20882:22;;:6;:22;;::::0;20878:124:::1;;20929:7;:5;:7::i;:::-;20921:25;;:48;20947:21;20921:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;20984:7;;20878:124;21012:17;21039:6;21012:34;;21057:15;21075:10;:20;;;21104:4;21075:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21057:53;;21121:10;:19;;;21141:7;:5;:7::i;:::-;21150;21121:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20867:299;;2832:1;20806:360:::0;:::o;1264:98::-;1317:7;1344:10;1337:17;;1264:98;:::o;17987:380::-;18140:1;18123:19;;:5;:19;;;18115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18221:1;18202:21;;:7;:21;;;18194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18305:6;18275:11;:18;18287:5;18275:18;;;;;;;;;;;;;;;:27;18294:7;18275:27;;;;;;;;;;;;;;;:36;;;;18343:7;18327:32;;18336:5;18327:32;;;18352:6;18327:32;;;;;;:::i;:::-;;;;;;;;17987:380;;;:::o;18654:453::-;18789:24;18816:25;18826:5;18833:7;18816:9;:25::i;:::-;18789:52;;18876:17;18856:16;:37;18852:248;;18938:6;18918:16;:26;;18910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19022:51;19031:5;19038:7;19066:6;19047:16;:25;19022:8;:51::i;:::-;18852:248;18778:329;18654:453;;;:::o;15268:671::-;15415:1;15399:18;;:4;:18;;;15391:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15492:1;15478:16;;:2;:16;;;15470:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15547:38;15568:4;15574:2;15578:6;15547:20;:38::i;:::-;15598:19;15620:9;:15;15630:4;15620:15;;;;;;;;;;;;;;;;15598:37;;15669:6;15654:11;:21;;15646:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15786:6;15772:11;:20;15754:9;:15;15764:4;15754:15;;;;;;;;;;;;;;;:38;;;;15831:6;15814:9;:13;15824:2;15814:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15870:2;15855:26;;15864:4;15855:26;;;15874:6;15855:26;;;;;;:::i;:::-;;;;;;;;15894:37;15914:4;15920:2;15924:6;15894:19;:37::i;:::-;15380:559;15268:671;;;:::o;3811:191::-;3885:16;3904:6;;;;;;;;;;;3885:25;;3930:8;3921:6;;:17;;;;;;;;;;;;;;;;;;3985:8;3954:40;;3975:8;3954:40;;;;;;;;;;;;3874:128;3811:191;:::o;19707:125::-;;;;:::o;20436:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:182::-;7055:34;7051:1;7043:6;7039:14;7032:58;6915:182;:::o;7103:366::-;7245:3;7266:67;7330:2;7325:3;7266:67;:::i;:::-;7259:74;;7342:93;7431:3;7342:93;:::i;:::-;7460:2;7455:3;7451:12;7444:19;;7103:366;;;:::o;7475:419::-;7641:4;7679:2;7668:9;7664:18;7656:26;;7728:9;7722:4;7718:20;7714:1;7703:9;7699:17;7692:47;7756:131;7882:4;7756:131;:::i;:::-;7748:139;;7475:419;;;:::o;7900:224::-;8040:34;8036:1;8028:6;8024:14;8017:58;8109:7;8104:2;8096:6;8092:15;8085:32;7900:224;:::o;8130:366::-;8272:3;8293:67;8357:2;8352:3;8293:67;:::i;:::-;8286:74;;8369:93;8458:3;8369:93;:::i;:::-;8487:2;8482:3;8478:12;8471:19;;8130:366;;;:::o;8502:419::-;8668:4;8706:2;8695:9;8691:18;8683:26;;8755:9;8749:4;8745:20;8741:1;8730:9;8726:17;8719:47;8783:131;8909:4;8783:131;:::i;:::-;8775:139;;8502:419;;;:::o;8927:225::-;9067:34;9063:1;9055:6;9051:14;9044:58;9136:8;9131:2;9123:6;9119:15;9112:33;8927:225;:::o;9158:366::-;9300:3;9321:67;9385:2;9380:3;9321:67;:::i;:::-;9314:74;;9397:93;9486:3;9397:93;:::i;:::-;9515:2;9510:3;9506:12;9499:19;;9158:366;;;:::o;9530:419::-;9696:4;9734:2;9723:9;9719:18;9711:26;;9783:9;9777:4;9773:20;9769:1;9758:9;9754:17;9747:47;9811:131;9937:4;9811:131;:::i;:::-;9803:139;;9530:419;;;:::o;9955:143::-;10012:5;10043:6;10037:13;10028:22;;10059:33;10086:5;10059:33;:::i;:::-;9955:143;;;;:::o;10104:351::-;10174:6;10223:2;10211:9;10202:7;10198:23;10194:32;10191:119;;;10229:79;;:::i;:::-;10191:119;10349:1;10374:64;10430:7;10421:6;10410:9;10406:22;10374:64;:::i;:::-;10364:74;;10320:128;10104:351;;;;:::o;10461:332::-;10582:4;10620:2;10609:9;10605:18;10597:26;;10633:71;10701:1;10690:9;10686:17;10677:6;10633:71;:::i;:::-;10714:72;10782:2;10771:9;10767:18;10758:6;10714:72;:::i;:::-;10461:332;;;;;:::o;10799:116::-;10869:21;10884:5;10869:21;:::i;:::-;10862:5;10859:32;10849:60;;10905:1;10902;10895:12;10849:60;10799:116;:::o;10921:137::-;10975:5;11006:6;11000:13;10991:22;;11022:30;11046:5;11022:30;:::i;:::-;10921:137;;;;:::o;11064:345::-;11131:6;11180:2;11168:9;11159:7;11155:23;11151:32;11148:119;;;11186:79;;:::i;:::-;11148:119;11306:1;11331:61;11384:7;11375:6;11364:9;11360:22;11331:61;:::i;:::-;11321:71;;11277:125;11064:345;;;;:::o;11415:223::-;11555:34;11551:1;11543:6;11539:14;11532:58;11624:6;11619:2;11611:6;11607:15;11600:31;11415:223;:::o;11644:366::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:419::-;12182:4;12220:2;12209:9;12205:18;12197:26;;12269:9;12263:4;12259:20;12255:1;12244:9;12240:17;12233:47;12297:131;12423:4;12297:131;:::i;:::-;12289:139;;12016:419;;;:::o;12441:221::-;12581:34;12577:1;12569:6;12565:14;12558:58;12650:4;12645:2;12637:6;12633:15;12626:29;12441:221;:::o;12668:366::-;12810:3;12831:67;12895:2;12890:3;12831:67;:::i;:::-;12824:74;;12907:93;12996:3;12907:93;:::i;:::-;13025:2;13020:3;13016:12;13009:19;;12668:366;;;:::o;13040:419::-;13206:4;13244:2;13233:9;13229:18;13221:26;;13293:9;13287:4;13283:20;13279:1;13268:9;13264:17;13257:47;13321:131;13447:4;13321:131;:::i;:::-;13313:139;;13040:419;;;:::o;13465:179::-;13605:31;13601:1;13593:6;13589:14;13582:55;13465:179;:::o;13650:366::-;13792:3;13813:67;13877:2;13872:3;13813:67;:::i;:::-;13806:74;;13889:93;13978:3;13889:93;:::i;:::-;14007:2;14002:3;13998:12;13991:19;;13650:366;;;:::o;14022:419::-;14188:4;14226:2;14215:9;14211:18;14203:26;;14275:9;14269:4;14265:20;14261:1;14250:9;14246:17;14239:47;14303:131;14429:4;14303:131;:::i;:::-;14295:139;;14022:419;;;:::o;14447:224::-;14587:34;14583:1;14575:6;14571:14;14564:58;14656:7;14651:2;14643:6;14639:15;14632:32;14447:224;:::o;14677:366::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:419::-;15215:4;15253:2;15242:9;15238:18;15230:26;;15302:9;15296:4;15292:20;15288:1;15277:9;15273:17;15266:47;15330:131;15456:4;15330:131;:::i;:::-;15322:139;;15049:419;;;:::o;15474:222::-;15614:34;15610:1;15602:6;15598:14;15591:58;15683:5;15678:2;15670:6;15666:15;15659:30;15474:222;:::o;15702:366::-;15844:3;15865:67;15929:2;15924:3;15865:67;:::i;:::-;15858:74;;15941:93;16030:3;15941:93;:::i;:::-;16059:2;16054:3;16050:12;16043:19;;15702:366;;;:::o;16074:419::-;16240:4;16278:2;16267:9;16263:18;16255:26;;16327:9;16321:4;16317:20;16313:1;16302:9;16298:17;16291:47;16355:131;16481:4;16355:131;:::i;:::-;16347:139;;16074:419;;;:::o;16499:225::-;16639:34;16635:1;16627:6;16623:14;16616:58;16708:8;16703:2;16695:6;16691:15;16684:33;16499:225;:::o;16730:366::-;16872:3;16893:67;16957:2;16952:3;16893:67;:::i;:::-;16886:74;;16969:93;17058:3;16969:93;:::i;:::-;17087:2;17082:3;17078:12;17071:19;;16730:366;;;:::o;17102:419::-;17268:4;17306:2;17295:9;17291:18;17283:26;;17355:9;17349:4;17345:20;17341:1;17330:9;17326:17;17319:47;17383:131;17509:4;17383:131;:::i;:::-;17375:139;;17102:419;;;:::o
Swarm Source
ipfs://0820bb4e0d9696c2dee0c8e8d6017c1f15ce9464966307e63b7ad1fad5325d48
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.