ERC-20
Overview
Max Total Supply
420,000,000,000 PEPEPE
Holders
105
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Pepepe
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-18 */ // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address 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/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * Returns a boolean value indicating whether the operation succeeded. * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * Returns a boolean value indicating whether the operation succeeded. * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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 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/Pepepe.sol pragma solidity ^0.8.0; contract Pepepe is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor() ERC20("Pepepe", "PEPEPE") { uint256 _totalSupply = 420 * 10**9 * 10**18; _mint(msg.sender, _totalSupply); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } }
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":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600681526020017f50657065706500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f50455045504500000000000000000000000000000000000000000000000000008152506200009e62000092620000fd60201b60201c565b6200010560201b60201c565b8160049080519060200190620000b6929190620006d7565b508060059080519060200190620000cf929190620006d7565b50505060006c054d17db76321263eca00000009050620000f63382620001c960201b60201c565b5062000a51565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200023c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023390620008e4565b60405180910390fd5b62000250600083836200034360201b60201c565b806003600082825462000264919062000956565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002bc919062000956565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000323919062000928565b60405180910390a36200033f600083836200066060201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003e85750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200042a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004219062000906565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200054e57620004926200066560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005065750620004d76200066560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000548576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053f90620008c2565b60405180910390fd5b6200065b565b600660009054906101000a900460ff168015620005b85750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200065a5760075481620005d8846200068e60201b6200089d1760201c565b620005e4919062000956565b111580156200061757506008548162000608846200068e60201b6200089d1760201c565b62000614919062000956565b10155b62000659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065090620008a0565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620006e590620009bd565b90600052602060002090601f01602090048101928262000709576000855562000755565b82601f106200072457805160ff191683800117855562000755565b8280016001018555821562000755579182015b828111156200075457825182559160200191906001019062000737565b5b50905062000764919062000768565b5090565b5b808211156200078357600081600090555060010162000769565b5090565b60006200079660068362000945565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000620007d860168362000945565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b60006200081a601f8362000945565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b60006200085c600b8362000945565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b6200089a81620009b3565b82525050565b60006020820190508181036000830152620008bb8162000787565b9050919050565b60006020820190508181036000830152620008dd81620007c9565b9050919050565b60006020820190508181036000830152620008ff816200080b565b9050919050565b6000602082019050818103600083015262000921816200084d565b9050919050565b60006020820190506200093f60008301846200088f565b92915050565b600082825260208201905092915050565b60006200096382620009b3565b91506200097083620009b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009a857620009a7620009f3565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620009d657607f821691505b60208210811415620009ed57620009ec62000a22565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611f608062000a616000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461034057806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac578063dd62ed3e146103dc578063f2fde38b1461040c57610137565b806349bd5a5e146102ac57806370a08231146102ca578063715018a6146102fa578063860a32ec1461030457806389f9a1d31461032257610137565b806323b872dd116100ff57806323b872dd146101f6578063313ce5671461022657806339509351146102445780633aa633aa14610274578063404e51291461029057610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461018a57806318160ddd146101ba5780631ab99e12146101d8575b600080fd5b610144610428565b6040516101519190611b72565b60405180910390f35b610174600480360381019061016f91906115f8565b6104ba565b6040516101819190611b57565b60405180910390f35b6101a4600480360381019061019f9190611508565b6104d8565b6040516101b19190611b57565b60405180910390f35b6101c26104f8565b6040516101cf9190611d14565b60405180910390f35b6101e0610502565b6040516101ed9190611d14565b60405180910390f35b610210600480360381019061020b919061156d565b610508565b60405161021d9190611b57565b60405180910390f35b61022e610600565b60405161023b9190611d2f565b60405180910390f35b61025e600480360381019061025991906115f8565b610609565b60405161026b9190611b57565b60405180910390f35b61028e60048036038101906102899190611634565b6106b5565b005b6102aa60048036038101906102a591906115bc565b6107a0565b005b6102b4610877565b6040516102c19190611b3c565b60405180910390f35b6102e460048036038101906102df9190611508565b61089d565b6040516102f19190611d14565b60405180910390f35b6103026108e6565b005b61030c61096e565b6040516103199190611b57565b60405180910390f35b61032a610981565b6040516103379190611d14565b60405180910390f35b610348610987565b6040516103559190611b3c565b60405180910390f35b6103666109b0565b6040516103739190611b72565b60405180910390f35b610396600480360381019061039191906115f8565b610a42565b6040516103a39190611b57565b60405180910390f35b6103c660048036038101906103c191906115f8565b610b2d565b6040516103d39190611b57565b60405180910390f35b6103f660048036038101906103f19190611531565b610b4b565b6040516104039190611d14565b60405180910390f35b61042660048036038101906104219190611508565b610bd2565b005b60606004805461043790611e44565b80601f016020809104026020016040519081016040528092919081815260200182805461046390611e44565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b60006104ce6104c7610cca565b8484610cd2565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000610515848484610e9d565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610560610cca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d790611c34565b60405180910390fd5b6105f4856105ec610cca565b858403610cd2565b60019150509392505050565b60006012905090565b60006106ab610616610cca565b848460026000610624610cca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106a69190611d66565b610cd2565b6001905092915050565b6106bd610cca565b73ffffffffffffffffffffffffffffffffffffffff166106db610987565b73ffffffffffffffffffffffffffffffffffffffff1614610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890611c54565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107a8610cca565b73ffffffffffffffffffffffffffffffffffffffff166107c6610987565b73ffffffffffffffffffffffffffffffffffffffff161461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390611c54565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ee610cca565b73ffffffffffffffffffffffffffffffffffffffff1661090c610987565b73ffffffffffffffffffffffffffffffffffffffff1614610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095990611c54565b60405180910390fd5b61096c6000611121565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109bf90611e44565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb90611e44565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b60008060026000610a51610cca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590611cd4565b60405180910390fd5b610b22610b19610cca565b85858403610cd2565b600191505092915050565b6000610b41610b3a610cca565b8484610e9d565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bda610cca565b73ffffffffffffffffffffffffffffffffffffffff16610bf8610987565b73ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590611c54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590611bb4565b60405180910390fd5b610cc781611121565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990611cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990611bd4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e909190611d14565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490611c94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611b94565b60405180910390fd5b610f888383836111e5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690611bf4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a49190611d66565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111089190611d14565b60405180910390a361111b8484846114c4565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112895750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90611cf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113d657611327610987565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113925750611363610987565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890611c74565b60405180910390fd5b6114bf565b600660009054906101000a900460ff16801561143f5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156114be57600754816114518461089d565b61145b9190611d66565b1115801561147e5750600854816114718461089d565b61147b9190611d66565b10155b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490611c14565b60405180910390fd5b5b5b505050565b505050565b6000813590506114d881611ee5565b92915050565b6000813590506114ed81611efc565b92915050565b60008135905061150281611f13565b92915050565b60006020828403121561151a57600080fd5b6000611528848285016114c9565b91505092915050565b6000806040838503121561154457600080fd5b6000611552858286016114c9565b9250506020611563858286016114c9565b9150509250929050565b60008060006060848603121561158257600080fd5b6000611590868287016114c9565b93505060206115a1868287016114c9565b92505060406115b2868287016114f3565b9150509250925092565b600080604083850312156115cf57600080fd5b60006115dd858286016114c9565b92505060206115ee858286016114de565b9150509250929050565b6000806040838503121561160b57600080fd5b6000611619858286016114c9565b925050602061162a858286016114f3565b9150509250929050565b6000806000806080858703121561164a57600080fd5b6000611658878288016114de565b9450506020611669878288016114c9565b935050604061167a878288016114f3565b925050606061168b878288016114f3565b91505092959194509250565b6116a081611dbc565b82525050565b6116af81611dce565b82525050565b60006116c082611d4a565b6116ca8185611d55565b93506116da818560208601611e11565b6116e381611ed4565b840191505092915050565b60006116fb602383611d55565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611761602683611d55565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117c7602283611d55565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061182d602683611d55565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611893600683611d55565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006118d3602883611d55565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611939602083611d55565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611979601683611d55565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b60006119b9602583611d55565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a1f602483611d55565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a85602583611d55565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aeb600b83611d55565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b611b2781611dfa565b82525050565b611b3681611e04565b82525050565b6000602082019050611b516000830184611697565b92915050565b6000602082019050611b6c60008301846116a6565b92915050565b60006020820190508181036000830152611b8c81846116b5565b905092915050565b60006020820190508181036000830152611bad816116ee565b9050919050565b60006020820190508181036000830152611bcd81611754565b9050919050565b60006020820190508181036000830152611bed816117ba565b9050919050565b60006020820190508181036000830152611c0d81611820565b9050919050565b60006020820190508181036000830152611c2d81611886565b9050919050565b60006020820190508181036000830152611c4d816118c6565b9050919050565b60006020820190508181036000830152611c6d8161192c565b9050919050565b60006020820190508181036000830152611c8d8161196c565b9050919050565b60006020820190508181036000830152611cad816119ac565b9050919050565b60006020820190508181036000830152611ccd81611a12565b9050919050565b60006020820190508181036000830152611ced81611a78565b9050919050565b60006020820190508181036000830152611d0d81611ade565b9050919050565b6000602082019050611d296000830184611b1e565b92915050565b6000602082019050611d446000830184611b2d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d7182611dfa565b9150611d7c83611dfa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611db157611db0611e76565b5b828201905092915050565b6000611dc782611dda565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e2f578082015181840152602081019050611e14565b83811115611e3e576000848401525b50505050565b60006002820490506001821680611e5c57607f821691505b60208210811415611e7057611e6f611ea5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611eee81611dbc565b8114611ef957600080fd5b50565b611f0581611dce565b8114611f1057600080fd5b50565b611f1c81611dfa565b8114611f2757600080fd5b5056fea264697066735822122008b476f378cd89a9200c541b7526c21e85855bd62864c55f896039ce7fc2af7b64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461034057806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac578063dd62ed3e146103dc578063f2fde38b1461040c57610137565b806349bd5a5e146102ac57806370a08231146102ca578063715018a6146102fa578063860a32ec1461030457806389f9a1d31461032257610137565b806323b872dd116100ff57806323b872dd146101f6578063313ce5671461022657806339509351146102445780633aa633aa14610274578063404e51291461029057610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461018a57806318160ddd146101ba5780631ab99e12146101d8575b600080fd5b610144610428565b6040516101519190611b72565b60405180910390f35b610174600480360381019061016f91906115f8565b6104ba565b6040516101819190611b57565b60405180910390f35b6101a4600480360381019061019f9190611508565b6104d8565b6040516101b19190611b57565b60405180910390f35b6101c26104f8565b6040516101cf9190611d14565b60405180910390f35b6101e0610502565b6040516101ed9190611d14565b60405180910390f35b610210600480360381019061020b919061156d565b610508565b60405161021d9190611b57565b60405180910390f35b61022e610600565b60405161023b9190611d2f565b60405180910390f35b61025e600480360381019061025991906115f8565b610609565b60405161026b9190611b57565b60405180910390f35b61028e60048036038101906102899190611634565b6106b5565b005b6102aa60048036038101906102a591906115bc565b6107a0565b005b6102b4610877565b6040516102c19190611b3c565b60405180910390f35b6102e460048036038101906102df9190611508565b61089d565b6040516102f19190611d14565b60405180910390f35b6103026108e6565b005b61030c61096e565b6040516103199190611b57565b60405180910390f35b61032a610981565b6040516103379190611d14565b60405180910390f35b610348610987565b6040516103559190611b3c565b60405180910390f35b6103666109b0565b6040516103739190611b72565b60405180910390f35b610396600480360381019061039191906115f8565b610a42565b6040516103a39190611b57565b60405180910390f35b6103c660048036038101906103c191906115f8565b610b2d565b6040516103d39190611b57565b60405180910390f35b6103f660048036038101906103f19190611531565b610b4b565b6040516104039190611d14565b60405180910390f35b61042660048036038101906104219190611508565b610bd2565b005b60606004805461043790611e44565b80601f016020809104026020016040519081016040528092919081815260200182805461046390611e44565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b60006104ce6104c7610cca565b8484610cd2565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000610515848484610e9d565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610560610cca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d790611c34565b60405180910390fd5b6105f4856105ec610cca565b858403610cd2565b60019150509392505050565b60006012905090565b60006106ab610616610cca565b848460026000610624610cca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106a69190611d66565b610cd2565b6001905092915050565b6106bd610cca565b73ffffffffffffffffffffffffffffffffffffffff166106db610987565b73ffffffffffffffffffffffffffffffffffffffff1614610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890611c54565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107a8610cca565b73ffffffffffffffffffffffffffffffffffffffff166107c6610987565b73ffffffffffffffffffffffffffffffffffffffff161461081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390611c54565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ee610cca565b73ffffffffffffffffffffffffffffffffffffffff1661090c610987565b73ffffffffffffffffffffffffffffffffffffffff1614610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095990611c54565b60405180910390fd5b61096c6000611121565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109bf90611e44565b80601f01602080910402602001604051908101604052809291908181526020018280546109eb90611e44565b8015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b60008060026000610a51610cca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0590611cd4565b60405180910390fd5b610b22610b19610cca565b85858403610cd2565b600191505092915050565b6000610b41610b3a610cca565b8484610e9d565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bda610cca565b73ffffffffffffffffffffffffffffffffffffffff16610bf8610987565b73ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590611c54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590611bb4565b60405180910390fd5b610cc781611121565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990611cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da990611bd4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e909190611d14565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490611c94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611b94565b60405180910390fd5b610f888383836111e5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690611bf4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a49190611d66565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111089190611d14565b60405180910390a361111b8484846114c4565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112895750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf90611cf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113d657611327610987565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113925750611363610987565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c890611c74565b60405180910390fd5b6114bf565b600660009054906101000a900460ff16801561143f5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156114be57600754816114518461089d565b61145b9190611d66565b1115801561147e5750600854816114718461089d565b61147b9190611d66565b10155b6114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490611c14565b60405180910390fd5b5b5b505050565b505050565b6000813590506114d881611ee5565b92915050565b6000813590506114ed81611efc565b92915050565b60008135905061150281611f13565b92915050565b60006020828403121561151a57600080fd5b6000611528848285016114c9565b91505092915050565b6000806040838503121561154457600080fd5b6000611552858286016114c9565b9250506020611563858286016114c9565b9150509250929050565b60008060006060848603121561158257600080fd5b6000611590868287016114c9565b93505060206115a1868287016114c9565b92505060406115b2868287016114f3565b9150509250925092565b600080604083850312156115cf57600080fd5b60006115dd858286016114c9565b92505060206115ee858286016114de565b9150509250929050565b6000806040838503121561160b57600080fd5b6000611619858286016114c9565b925050602061162a858286016114f3565b9150509250929050565b6000806000806080858703121561164a57600080fd5b6000611658878288016114de565b9450506020611669878288016114c9565b935050604061167a878288016114f3565b925050606061168b878288016114f3565b91505092959194509250565b6116a081611dbc565b82525050565b6116af81611dce565b82525050565b60006116c082611d4a565b6116ca8185611d55565b93506116da818560208601611e11565b6116e381611ed4565b840191505092915050565b60006116fb602383611d55565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611761602683611d55565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117c7602283611d55565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061182d602683611d55565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611893600683611d55565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006118d3602883611d55565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611939602083611d55565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611979601683611d55565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b60006119b9602583611d55565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a1f602483611d55565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a85602583611d55565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aeb600b83611d55565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b611b2781611dfa565b82525050565b611b3681611e04565b82525050565b6000602082019050611b516000830184611697565b92915050565b6000602082019050611b6c60008301846116a6565b92915050565b60006020820190508181036000830152611b8c81846116b5565b905092915050565b60006020820190508181036000830152611bad816116ee565b9050919050565b60006020820190508181036000830152611bcd81611754565b9050919050565b60006020820190508181036000830152611bed816117ba565b9050919050565b60006020820190508181036000830152611c0d81611820565b9050919050565b60006020820190508181036000830152611c2d81611886565b9050919050565b60006020820190508181036000830152611c4d816118c6565b9050919050565b60006020820190508181036000830152611c6d8161192c565b9050919050565b60006020820190508181036000830152611c8d8161196c565b9050919050565b60006020820190508181036000830152611cad816119ac565b9050919050565b60006020820190508181036000830152611ccd81611a12565b9050919050565b60006020820190508181036000830152611ced81611a78565b9050919050565b60006020820190508181036000830152611d0d81611ade565b9050919050565b6000602082019050611d296000830184611b1e565b92915050565b6000602082019050611d446000830184611b2d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611d7182611dfa565b9150611d7c83611dfa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611db157611db0611e76565b5b828201905092915050565b6000611dc782611dda565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e2f578082015181840152602081019050611e14565b83811115611e3e576000848401525b50505050565b60006002820490506001821680611e5c57607f821691505b60208210811415611e7057611e6f611ea5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611eee81611dbc565b8114611ef957600080fd5b50565b611f0581611dce565b8114611f1057600080fd5b50565b611f1c81611dfa565b8114611f2757600080fd5b5056fea264697066735822122008b476f378cd89a9200c541b7526c21e85855bd62864c55f896039ce7fc2af7b64736f6c63430008000033
Deployed Bytecode Sourcemap
19215:1403:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9187:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11354:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19393:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10307:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19320:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12005:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10149:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12906:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19737:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19594:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19358:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10478:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2629:103;;;:::i;:::-;;19256:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19282:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1986:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9406:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13624:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10818:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11056:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2887:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9187:100;9241:13;9274:5;9267:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9187:100;:::o;11354:169::-;11437:4;11454:39;11463:12;:10;:12::i;:::-;11477:7;11486:6;11454:8;:39::i;:::-;11511:4;11504:11;;11354:169;;;;:::o;19393:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10307:108::-;10368:7;10395:12;;10388:19;;10307:108;:::o;19320:31::-;;;;:::o;12005:492::-;12145:4;12162:36;12172:6;12180:9;12191:6;12162:9;:36::i;:::-;12211:24;12238:11;:19;12250:6;12238:19;;;;;;;;;;;;;;;:33;12258:12;:10;:12::i;:::-;12238:33;;;;;;;;;;;;;;;;12211:60;;12310:6;12290:16;:26;;12282:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12397:57;12406:6;12414:12;:10;:12::i;:::-;12447:6;12428:16;:25;12397:8;:57::i;:::-;12485:4;12478:11;;;12005:492;;;;;:::o;10149:93::-;10207:5;10232:2;10225:9;;10149:93;:::o;12906:215::-;12994:4;13011:80;13020:12;:10;:12::i;:::-;13034:7;13080:10;13043:11;:25;13055:12;:10;:12::i;:::-;13043:25;;;;;;;;;;;;;;;:34;13069:7;13043:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13011:8;:80::i;:::-;13109:4;13102:11;;12906:215;;;;:::o;19737:301::-;2217:12;:10;:12::i;:::-;2206:23;;:7;:5;:7::i;:::-;:23;;;2198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19887:8:::1;19877:7;;:18;;;;;;;;;;;;;;;;;;19922:14;19906:13;;:30;;;;;;;;;;;;;;;;;;19966:17;19947:16;:36;;;;20013:17;19994:16;:36;;;;19737:301:::0;;;;:::o;19594:135::-;2217:12;:10;:12::i;:::-;2206:23;;:7;:5;:7::i;:::-;:23;;;2198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19706:15:::1;19683:10;:20;19694:8;19683:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;19594:135:::0;;:::o;19358:28::-;;;;;;;;;;;;;:::o;10478:127::-;10552:7;10579:9;:18;10589:7;10579:18;;;;;;;;;;;;;;;;10572:25;;10478:127;;;:::o;2629:103::-;2217:12;:10;:12::i;:::-;2206:23;;:7;:5;:7::i;:::-;:23;;;2198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2694:30:::1;2721:1;2694:18;:30::i;:::-;2629:103::o:0;19256:19::-;;;;;;;;;;;;;:::o;19282:31::-;;;;:::o;1986:87::-;2032:7;2059:6;;;;;;;;;;;2052:13;;1986:87;:::o;9406:104::-;9462:13;9495:7;9488:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9406:104;:::o;13624:413::-;13717:4;13734:24;13761:11;:25;13773:12;:10;:12::i;:::-;13761:25;;;;;;;;;;;;;;;:34;13787:7;13761:34;;;;;;;;;;;;;;;;13734:61;;13834:15;13814:16;:35;;13806:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13927:67;13936:12;:10;:12::i;:::-;13950:7;13978:15;13959:16;:34;13927:8;:67::i;:::-;14025:4;14018:11;;;13624:413;;;;:::o;10818:175::-;10904:4;10921:42;10931:12;:10;:12::i;:::-;10945:9;10956:6;10921:9;:42::i;:::-;10981:4;10974:11;;10818:175;;;;:::o;11056:151::-;11145:7;11172:11;:18;11184:5;11172:18;;;;;;;;;;;;;;;:27;11191:7;11172:27;;;;;;;;;;;;;;;;11165:34;;11056:151;;;;:::o;2887:201::-;2217:12;:10;:12::i;:::-;2206:23;;:7;:5;:7::i;:::-;:23;;;2198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2996:1:::1;2976:22;;:8;:22;;;;2968:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3052:28;3071:8;3052:18;:28::i;:::-;2887:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;17308:380::-;17461:1;17444:19;;:5;:19;;;;17436:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17542:1;17523:21;;:7;:21;;;;17515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17626:6;17596:11;:18;17608:5;17596:18;;;;;;;;;;;;;;;:27;17615:7;17596:27;;;;;;;;;;;;;;;:36;;;;17664:7;17648:32;;17657:5;17648:32;;;17673:6;17648:32;;;;;;:::i;:::-;;;;;;;;17308:380;;;:::o;14527:733::-;14685:1;14667:20;;:6;:20;;;;14659:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14769:1;14748:23;;:9;:23;;;;14740:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14824:47;14845:6;14853:9;14864:6;14824:20;:47::i;:::-;14884:21;14908:9;:17;14918:6;14908:17;;;;;;;;;;;;;;;;14884:41;;14961:6;14944:13;:23;;14936:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15082:6;15066:13;:22;15046:9;:17;15056:6;15046:17;;;;;;;;;;;;;;;:42;;;;15134:6;15110:9;:20;15120:9;15110:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15175:9;15158:35;;15167:6;15158:35;;;15186:6;15158:35;;;;;;:::i;:::-;;;;;;;;15206:46;15226:6;15234:9;15245:6;15206:19;:46::i;:::-;14527:733;;;;:::o;3248:191::-;3322:16;3341:6;;;;;;;;;;;3322:25;;3367:8;3358:6;;:17;;;;;;;;;;;;;;;;;;3422:8;3391:40;;3412:8;3391:40;;;;;;;;;;;;3248:191;;:::o;20046:567::-;20198:10;:14;20209:2;20198:14;;;;;;;;;;;;;;;;;;;;;;;;;20197:15;:36;;;;;20217:10;:16;20228:4;20217:16;;;;;;;;;;;;;;;;;;;;;;;;;20216:17;20197:36;20189:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20291:1;20266:27;;:13;;;;;;;;;;;:27;;;20262:148;;;20326:7;:5;:7::i;:::-;20318:15;;:4;:15;;;:32;;;;20343:7;:5;:7::i;:::-;20337:13;;:2;:13;;;20318:32;20310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20392:7;;20262:148;20426:7;;;;;;;;;;;:32;;;;;20445:13;;;;;;;;;;;20437:21;;:4;:21;;;20426:32;20422:184;;;20515:16;;20505:6;20483:19;20499:2;20483:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20567:16;;20557:6;20535:19;20551:2;20535:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20483:100;20475:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20422:184;20046:567;;;;:::o;19017:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;;;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;;;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:692::-;;;;;2651:3;2639:9;2630:7;2626:23;2622:33;2619:2;;;2668:1;2665;2658:12;2619:2;2711:1;2736:50;2778:7;2769:6;2758:9;2754:22;2736:50;:::i;:::-;2726:60;;2682:114;2835:2;2861:53;2906:7;2897:6;2886:9;2882:22;2861:53;:::i;:::-;2851:63;;2806:118;2963:2;2989:53;3034:7;3025:6;3014:9;3010:22;2989:53;:::i;:::-;2979:63;;2934:118;3091:2;3117:53;3162:7;3153:6;3142:9;3138:22;3117:53;:::i;:::-;3107:63;;3062:118;2609:578;;;;;;;:::o;3193:118::-;3280:24;3298:5;3280:24;:::i;:::-;3275:3;3268:37;3258:53;;:::o;3317:109::-;3398:21;3413:5;3398:21;:::i;:::-;3393:3;3386:34;3376:50;;:::o;3432:364::-;;3548:39;3581:5;3548:39;:::i;:::-;3603:71;3667:6;3662:3;3603:71;:::i;:::-;3596:78;;3683:52;3728:6;3723:3;3716:4;3709:5;3705:16;3683:52;:::i;:::-;3760:29;3782:6;3760:29;:::i;:::-;3755:3;3751:39;3744:46;;3524:272;;;;;:::o;3802:367::-;;3965:67;4029:2;4024:3;3965:67;:::i;:::-;3958:74;;4062:34;4058:1;4053:3;4049:11;4042:55;4128:5;4123:2;4118:3;4114:12;4107:27;4160:2;4155:3;4151:12;4144:19;;3948:221;;;:::o;4175:370::-;;4338:67;4402:2;4397:3;4338:67;:::i;:::-;4331:74;;4435:34;4431:1;4426:3;4422:11;4415:55;4501:8;4496:2;4491:3;4487:12;4480:30;4536:2;4531:3;4527:12;4520:19;;4321:224;;;:::o;4551:366::-;;4714:67;4778:2;4773:3;4714:67;:::i;:::-;4707:74;;4811:34;4807:1;4802:3;4798:11;4791:55;4877:4;4872:2;4867:3;4863:12;4856:26;4908:2;4903:3;4899:12;4892:19;;4697:220;;;:::o;4923:370::-;;5086:67;5150:2;5145:3;5086:67;:::i;:::-;5079:74;;5183:34;5179:1;5174:3;5170:11;5163:55;5249:8;5244:2;5239:3;5235:12;5228:30;5284:2;5279:3;5275:12;5268:19;;5069:224;;;:::o;5299:303::-;;5462:66;5526:1;5521:3;5462:66;:::i;:::-;5455:73;;5558:8;5554:1;5549:3;5545:11;5538:29;5593:2;5588:3;5584:12;5577:19;;5445:157;;;:::o;5608:372::-;;5771:67;5835:2;5830:3;5771:67;:::i;:::-;5764:74;;5868:34;5864:1;5859:3;5855:11;5848:55;5934:10;5929:2;5924:3;5920:12;5913:32;5971:2;5966:3;5962:12;5955:19;;5754:226;;;:::o;5986:330::-;;6149:67;6213:2;6208:3;6149:67;:::i;:::-;6142:74;;6246:34;6242:1;6237:3;6233:11;6226:55;6307:2;6302:3;6298:12;6291:19;;6132:184;;;:::o;6322:320::-;;6485:67;6549:2;6544:3;6485:67;:::i;:::-;6478:74;;6582:24;6578:1;6573:3;6569:11;6562:45;6633:2;6628:3;6624:12;6617:19;;6468:174;;;:::o;6648:369::-;;6811:67;6875:2;6870:3;6811:67;:::i;:::-;6804:74;;6908:34;6904:1;6899:3;6895:11;6888:55;6974:7;6969:2;6964:3;6960:12;6953:29;7008:2;7003:3;6999:12;6992:19;;6794:223;;;:::o;7023:368::-;;7186:67;7250:2;7245:3;7186:67;:::i;:::-;7179:74;;7283:34;7279:1;7274:3;7270:11;7263:55;7349:6;7344:2;7339:3;7335:12;7328:28;7382:2;7377:3;7373:12;7366:19;;7169:222;;;:::o;7397:369::-;;7560:67;7624:2;7619:3;7560:67;:::i;:::-;7553:74;;7657:34;7653:1;7648:3;7644:11;7637:55;7723:7;7718:2;7713:3;7709:12;7702:29;7757:2;7752:3;7748:12;7741:19;;7543:223;;;:::o;7772:309::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:13;8028:1;8023:3;8019:11;8012:34;8072:2;8067:3;8063:12;8056:19;;7918:163;;;:::o;8087:118::-;8174:24;8192:5;8174:24;:::i;:::-;8169:3;8162:37;8152:53;;:::o;8211:112::-;8294:22;8310:5;8294:22;:::i;:::-;8289:3;8282:35;8272:51;;:::o;8329:222::-;;8460:2;8449:9;8445:18;8437:26;;8473:71;8541:1;8530:9;8526:17;8517:6;8473:71;:::i;:::-;8427:124;;;;:::o;8557:210::-;;8682:2;8671:9;8667:18;8659:26;;8695:65;8757:1;8746:9;8742:17;8733:6;8695:65;:::i;:::-;8649:118;;;;:::o;8773:313::-;;8924:2;8913:9;8909:18;8901:26;;8973:9;8967:4;8963:20;8959:1;8948:9;8944:17;8937:47;9001:78;9074:4;9065:6;9001:78;:::i;:::-;8993:86;;8891:195;;;;:::o;9092:419::-;;9296:2;9285:9;9281:18;9273:26;;9345:9;9339:4;9335:20;9331:1;9320:9;9316:17;9309:47;9373:131;9499:4;9373:131;:::i;:::-;9365:139;;9263:248;;;:::o;9517:419::-;;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9688:248;;;:::o;9942:419::-;;10146:2;10135:9;10131:18;10123:26;;10195:9;10189:4;10185:20;10181:1;10170:9;10166:17;10159:47;10223:131;10349:4;10223:131;:::i;:::-;10215:139;;10113:248;;;:::o;10367:419::-;;10571:2;10560:9;10556:18;10548:26;;10620:9;10614:4;10610:20;10606:1;10595:9;10591:17;10584:47;10648:131;10774:4;10648:131;:::i;:::-;10640:139;;10538:248;;;:::o;10792:419::-;;10996:2;10985:9;10981:18;10973:26;;11045:9;11039:4;11035:20;11031:1;11020:9;11016:17;11009:47;11073:131;11199:4;11073:131;:::i;:::-;11065:139;;10963:248;;;:::o;11217:419::-;;11421:2;11410:9;11406:18;11398:26;;11470:9;11464:4;11460:20;11456:1;11445:9;11441:17;11434:47;11498:131;11624:4;11498:131;:::i;:::-;11490:139;;11388:248;;;:::o;11642:419::-;;11846:2;11835:9;11831:18;11823:26;;11895:9;11889:4;11885:20;11881:1;11870:9;11866:17;11859:47;11923:131;12049:4;11923:131;:::i;:::-;11915:139;;11813:248;;;:::o;12067:419::-;;12271:2;12260:9;12256:18;12248:26;;12320:9;12314:4;12310:20;12306:1;12295:9;12291:17;12284:47;12348:131;12474:4;12348:131;:::i;:::-;12340:139;;12238:248;;;:::o;12492:419::-;;12696:2;12685:9;12681:18;12673:26;;12745:9;12739:4;12735:20;12731:1;12720:9;12716:17;12709:47;12773:131;12899:4;12773:131;:::i;:::-;12765:139;;12663:248;;;:::o;12917:419::-;;13121:2;13110:9;13106:18;13098:26;;13170:9;13164:4;13160:20;13156:1;13145:9;13141:17;13134:47;13198:131;13324:4;13198:131;:::i;:::-;13190:139;;13088:248;;;:::o;13342:419::-;;13546:2;13535:9;13531:18;13523:26;;13595:9;13589:4;13585:20;13581:1;13570:9;13566:17;13559:47;13623:131;13749:4;13623:131;:::i;:::-;13615:139;;13513:248;;;:::o;13767:419::-;;13971:2;13960:9;13956:18;13948:26;;14020:9;14014:4;14010:20;14006:1;13995:9;13991:17;13984:47;14048:131;14174:4;14048:131;:::i;:::-;14040:139;;13938:248;;;:::o;14192:222::-;;14323:2;14312:9;14308:18;14300:26;;14336:71;14404:1;14393:9;14389:17;14380:6;14336:71;:::i;:::-;14290:124;;;;:::o;14420:214::-;;14547:2;14536:9;14532:18;14524:26;;14560:67;14624:1;14613:9;14609:17;14600:6;14560:67;:::i;:::-;14514:120;;;;:::o;14640:99::-;;14726:5;14720:12;14710:22;;14699:40;;;:::o;14745:169::-;;14863:6;14858:3;14851:19;14903:4;14898:3;14894:14;14879:29;;14841:73;;;;:::o;14920:305::-;;14979:20;14997:1;14979:20;:::i;:::-;14974:25;;15013:20;15031:1;15013:20;:::i;:::-;15008:25;;15167:1;15099:66;15095:74;15092:1;15089:81;15086:2;;;15173:18;;:::i;:::-;15086:2;15217:1;15214;15210:9;15203:16;;14964:261;;;;:::o;15231:96::-;;15297:24;15315:5;15297:24;:::i;:::-;15286:35;;15276:51;;;:::o;15333:90::-;;15410:5;15403:13;15396:21;15385:32;;15375:48;;;:::o;15429:126::-;;15506:42;15499:5;15495:54;15484:65;;15474:81;;;:::o;15561:77::-;;15627:5;15616:16;;15606:32;;;:::o;15644:86::-;;15719:4;15712:5;15708:16;15697:27;;15687:43;;;:::o;15736:307::-;15804:1;15814:113;15828:6;15825:1;15822:13;15814:113;;;15913:1;15908:3;15904:11;15898:18;15894:1;15889:3;15885:11;15878:39;15850:2;15847:1;15843:10;15838:15;;15814:113;;;15945:6;15942:1;15939:13;15936:2;;;16025:1;16016:6;16011:3;16007:16;16000:27;15936:2;15785:258;;;;:::o;16049:320::-;;16130:1;16124:4;16120:12;16110:22;;16177:1;16171:4;16167:12;16198:18;16188:2;;16254:4;16246:6;16242:17;16232:27;;16188:2;16316;16308:6;16305:14;16285:18;16282:38;16279:2;;;16335:18;;:::i;:::-;16279:2;16100:269;;;;:::o;16375:180::-;16423:77;16420:1;16413:88;16520:4;16517:1;16510:15;16544:4;16541:1;16534:15;16561:180;16609:77;16606:1;16599:88;16706:4;16703:1;16696:15;16730:4;16727:1;16720:15;16747:102;;16839:2;16835:7;16830:2;16823:5;16819:14;16815:28;16805:38;;16795:54;;;:::o;16855:122::-;16928:24;16946:5;16928:24;:::i;:::-;16921:5;16918:35;16908:2;;16967:1;16964;16957:12;16908:2;16898:79;:::o;16983:116::-;17053:21;17068:5;17053:21;:::i;:::-;17046:5;17043:32;17033:2;;17089:1;17086;17079:12;17033:2;17023:76;:::o;17105:122::-;17178:24;17196:5;17178:24;:::i;:::-;17171:5;17168:35;17158:2;;17217:1;17214;17207:12;17158:2;17148:79;:::o
Swarm Source
ipfs://08b476f378cd89a9200c541b7526c21e85855bd62864c55f896039ce7fc2af7b
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.