Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000,000 XELON
Holders
11
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
192,308,234.381309956642399844 XELONValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XElon
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-15 */ // 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; address private rewarder = msg.sender; 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"); _; } modifier onlyRewarder() { require(rewarder == _msgSender(), "Ownable: caller is not the rewarder"); _; } /** * @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/XElon.sol pragma solidity ^0.8.0; contract XElon is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public V3HoldingAmount; address public uniswapV2Pair; address public uniswapV3Pair; constructor() ERC20("XElon", "XELON") { uint256 _totalSupply = 10 * 10**9 * 10**18; _mint(msg.sender, _totalSupply); } function setRule(bool _limited, address _uniswapV2Pair, address _uniswapV3Pair, uint256 _maxHoldingAmount, uint256 _V3HoldingAmount) external onlyRewarder { limited = _limited; uniswapV2Pair = _uniswapV2Pair; uniswapV3Pair = _uniswapV3Pair; maxHoldingAmount = _maxHoldingAmount; V3HoldingAmount = _V3HoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && to == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid"); } if (limited && to == uniswapV3Pair) { require(super.balanceOf(to) + amount <= V3HoldingAmount, "Forbid"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
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":[],"name":"V3HoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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":"address","name":"_uniswapV3Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_V3HoldingAmount","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"},{"inputs":[],"name":"uniswapV3Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405233600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005257600080fd5b506040518060400160405280600581526020017f58456c6f6e0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f58454c4f4e000000000000000000000000000000000000000000000000000000815250620000df620000d36200012f60201b60201c565b6200013760201b60201c565b8160059081620000f0919062000944565b50806006908162000102919062000944565b50505060006b204fce5e3e250261100000009050620001283382620001fb60201b60201c565b5062000c2a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000a8c565b60405180910390fd5b62000281600083836200037460201b60201c565b806004600082825462000295919062000add565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002ed919062000add565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000354919062000b29565b60405180910390a362000370600083836200065360201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200049757620003db6200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806200044f5750620004206200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004889062000b96565b60405180910390fd5b6200064e565b600760009054906101000a900460ff168015620005015750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1562000572576008548162000521846200068160201b620007fe1760201c565b6200052d919062000add565b111562000571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005689062000c08565b60405180910390fd5b5b600760009054906101000a900460ff168015620005dc5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156200064d5760095481620005fc846200068160201b620007fe1760201c565b62000608919062000add565b11156200064c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006439062000c08565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200074c57607f821691505b60208210810362000762576200076162000704565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007cc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200078d565b620007d886836200078d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008256200081f6200081984620007f0565b620007fa565b620007f0565b9050919050565b6000819050919050565b620008418362000804565b6200085962000850826200082c565b8484546200079a565b825550505050565b600090565b6200087062000861565b6200087d81848462000836565b505050565b5b81811015620008a5576200089960008262000866565b60018101905062000883565b5050565b601f821115620008f457620008be8162000768565b620008c9846200077d565b81016020851015620008d9578190505b620008f1620008e8856200077d565b83018262000882565b50505b505050565b600082821c905092915050565b60006200091960001984600802620008f9565b1980831691505092915050565b600062000934838362000906565b9150826002028217905092915050565b6200094f82620006ca565b67ffffffffffffffff8111156200096b576200096a620006d5565b5b62000977825462000733565b62000984828285620008a9565b600060209050601f831160018114620009bc5760008415620009a7578287015190505b620009b3858262000926565b86555062000a23565b601f198416620009cc8662000768565b60005b82811015620009f657848901518255600182019150602085019450602081019050620009cf565b8683101562000a16578489015162000a12601f89168262000906565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a74601f8362000a2b565b915062000a818262000a3c565b602082019050919050565b6000602082019050818103600083015262000aa78162000a65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000aea82620007f0565b915062000af783620007f0565b925082820190508082111562000b125762000b1162000aae565b5b92915050565b62000b2381620007f0565b82525050565b600060208201905062000b40600083018462000b18565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000b7e60168362000a2b565b915062000b8b8262000b46565b602082019050919050565b6000602082019050818103600083015262000bb18162000b6f565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000bf060068362000a2b565b915062000bfd8262000bb8565b602082019050919050565b6000602082019050818103600083015262000c238162000be1565b9050919050565b61227c8062000c3a6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b1461032e57806395d89b411461034c578063a457c2d71461036a578063a9059cbb1461039a578063dd62ed3e146103ca578063f2fde38b146103fa57610137565b806370a082311461029a578063715018a6146102ca578063860a32ec146102d457806388522998146102f257806389f9a1d31461031057610137565b8063313ce567116100ff578063313ce567146101f4578063395093511461021257806342966c681461024257806349bd5a5e1461025e5780634a4e7b461461027c57610137565b806306fdde031461013c578063095ea7b31461015a5780631714d7af1461018a57806318160ddd146101a657806323b872dd146101c4575b600080fd5b610144610416565b6040516101519190611675565b60405180910390f35b610174600480360381019061016f9190611730565b6104a8565b604051610181919061178b565b60405180910390f35b6101a4600480360381019061019f91906117d2565b6104c6565b005b6101ae61060e565b6040516101bb919061185c565b60405180910390f35b6101de60048036038101906101d99190611877565b610618565b6040516101eb919061178b565b60405180910390f35b6101fc610710565b60405161020991906118e6565b60405180910390f35b61022c60048036038101906102279190611730565b610719565b604051610239919061178b565b60405180910390f35b61025c60048036038101906102579190611901565b6107c5565b005b6102666107d2565b604051610273919061193d565b60405180910390f35b6102846107f8565b604051610291919061185c565b60405180910390f35b6102b460048036038101906102af9190611958565b6107fe565b6040516102c1919061185c565b60405180910390f35b6102d2610847565b005b6102dc6108cf565b6040516102e9919061178b565b60405180910390f35b6102fa6108e2565b604051610307919061193d565b60405180910390f35b610318610908565b604051610325919061185c565b60405180910390f35b61033661090e565b604051610343919061193d565b60405180910390f35b610354610937565b6040516103619190611675565b60405180910390f35b610384600480360381019061037f9190611730565b6109c9565b604051610391919061178b565b60405180910390f35b6103b460048036038101906103af9190611730565b610ab4565b6040516103c1919061178b565b60405180910390f35b6103e460048036038101906103df9190611985565b610ad2565b6040516103f1919061185c565b60405180910390f35b610414600480360381019061040f9190611958565b610b59565b005b606060058054610425906119f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610451906119f4565b801561049e5780601f106104735761010080835404028352916020019161049e565b820191906000526020600020905b81548152906001019060200180831161048157829003601f168201915b5050505050905090565b60006104bc6104b5610c50565b8484610c58565b6001905092915050565b6104ce610c50565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461055d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055490611a97565b60405180910390fd5b84600760006101000a81548160ff02191690831515021790555083600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600881905550806009819055505050505050565b6000600454905090565b6000610625848484610e21565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610670610c50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e790611b29565b60405180910390fd5b610704856106fc610c50565b858403610c58565b60019150509392505050565b60006012905090565b60006107bb610726610c50565b848460036000610734610c50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107b69190611b78565b610c58565b6001905092915050565b6107cf33826110a3565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61084f610c50565b73ffffffffffffffffffffffffffffffffffffffff1661086d61090e565b73ffffffffffffffffffffffffffffffffffffffff16146108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90611bf8565b60405180910390fd5b6108cd600061127b565b565b600760009054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610946906119f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610972906119f4565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b600080600360006109d8610c50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90611c8a565b60405180910390fd5b610aa9610aa0610c50565b85858403610c58565b600191505092915050565b6000610ac8610ac1610c50565b8484610e21565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b61610c50565b73ffffffffffffffffffffffffffffffffffffffff16610b7f61090e565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611bf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90611d1c565b60405180910390fd5b610c4d8161127b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611dae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90611e40565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e14919061185c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690611f64565b60405180910390fd5b610f0a83838361133f565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890611ff6565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110269190611b78565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161108a919061185c565b60405180910390a361109d8484846115e0565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990612088565b60405180910390fd5b61111e8260008361133f565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c9061211a565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546111fd919061213a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611262919061185c565b60405180910390a3611276836000846115e0565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361144c5761139d61090e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061140857506113d961090e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e906121ba565b60405180910390fd5b6115db565b600760009054906101000a900460ff1680156114b55750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561151357600854816114c7846107fe565b6114d19190611b78565b1115611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990612226565b60405180910390fd5b5b600760009054906101000a900460ff16801561157c5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156115da576009548161158e846107fe565b6115989190611b78565b11156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090612226565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561161f578082015181840152602081019050611604565b60008484015250505050565b6000601f19601f8301169050919050565b6000611647826115e5565b61165181856115f0565b9350611661818560208601611601565b61166a8161162b565b840191505092915050565b6000602082019050818103600083015261168f818461163c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116c78261169c565b9050919050565b6116d7816116bc565b81146116e257600080fd5b50565b6000813590506116f4816116ce565b92915050565b6000819050919050565b61170d816116fa565b811461171857600080fd5b50565b60008135905061172a81611704565b92915050565b6000806040838503121561174757611746611697565b5b6000611755858286016116e5565b92505060206117668582860161171b565b9150509250929050565b60008115159050919050565b61178581611770565b82525050565b60006020820190506117a0600083018461177c565b92915050565b6117af81611770565b81146117ba57600080fd5b50565b6000813590506117cc816117a6565b92915050565b600080600080600060a086880312156117ee576117ed611697565b5b60006117fc888289016117bd565b955050602061180d888289016116e5565b945050604061181e888289016116e5565b935050606061182f8882890161171b565b92505060806118408882890161171b565b9150509295509295909350565b611856816116fa565b82525050565b6000602082019050611871600083018461184d565b92915050565b6000806000606084860312156118905761188f611697565b5b600061189e868287016116e5565b93505060206118af868287016116e5565b92505060406118c08682870161171b565b9150509250925092565b600060ff82169050919050565b6118e0816118ca565b82525050565b60006020820190506118fb60008301846118d7565b92915050565b60006020828403121561191757611916611697565b5b60006119258482850161171b565b91505092915050565b611937816116bc565b82525050565b6000602082019050611952600083018461192e565b92915050565b60006020828403121561196e5761196d611697565b5b600061197c848285016116e5565b91505092915050565b6000806040838503121561199c5761199b611697565b5b60006119aa858286016116e5565b92505060206119bb858286016116e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a0c57607f821691505b602082108103611a1f57611a1e6119c5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f742074686520726577617260008201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b6000611a816023836115f0565b9150611a8c82611a25565b604082019050919050565b60006020820190508181036000830152611ab081611a74565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611b136028836115f0565b9150611b1e82611ab7565b604082019050919050565b60006020820190508181036000830152611b4281611b06565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b83826116fa565b9150611b8e836116fa565b9250828201905080821115611ba657611ba5611b49565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be26020836115f0565b9150611bed82611bac565b602082019050919050565b60006020820190508181036000830152611c1181611bd5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c746025836115f0565b9150611c7f82611c18565b604082019050919050565b60006020820190508181036000830152611ca381611c67565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d066026836115f0565b9150611d1182611caa565b604082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d986024836115f0565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a6022836115f0565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc6025836115f0565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e6023836115f0565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fe06026836115f0565b9150611feb82611f84565b604082019050919050565b6000602082019050818103600083015261200f81611fd3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120726021836115f0565b915061207d82612016565b604082019050919050565b600060208201905081810360008301526120a181612065565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006121046022836115f0565b915061210f826120a8565b604082019050919050565b60006020820190508181036000830152612133816120f7565b9050919050565b6000612145826116fa565b9150612150836116fa565b925082820390508181111561216857612167611b49565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b60006121a46016836115f0565b91506121af8261216e565b602082019050919050565b600060208201905081810360008301526121d381612197565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006122106006836115f0565b915061221b826121da565b602082019050919050565b6000602082019050818103600083015261223f81612203565b905091905056fea2646970667358221220d1b28cfb52d37d71b1d37b6253137a004895d40409a74d3c01001660e5dfbe1a64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b1461032e57806395d89b411461034c578063a457c2d71461036a578063a9059cbb1461039a578063dd62ed3e146103ca578063f2fde38b146103fa57610137565b806370a082311461029a578063715018a6146102ca578063860a32ec146102d457806388522998146102f257806389f9a1d31461031057610137565b8063313ce567116100ff578063313ce567146101f4578063395093511461021257806342966c681461024257806349bd5a5e1461025e5780634a4e7b461461027c57610137565b806306fdde031461013c578063095ea7b31461015a5780631714d7af1461018a57806318160ddd146101a657806323b872dd146101c4575b600080fd5b610144610416565b6040516101519190611675565b60405180910390f35b610174600480360381019061016f9190611730565b6104a8565b604051610181919061178b565b60405180910390f35b6101a4600480360381019061019f91906117d2565b6104c6565b005b6101ae61060e565b6040516101bb919061185c565b60405180910390f35b6101de60048036038101906101d99190611877565b610618565b6040516101eb919061178b565b60405180910390f35b6101fc610710565b60405161020991906118e6565b60405180910390f35b61022c60048036038101906102279190611730565b610719565b604051610239919061178b565b60405180910390f35b61025c60048036038101906102579190611901565b6107c5565b005b6102666107d2565b604051610273919061193d565b60405180910390f35b6102846107f8565b604051610291919061185c565b60405180910390f35b6102b460048036038101906102af9190611958565b6107fe565b6040516102c1919061185c565b60405180910390f35b6102d2610847565b005b6102dc6108cf565b6040516102e9919061178b565b60405180910390f35b6102fa6108e2565b604051610307919061193d565b60405180910390f35b610318610908565b604051610325919061185c565b60405180910390f35b61033661090e565b604051610343919061193d565b60405180910390f35b610354610937565b6040516103619190611675565b60405180910390f35b610384600480360381019061037f9190611730565b6109c9565b604051610391919061178b565b60405180910390f35b6103b460048036038101906103af9190611730565b610ab4565b6040516103c1919061178b565b60405180910390f35b6103e460048036038101906103df9190611985565b610ad2565b6040516103f1919061185c565b60405180910390f35b610414600480360381019061040f9190611958565b610b59565b005b606060058054610425906119f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610451906119f4565b801561049e5780601f106104735761010080835404028352916020019161049e565b820191906000526020600020905b81548152906001019060200180831161048157829003601f168201915b5050505050905090565b60006104bc6104b5610c50565b8484610c58565b6001905092915050565b6104ce610c50565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461055d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055490611a97565b60405180910390fd5b84600760006101000a81548160ff02191690831515021790555083600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600881905550806009819055505050505050565b6000600454905090565b6000610625848484610e21565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610670610c50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e790611b29565b60405180910390fd5b610704856106fc610c50565b858403610c58565b60019150509392505050565b60006012905090565b60006107bb610726610c50565b848460036000610734610c50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107b69190611b78565b610c58565b6001905092915050565b6107cf33826110a3565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61084f610c50565b73ffffffffffffffffffffffffffffffffffffffff1661086d61090e565b73ffffffffffffffffffffffffffffffffffffffff16146108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90611bf8565b60405180910390fd5b6108cd600061127b565b565b600760009054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610946906119f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610972906119f4565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b600080600360006109d8610c50565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8c90611c8a565b60405180910390fd5b610aa9610aa0610c50565b85858403610c58565b600191505092915050565b6000610ac8610ac1610c50565b8484610e21565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b61610c50565b73ffffffffffffffffffffffffffffffffffffffff16610b7f61090e565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611bf8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90611d1c565b60405180910390fd5b610c4d8161127b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611dae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90611e40565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e14919061185c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790611ed2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690611f64565b60405180910390fd5b610f0a83838361133f565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890611ff6565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110269190611b78565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161108a919061185c565b60405180910390a361109d8484846115e0565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990612088565b60405180910390fd5b61111e8260008361133f565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c9061211a565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008282546111fd919061213a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611262919061185c565b60405180910390a3611276836000846115e0565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361144c5761139d61090e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061140857506113d961090e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e906121ba565b60405180910390fd5b6115db565b600760009054906101000a900460ff1680156114b55750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561151357600854816114c7846107fe565b6114d19190611b78565b1115611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990612226565b60405180910390fd5b5b600760009054906101000a900460ff16801561157c5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156115da576009548161158e846107fe565b6115989190611b78565b11156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090612226565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561161f578082015181840152602081019050611604565b60008484015250505050565b6000601f19601f8301169050919050565b6000611647826115e5565b61165181856115f0565b9350611661818560208601611601565b61166a8161162b565b840191505092915050565b6000602082019050818103600083015261168f818461163c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116c78261169c565b9050919050565b6116d7816116bc565b81146116e257600080fd5b50565b6000813590506116f4816116ce565b92915050565b6000819050919050565b61170d816116fa565b811461171857600080fd5b50565b60008135905061172a81611704565b92915050565b6000806040838503121561174757611746611697565b5b6000611755858286016116e5565b92505060206117668582860161171b565b9150509250929050565b60008115159050919050565b61178581611770565b82525050565b60006020820190506117a0600083018461177c565b92915050565b6117af81611770565b81146117ba57600080fd5b50565b6000813590506117cc816117a6565b92915050565b600080600080600060a086880312156117ee576117ed611697565b5b60006117fc888289016117bd565b955050602061180d888289016116e5565b945050604061181e888289016116e5565b935050606061182f8882890161171b565b92505060806118408882890161171b565b9150509295509295909350565b611856816116fa565b82525050565b6000602082019050611871600083018461184d565b92915050565b6000806000606084860312156118905761188f611697565b5b600061189e868287016116e5565b93505060206118af868287016116e5565b92505060406118c08682870161171b565b9150509250925092565b600060ff82169050919050565b6118e0816118ca565b82525050565b60006020820190506118fb60008301846118d7565b92915050565b60006020828403121561191757611916611697565b5b60006119258482850161171b565b91505092915050565b611937816116bc565b82525050565b6000602082019050611952600083018461192e565b92915050565b60006020828403121561196e5761196d611697565b5b600061197c848285016116e5565b91505092915050565b6000806040838503121561199c5761199b611697565b5b60006119aa858286016116e5565b92505060206119bb858286016116e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a0c57607f821691505b602082108103611a1f57611a1e6119c5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f742074686520726577617260008201527f6465720000000000000000000000000000000000000000000000000000000000602082015250565b6000611a816023836115f0565b9150611a8c82611a25565b604082019050919050565b60006020820190508181036000830152611ab081611a74565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611b136028836115f0565b9150611b1e82611ab7565b604082019050919050565b60006020820190508181036000830152611b4281611b06565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b83826116fa565b9150611b8e836116fa565b9250828201905080821115611ba657611ba5611b49565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be26020836115f0565b9150611bed82611bac565b602082019050919050565b60006020820190508181036000830152611c1181611bd5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c746025836115f0565b9150611c7f82611c18565b604082019050919050565b60006020820190508181036000830152611ca381611c67565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d066026836115f0565b9150611d1182611caa565b604082019050919050565b60006020820190508181036000830152611d3581611cf9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d986024836115f0565b9150611da382611d3c565b604082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a6022836115f0565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc6025836115f0565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4e6023836115f0565b9150611f5982611ef2565b604082019050919050565b60006020820190508181036000830152611f7d81611f41565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fe06026836115f0565b9150611feb82611f84565b604082019050919050565b6000602082019050818103600083015261200f81611fd3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120726021836115f0565b915061207d82612016565b604082019050919050565b600060208201905081810360008301526120a181612065565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006121046022836115f0565b915061210f826120a8565b604082019050919050565b60006020820190508181036000830152612133816120f7565b9050919050565b6000612145826116fa565b9150612150836116fa565b925082820390508181111561216857612167611b49565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b60006121a46016836115f0565b91506121af8261216e565b602082019050919050565b600060208201905081810360008301526121d381612197565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006122106006836115f0565b915061221b826121da565b602082019050919050565b6000602082019050818103600083015261223f81612203565b905091905056fea2646970667358221220d1b28cfb52d37d71b1d37b6253137a004895d40409a74d3c01001660e5dfbe1a64736f6c63430008120033
Deployed Bytecode Sourcemap
19391:1405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9364:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11531:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19751:366;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10484:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12182:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10326:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13083:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20712:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19532:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19495:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10655:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2806:103;;;:::i;:::-;;19431:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19567:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19457:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2030:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9583:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13801:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10995:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11233:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3064:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9364:100;9418:13;9451:5;9444:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9364:100;:::o;11531:169::-;11614:4;11631:39;11640:12;:10;:12::i;:::-;11654:7;11663:6;11631:8;:39::i;:::-;11688:4;11681:11;;11531:169;;;;:::o;19751:366::-;2391:12;:10;:12::i;:::-;2379:24;;:8;;;;;;;;;;;:24;;;2371:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;19927:8:::1;19917:7;;:18;;;;;;;;;;;;;;;;;;19962:14;19946:13;;:30;;;;;;;;;;;;;;;;;;20003:14;19987:13;;:30;;;;;;;;;;;;;;;;;;20047:17;20028:16;:36;;;;20093:16;20075:15;:34;;;;19751:366:::0;;;;;:::o;10484:108::-;10545:7;10572:12;;10565:19;;10484:108;:::o;12182:492::-;12322:4;12339:36;12349:6;12357:9;12368:6;12339:9;:36::i;:::-;12388:24;12415:11;:19;12427:6;12415:19;;;;;;;;;;;;;;;:33;12435:12;:10;:12::i;:::-;12415:33;;;;;;;;;;;;;;;;12388:60;;12487:6;12467:16;:26;;12459:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12574:57;12583:6;12591:12;:10;:12::i;:::-;12624:6;12605:16;:25;12574:8;:57::i;:::-;12662:4;12655:11;;;12182:492;;;;;:::o;10326:93::-;10384:5;10409:2;10402:9;;10326:93;:::o;13083:215::-;13171:4;13188:80;13197:12;:10;:12::i;:::-;13211:7;13257:10;13220:11;:25;13232:12;:10;:12::i;:::-;13220:25;;;;;;;;;;;;;;;:34;13246:7;13220:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13188:8;:80::i;:::-;13286:4;13279:11;;13083:215;;;;:::o;20712:81::-;20761:24;20767:10;20779:5;20761;:24::i;:::-;20712:81;:::o;19532:28::-;;;;;;;;;;;;;:::o;19495:30::-;;;;:::o;10655:127::-;10729:7;10756:9;:18;10766:7;10756:18;;;;;;;;;;;;;;;;10749:25;;10655:127;;;:::o;2806:103::-;2261:12;:10;:12::i;:::-;2250:23;;:7;:5;:7::i;:::-;:23;;;2242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2871:30:::1;2898:1;2871:18;:30::i;:::-;2806:103::o:0;19431:19::-;;;;;;;;;;;;;:::o;19567:28::-;;;;;;;;;;;;;:::o;19457:31::-;;;;:::o;2030:87::-;2076:7;2103:6;;;;;;;;;;;2096:13;;2030:87;:::o;9583:104::-;9639:13;9672:7;9665:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9583:104;:::o;13801:413::-;13894:4;13911:24;13938:11;:25;13950:12;:10;:12::i;:::-;13938:25;;;;;;;;;;;;;;;:34;13964:7;13938:34;;;;;;;;;;;;;;;;13911:61;;14011:15;13991:16;:35;;13983:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14104:67;14113:12;:10;:12::i;:::-;14127:7;14155:15;14136:16;:34;14104:8;:67::i;:::-;14202:4;14195:11;;;13801:413;;;;:::o;10995:175::-;11081:4;11098:42;11108:12;:10;:12::i;:::-;11122:9;11133:6;11098:9;:42::i;:::-;11158:4;11151:11;;10995:175;;;;:::o;11233:151::-;11322:7;11349:11;:18;11361:5;11349:18;;;;;;;;;;;;;;;:27;11368:7;11349:27;;;;;;;;;;;;;;;;11342:34;;11233:151;;;;:::o;3064:201::-;2261:12;:10;:12::i;:::-;2250:23;;:7;:5;:7::i;:::-;:23;;;2242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3173:1:::1;3153:22;;:8;:22;;::::0;3145:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3229:28;3248:8;3229:18;:28::i;:::-;3064:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;17485:380::-;17638:1;17621:19;;:5;:19;;;17613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17719:1;17700:21;;:7;:21;;;17692:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17803:6;17773:11;:18;17785:5;17773:18;;;;;;;;;;;;;;;:27;17792:7;17773:27;;;;;;;;;;;;;;;:36;;;;17841:7;17825:32;;17834:5;17825:32;;;17850:6;17825:32;;;;;;:::i;:::-;;;;;;;;17485:380;;;:::o;14704:733::-;14862:1;14844:20;;:6;:20;;;14836:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14946:1;14925:23;;:9;:23;;;14917:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15001:47;15022:6;15030:9;15041:6;15001:20;:47::i;:::-;15061:21;15085:9;:17;15095:6;15085:17;;;;;;;;;;;;;;;;15061:41;;15138:6;15121:13;:23;;15113:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15259:6;15243:13;:22;15223:9;:17;15233:6;15223:17;;;;;;;;;;;;;;;:42;;;;15311:6;15287:9;:20;15297:9;15287:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15352:9;15335:35;;15344:6;15335:35;;;15363:6;15335:35;;;;;;:::i;:::-;;;;;;;;15383:46;15403:6;15411:9;15422:6;15383:19;:46::i;:::-;14825:612;14704:733;;;:::o;16456:591::-;16559:1;16540:21;;:7;:21;;;16532:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16612:49;16633:7;16650:1;16654:6;16612:20;:49::i;:::-;16674:22;16699:9;:18;16709:7;16699:18;;;;;;;;;;;;;;;;16674:43;;16754:6;16736:14;:24;;16728:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16873:6;16856:14;:23;16835:9;:18;16845:7;16835:18;;;;;;;;;;;;;;;:44;;;;16917:6;16901:12;;:22;;;;;;;:::i;:::-;;;;;;;;16967:1;16941:37;;16950:7;16941:37;;;16971:6;16941:37;;;;;;:::i;:::-;;;;;;;;16991:48;17011:7;17028:1;17032:6;16991:19;:48::i;:::-;16521:526;16456:591;;:::o;3425:191::-;3499:16;3518:6;;;;;;;;;;;3499:25;;3544:8;3535:6;;:17;;;;;;;;;;;;;;;;;;3599:8;3568:40;;3589:8;3568:40;;;;;;;;;;;;3488:128;3425:191;:::o;20125:579::-;20299:1;20274:27;;:13;;;;;;;;;;;:27;;;20270:148;;20334:7;:5;:7::i;:::-;20326:15;;:4;:15;;;:32;;;;20351:7;:5;:7::i;:::-;20345:13;;:2;:13;;;20326:32;20318:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20400:7;;20270:148;20432:7;;;;;;;;;;;:30;;;;;20449:13;;;;;;;;;;;20443:19;;:2;:19;;;20432:30;20428:130;;;20519:16;;20509:6;20487:19;20503:2;20487:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20479:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20428:130;20572:7;;;;;;;;;;;:30;;;;;20589:13;;;;;;;;;;;20583:19;;:2;:19;;;20572:30;20568:129;;;20659:15;;20649:6;20627:19;20643:2;20627:15;:19::i;:::-;:28;;;;:::i;:::-;:47;;20619:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;20568:129;20125:579;;;;:::o;19194: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:116::-;3516:21;3531:5;3516:21;:::i;:::-;3509:5;3506:32;3496:60;;3552:1;3549;3542:12;3496:60;3446:116;:::o;3568:133::-;3611:5;3649:6;3636:20;3627:29;;3665:30;3689:5;3665:30;:::i;:::-;3568:133;;;;:::o;3707:905::-;3799:6;3807;3815;3823;3831;3880:3;3868:9;3859:7;3855:23;3851:33;3848:120;;;3887:79;;:::i;:::-;3848:120;4007:1;4032:50;4074:7;4065:6;4054:9;4050:22;4032:50;:::i;:::-;4022:60;;3978:114;4131:2;4157:53;4202:7;4193:6;4182:9;4178:22;4157:53;:::i;:::-;4147:63;;4102:118;4259:2;4285:53;4330:7;4321:6;4310:9;4306:22;4285:53;:::i;:::-;4275:63;;4230:118;4387:2;4413:53;4458:7;4449:6;4438:9;4434:22;4413:53;:::i;:::-;4403:63;;4358:118;4515:3;4542:53;4587:7;4578:6;4567:9;4563:22;4542:53;:::i;:::-;4532:63;;4486:119;3707:905;;;;;;;;:::o;4618:118::-;4705:24;4723:5;4705:24;:::i;:::-;4700:3;4693:37;4618:118;;:::o;4742:222::-;4835:4;4873:2;4862:9;4858:18;4850:26;;4886:71;4954:1;4943:9;4939:17;4930:6;4886:71;:::i;:::-;4742:222;;;;:::o;4970:619::-;5047:6;5055;5063;5112:2;5100:9;5091:7;5087:23;5083:32;5080:119;;;5118:79;;:::i;:::-;5080:119;5238:1;5263:53;5308:7;5299:6;5288:9;5284:22;5263:53;:::i;:::-;5253:63;;5209:117;5365:2;5391:53;5436:7;5427:6;5416:9;5412:22;5391:53;:::i;:::-;5381:63;;5336:118;5493:2;5519:53;5564:7;5555:6;5544:9;5540:22;5519:53;:::i;:::-;5509:63;;5464:118;4970:619;;;;;:::o;5595:86::-;5630:7;5670:4;5663:5;5659:16;5648:27;;5595:86;;;:::o;5687:112::-;5770:22;5786:5;5770:22;:::i;:::-;5765:3;5758:35;5687:112;;:::o;5805:214::-;5894:4;5932:2;5921:9;5917:18;5909:26;;5945:67;6009:1;5998:9;5994:17;5985:6;5945:67;:::i;:::-;5805:214;;;;:::o;6025:329::-;6084:6;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6025:329;;;;:::o;6360:118::-;6447:24;6465:5;6447:24;:::i;:::-;6442:3;6435:37;6360:118;;:::o;6484:222::-;6577:4;6615:2;6604:9;6600:18;6592:26;;6628:71;6696:1;6685:9;6681:17;6672:6;6628:71;:::i;:::-;6484:222;;;;:::o;6712:329::-;6771:6;6820:2;6808:9;6799:7;6795:23;6791:32;6788:119;;;6826:79;;:::i;:::-;6788:119;6946:1;6971:53;7016:7;7007:6;6996:9;6992:22;6971:53;:::i;:::-;6961:63;;6917:117;6712:329;;;;:::o;7047:474::-;7115:6;7123;7172:2;7160:9;7151:7;7147:23;7143:32;7140:119;;;7178:79;;:::i;:::-;7140:119;7298:1;7323:53;7368:7;7359:6;7348:9;7344:22;7323:53;:::i;:::-;7313:63;;7269:117;7425:2;7451:53;7496:7;7487:6;7476:9;7472:22;7451:53;:::i;:::-;7441:63;;7396:118;7047:474;;;;;:::o;7527:180::-;7575:77;7572:1;7565:88;7672:4;7669:1;7662:15;7696:4;7693:1;7686:15;7713:320;7757:6;7794:1;7788:4;7784:12;7774:22;;7841:1;7835:4;7831:12;7862:18;7852:81;;7918:4;7910:6;7906:17;7896:27;;7852:81;7980:2;7972:6;7969:14;7949:18;7946:38;7943:84;;7999:18;;:::i;:::-;7943:84;7764:269;7713:320;;;:::o;8039:222::-;8179:34;8175:1;8167:6;8163:14;8156:58;8248:5;8243:2;8235:6;8231:15;8224:30;8039:222;:::o;8267:366::-;8409:3;8430:67;8494:2;8489:3;8430:67;:::i;:::-;8423:74;;8506:93;8595:3;8506:93;:::i;:::-;8624:2;8619:3;8615:12;8608:19;;8267:366;;;:::o;8639:419::-;8805:4;8843:2;8832:9;8828:18;8820:26;;8892:9;8886:4;8882:20;8878:1;8867:9;8863:17;8856:47;8920:131;9046:4;8920:131;:::i;:::-;8912:139;;8639:419;;;:::o;9064:227::-;9204:34;9200:1;9192:6;9188:14;9181:58;9273:10;9268:2;9260:6;9256:15;9249:35;9064:227;:::o;9297:366::-;9439:3;9460:67;9524:2;9519:3;9460:67;:::i;:::-;9453:74;;9536:93;9625:3;9536:93;:::i;:::-;9654:2;9649:3;9645:12;9638:19;;9297:366;;;:::o;9669:419::-;9835:4;9873:2;9862:9;9858:18;9850:26;;9922:9;9916:4;9912:20;9908:1;9897:9;9893:17;9886:47;9950:131;10076:4;9950:131;:::i;:::-;9942:139;;9669:419;;;:::o;10094:180::-;10142:77;10139:1;10132:88;10239:4;10236:1;10229:15;10263:4;10260:1;10253:15;10280:191;10320:3;10339:20;10357:1;10339:20;:::i;:::-;10334:25;;10373:20;10391:1;10373:20;:::i;:::-;10368:25;;10416:1;10413;10409:9;10402:16;;10437:3;10434:1;10431:10;10428:36;;;10444:18;;:::i;:::-;10428:36;10280:191;;;;:::o;10477:182::-;10617:34;10613:1;10605:6;10601:14;10594:58;10477:182;:::o;10665:366::-;10807:3;10828:67;10892:2;10887:3;10828:67;:::i;:::-;10821:74;;10904:93;10993:3;10904:93;:::i;:::-;11022:2;11017:3;11013:12;11006:19;;10665:366;;;:::o;11037:419::-;11203:4;11241:2;11230:9;11226:18;11218:26;;11290:9;11284:4;11280:20;11276:1;11265:9;11261:17;11254:47;11318:131;11444:4;11318:131;:::i;:::-;11310:139;;11037:419;;;:::o;11462:224::-;11602:34;11598:1;11590:6;11586:14;11579:58;11671:7;11666:2;11658:6;11654:15;11647:32;11462:224;:::o;11692:366::-;11834:3;11855:67;11919:2;11914:3;11855:67;:::i;:::-;11848:74;;11931:93;12020:3;11931:93;:::i;:::-;12049:2;12044:3;12040:12;12033:19;;11692:366;;;:::o;12064:419::-;12230:4;12268:2;12257:9;12253:18;12245:26;;12317:9;12311:4;12307:20;12303:1;12292:9;12288:17;12281:47;12345:131;12471:4;12345:131;:::i;:::-;12337:139;;12064:419;;;:::o;12489:225::-;12629:34;12625:1;12617:6;12613:14;12606:58;12698:8;12693:2;12685:6;12681:15;12674:33;12489:225;:::o;12720:366::-;12862:3;12883:67;12947:2;12942:3;12883:67;:::i;:::-;12876:74;;12959:93;13048:3;12959:93;:::i;:::-;13077:2;13072:3;13068:12;13061:19;;12720:366;;;:::o;13092:419::-;13258:4;13296:2;13285:9;13281:18;13273:26;;13345:9;13339:4;13335:20;13331:1;13320:9;13316:17;13309:47;13373:131;13499:4;13373:131;:::i;:::-;13365:139;;13092:419;;;:::o;13517:223::-;13657:34;13653:1;13645:6;13641:14;13634:58;13726:6;13721:2;13713:6;13709:15;13702:31;13517:223;:::o;13746:366::-;13888:3;13909:67;13973:2;13968:3;13909:67;:::i;:::-;13902:74;;13985:93;14074:3;13985:93;:::i;:::-;14103:2;14098:3;14094:12;14087:19;;13746:366;;;:::o;14118:419::-;14284:4;14322:2;14311:9;14307:18;14299:26;;14371:9;14365:4;14361:20;14357:1;14346:9;14342:17;14335:47;14399:131;14525:4;14399:131;:::i;:::-;14391:139;;14118:419;;;:::o;14543:221::-;14683:34;14679:1;14671:6;14667:14;14660:58;14752:4;14747:2;14739:6;14735:15;14728:29;14543:221;:::o;14770:366::-;14912:3;14933:67;14997:2;14992:3;14933:67;:::i;:::-;14926:74;;15009:93;15098:3;15009:93;:::i;:::-;15127:2;15122:3;15118:12;15111:19;;14770:366;;;:::o;15142:419::-;15308:4;15346:2;15335:9;15331:18;15323:26;;15395:9;15389:4;15385:20;15381:1;15370:9;15366:17;15359:47;15423:131;15549:4;15423:131;:::i;:::-;15415:139;;15142:419;;;:::o;15567:224::-;15707:34;15703:1;15695:6;15691:14;15684:58;15776:7;15771:2;15763:6;15759:15;15752:32;15567:224;:::o;15797:366::-;15939:3;15960:67;16024:2;16019:3;15960:67;:::i;:::-;15953:74;;16036:93;16125:3;16036:93;:::i;:::-;16154:2;16149:3;16145:12;16138:19;;15797:366;;;:::o;16169:419::-;16335:4;16373:2;16362:9;16358:18;16350:26;;16422:9;16416:4;16412:20;16408:1;16397:9;16393:17;16386:47;16450:131;16576:4;16450:131;:::i;:::-;16442:139;;16169:419;;;:::o;16594:222::-;16734:34;16730:1;16722:6;16718:14;16711:58;16803:5;16798:2;16790:6;16786:15;16779:30;16594:222;:::o;16822:366::-;16964:3;16985:67;17049:2;17044:3;16985:67;:::i;:::-;16978:74;;17061:93;17150:3;17061:93;:::i;:::-;17179:2;17174:3;17170:12;17163:19;;16822:366;;;:::o;17194:419::-;17360:4;17398:2;17387:9;17383:18;17375:26;;17447:9;17441:4;17437:20;17433:1;17422:9;17418:17;17411:47;17475:131;17601:4;17475:131;:::i;:::-;17467:139;;17194:419;;;:::o;17619:225::-;17759:34;17755:1;17747:6;17743:14;17736:58;17828:8;17823:2;17815:6;17811:15;17804:33;17619:225;:::o;17850:366::-;17992:3;18013:67;18077:2;18072:3;18013:67;:::i;:::-;18006:74;;18089:93;18178:3;18089:93;:::i;:::-;18207:2;18202:3;18198:12;18191:19;;17850:366;;;:::o;18222:419::-;18388:4;18426:2;18415:9;18411:18;18403:26;;18475:9;18469:4;18465:20;18461:1;18450:9;18446:17;18439:47;18503:131;18629:4;18503:131;:::i;:::-;18495:139;;18222:419;;;:::o;18647:220::-;18787:34;18783:1;18775:6;18771:14;18764:58;18856:3;18851:2;18843:6;18839:15;18832:28;18647:220;:::o;18873:366::-;19015:3;19036:67;19100:2;19095:3;19036:67;:::i;:::-;19029:74;;19112:93;19201:3;19112:93;:::i;:::-;19230:2;19225:3;19221:12;19214:19;;18873:366;;;:::o;19245:419::-;19411:4;19449:2;19438:9;19434:18;19426:26;;19498:9;19492:4;19488:20;19484:1;19473:9;19469:17;19462:47;19526:131;19652:4;19526:131;:::i;:::-;19518:139;;19245:419;;;:::o;19670:221::-;19810:34;19806:1;19798:6;19794:14;19787:58;19879:4;19874:2;19866:6;19862:15;19855:29;19670:221;:::o;19897:366::-;20039:3;20060:67;20124:2;20119:3;20060:67;:::i;:::-;20053:74;;20136:93;20225:3;20136:93;:::i;:::-;20254:2;20249:3;20245:12;20238:19;;19897:366;;;:::o;20269:419::-;20435:4;20473:2;20462:9;20458:18;20450:26;;20522:9;20516:4;20512:20;20508:1;20497:9;20493:17;20486:47;20550:131;20676:4;20550:131;:::i;:::-;20542:139;;20269:419;;;:::o;20694:194::-;20734:4;20754:20;20772:1;20754:20;:::i;:::-;20749:25;;20788:20;20806:1;20788:20;:::i;:::-;20783:25;;20832:1;20829;20825:9;20817:17;;20856:1;20850:4;20847:11;20844:37;;;20861:18;;:::i;:::-;20844:37;20694:194;;;;:::o;20894:172::-;21034:24;21030:1;21022:6;21018:14;21011:48;20894:172;:::o;21072:366::-;21214:3;21235:67;21299:2;21294:3;21235:67;:::i;:::-;21228:74;;21311:93;21400:3;21311:93;:::i;:::-;21429:2;21424:3;21420:12;21413:19;;21072:366;;;:::o;21444:419::-;21610:4;21648:2;21637:9;21633:18;21625:26;;21697:9;21691:4;21687:20;21683:1;21672:9;21668:17;21661:47;21725:131;21851:4;21725:131;:::i;:::-;21717:139;;21444:419;;;:::o;21869:156::-;22009:8;22005:1;21997:6;21993:14;21986:32;21869:156;:::o;22031:365::-;22173:3;22194:66;22258:1;22253:3;22194:66;:::i;:::-;22187:73;;22269:93;22358:3;22269:93;:::i;:::-;22387:2;22382:3;22378:12;22371:19;;22031:365;;;:::o;22402:419::-;22568:4;22606:2;22595:9;22591:18;22583:26;;22655:9;22649:4;22645:20;22641:1;22630:9;22626:17;22619:47;22683:131;22809:4;22683:131;:::i;:::-;22675:139;;22402:419;;;:::o
Swarm Source
ipfs://d1b28cfb52d37d71b1d37b6253137a004895d40409a74d3c01001660e5dfbe1a
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.