ERC-20
Overview
Max Total Supply
690,000,000 $KITTEN
Holders
14
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
581,181.010526070030945586 $KITTENValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
KittenToken
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-14 */ /* |\__/,| (`\ |_ _ |.--.) ) ( T ) / (((^_(((/(((_/ KittenCoin: Dog coin? Memecoin? No, Kitten Coin on #ETH Website: https://kitten.org Twitter: https://twitter.com/KittenORG Discord: TBA Telegram: t.me/kittenorg */ // 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/KittenToken.sol pragma solidity ^0.8.0; /* |\__/,| (`\ |_ _ |.--.) ) ( T ) / (((^_(((/(((_/ KittenCoin: Dog coin? Memecoin? No, Kitten Coin on #ETH Website: https://kitten.org Twitter: https://twitter.com/KittenORG Discord: TBA Telegram: t.me/kittenorg */ contract KittenToken is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public authorized; mapping(address => bool) public blacklists; constructor(uint256 _totalSupply) ERC20("Kitten", "$KITTEN") { _mint(msg.sender, _totalSupply); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { require(_address != uniswapV2Pair, "Cannot Blacklist Liquidity"); blacklists[_address] = _isBlacklisting; } function setRule(address _uniswapV2Pair) external onlyOwner { uniswapV2Pair = _uniswapV2Pair; } function setAuthorized(address toAuthorize, bool status) external onlyOwner{ authorized[toAuthorize] = status; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted from trade"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner() || authorized[from] || authorized[to] || authorized[msg.sender], "trading is not started"); return; } } function burn(uint256 value) external { _burn(msg.sender, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"","type":"address"}],"name":"authorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"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":"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":"address","name":"toAuthorize","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"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
60806040523480156200001157600080fd5b5060405162002f5738038062002f57833981810160405281019062000037919062000784565b6040518060400160405280600681526020017f4b697474656e00000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f244b495454454e00000000000000000000000000000000000000000000000000815250620000c3620000b76200011060201b60201c565b6200011860201b60201c565b8160049080519060200190620000db92919062000694565b508060059080519060200190620000f492919062000694565b505050620001093382620001dc60201b60201c565b5062000a3c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002469062000817565b60405180910390fd5b62000263600083836200035660201b60201c565b806003600082825462000277919062000868565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf919062000868565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003369190620008d6565b60405180910390a362000352600083836200066660201b60201c565b5050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003fb5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200043d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004349062000943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200066057620004a56200066b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005195750620004ea6200066b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806200056e5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620005c35750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620006185750600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6200065a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065190620009b5565b60405180910390fd5b62000661565b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006a29062000a06565b90600052602060002090601f016020900481019282620006c6576000855562000712565b82601f10620006e157805160ff191683800117855562000712565b8280016001018555821562000712579182015b8281111562000711578251825591602001919060010190620006f4565b5b50905062000721919062000725565b5090565b5b808211156200074057600081600090555060010162000726565b5090565b600080fd5b6000819050919050565b6200075e8162000749565b81146200076a57600080fd5b50565b6000815190506200077e8162000753565b92915050565b6000602082840312156200079d576200079c62000744565b5b6000620007ad848285016200076d565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007ff601f83620007b6565b91506200080c82620007c7565b602082019050919050565b600060208201905081810360008301526200083281620007f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008758262000749565b9150620008828362000749565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008ba57620008b962000839565b5b828201905092915050565b620008d08162000749565b82525050565b6000602082019050620008ed6000830184620008c5565b92915050565b7f426c61636b6c69737465642066726f6d20747261646500000000000000000000600082015250565b60006200092b601683620007b6565b91506200093882620008f3565b602082019050919050565b600060208201905081810360008301526200095e816200091c565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b60006200099d601683620007b6565b9150620009aa8262000965565b602082019050919050565b60006020820190508181036000830152620009d0816200098e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a1f57607f821691505b6020821081141562000a365762000a35620009d7565b5b50919050565b61250b8062000a4c6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063711bf9b2116100c3578063a457c2d71161007c578063a457c2d7146103b9578063a9059cbb146103e9578063b918161114610419578063db5d779314610449578063dd62ed3e14610465578063f2fde38b1461049557610158565b8063711bf9b21461031b578063715018a614610337578063860a32ec1461034157806389f9a1d31461035f5780638da5cb5b1461037d57806395d89b411461039b57610158565b8063313ce56711610115578063313ce567146102475780633950935114610265578063404e51291461029557806342966c68146102b157806349bd5a5e146102cd57806370a08231146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806316c02129146101ab57806318160ddd146101db5780631ab99e12146101f957806323b872dd14610217575b600080fd5b6101656104b1565b6040516101729190611942565b60405180910390f35b610195600480360381019061019091906119fd565b610543565b6040516101a29190611a58565b60405180910390f35b6101c560048036038101906101c09190611a73565b610561565b6040516101d29190611a58565b60405180910390f35b6101e3610581565b6040516101f09190611aaf565b60405180910390f35b61020161058b565b60405161020e9190611aaf565b60405180910390f35b610231600480360381019061022c9190611aca565b610591565b60405161023e9190611a58565b60405180910390f35b61024f610689565b60405161025c9190611b39565b60405180910390f35b61027f600480360381019061027a91906119fd565b610692565b60405161028c9190611a58565b60405180910390f35b6102af60048036038101906102aa9190611b80565b61073e565b005b6102cb60048036038101906102c69190611bc0565b6108a6565b005b6102d56108b3565b6040516102e29190611bfc565b60405180910390f35b61030560048036038101906103009190611a73565b6108d9565b6040516103129190611aaf565b60405180910390f35b61033560048036038101906103309190611b80565b610922565b005b61033f6109f9565b005b610349610a81565b6040516103569190611a58565b60405180910390f35b610367610a94565b6040516103749190611aaf565b60405180910390f35b610385610a9a565b6040516103929190611bfc565b60405180910390f35b6103a3610ac3565b6040516103b09190611942565b60405180910390f35b6103d360048036038101906103ce91906119fd565b610b55565b6040516103e09190611a58565b60405180910390f35b61040360048036038101906103fe91906119fd565b610c40565b6040516104109190611a58565b60405180910390f35b610433600480360381019061042e9190611a73565b610c5e565b6040516104409190611a58565b60405180910390f35b610463600480360381019061045e9190611a73565b610c7e565b005b61047f600480360381019061047a9190611c17565b610d3e565b60405161048c9190611aaf565b60405180910390f35b6104af60048036038101906104aa9190611a73565b610dc5565b005b6060600480546104c090611c86565b80601f01602080910402602001604051908101604052809291908181526020018280546104ec90611c86565b80156105395780601f1061050e57610100808354040283529160200191610539565b820191906000526020600020905b81548152906001019060200180831161051c57829003601f168201915b5050505050905090565b6000610557610550610ebd565b8484610ec5565b6001905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b600061059e848484611090565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105e9610ebd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066090611d2a565b60405180910390fd5b61067d85610675610ebd565b858403610ec5565b60019150509392505050565b60006012905090565b600061073461069f610ebd565b8484600260006106ad610ebd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461072f9190611d79565b610ec5565b6001905092915050565b610746610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610764610a9a565b73ffffffffffffffffffffffffffffffffffffffff16146107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b190611e1b565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290611e87565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6108b03382611314565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61092a610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610948610a9a565b73ffffffffffffffffffffffffffffffffffffffff161461099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590611e1b565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610a01610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90611e1b565b60405180910390fd5b610a7f60006114ed565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610ad290611c86565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90611c86565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b60008060026000610b64610ebd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890611f19565b60405180910390fd5b610c35610c2c610ebd565b85858403610ec5565b600191505092915050565b6000610c54610c4d610ebd565b8484611090565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610c86610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610ca4610a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190611e1b565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dcd610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610deb610a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890611e1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890611fab565b60405180910390fd5b610eba816114ed565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061203d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c906120cf565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110839190611aaf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612161565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611167906121f3565b60405180910390fd5b61117b8383836115b1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612285565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112979190611d79565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112fb9190611aaf565b60405180910390a361130e8484846118a4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612317565b60405180910390fd5b611390826000836115b1565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e906123a9565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461146f91906123c9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114d49190611aaf565b60405180910390a36114e8836000846118a4565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116555750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612449565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561189e576116f3610a9a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061175e575061172f610a9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806117b25750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118065750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061185a5750600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611890906124b5565b60405180910390fd5b61189f565b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118e35780820151818401526020810190506118c8565b838111156118f2576000848401525b50505050565b6000601f19601f8301169050919050565b6000611914826118a9565b61191e81856118b4565b935061192e8185602086016118c5565b611937816118f8565b840191505092915050565b6000602082019050818103600083015261195c8184611909565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061199482611969565b9050919050565b6119a481611989565b81146119af57600080fd5b50565b6000813590506119c18161199b565b92915050565b6000819050919050565b6119da816119c7565b81146119e557600080fd5b50565b6000813590506119f7816119d1565b92915050565b60008060408385031215611a1457611a13611964565b5b6000611a22858286016119b2565b9250506020611a33858286016119e8565b9150509250929050565b60008115159050919050565b611a5281611a3d565b82525050565b6000602082019050611a6d6000830184611a49565b92915050565b600060208284031215611a8957611a88611964565b5b6000611a97848285016119b2565b91505092915050565b611aa9816119c7565b82525050565b6000602082019050611ac46000830184611aa0565b92915050565b600080600060608486031215611ae357611ae2611964565b5b6000611af1868287016119b2565b9350506020611b02868287016119b2565b9250506040611b13868287016119e8565b9150509250925092565b600060ff82169050919050565b611b3381611b1d565b82525050565b6000602082019050611b4e6000830184611b2a565b92915050565b611b5d81611a3d565b8114611b6857600080fd5b50565b600081359050611b7a81611b54565b92915050565b60008060408385031215611b9757611b96611964565b5b6000611ba5858286016119b2565b9250506020611bb685828601611b6b565b9150509250929050565b600060208284031215611bd657611bd5611964565b5b6000611be4848285016119e8565b91505092915050565b611bf681611989565b82525050565b6000602082019050611c116000830184611bed565b92915050565b60008060408385031215611c2e57611c2d611964565b5b6000611c3c858286016119b2565b9250506020611c4d858286016119b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c9e57607f821691505b60208210811415611cb257611cb1611c57565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611d146028836118b4565b9150611d1f82611cb8565b604082019050919050565b60006020820190508181036000830152611d4381611d07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d84826119c7565b9150611d8f836119c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dc457611dc3611d4a565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e056020836118b4565b9150611e1082611dcf565b602082019050919050565b60006020820190508181036000830152611e3481611df8565b9050919050565b7f43616e6e6f7420426c61636b6c697374204c6971756964697479000000000000600082015250565b6000611e71601a836118b4565b9150611e7c82611e3b565b602082019050919050565b60006020820190508181036000830152611ea081611e64565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f036025836118b4565b9150611f0e82611ea7565b604082019050919050565b60006020820190508181036000830152611f3281611ef6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f956026836118b4565b9150611fa082611f39565b604082019050919050565b60006020820190508181036000830152611fc481611f88565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120276024836118b4565b915061203282611fcb565b604082019050919050565b600060208201905081810360008301526120568161201a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120b96022836118b4565b91506120c48261205d565b604082019050919050565b600060208201905081810360008301526120e8816120ac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061214b6025836118b4565b9150612156826120ef565b604082019050919050565b6000602082019050818103600083015261217a8161213e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121dd6023836118b4565b91506121e882612181565b604082019050919050565b6000602082019050818103600083015261220c816121d0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061226f6026836118b4565b915061227a82612213565b604082019050919050565b6000602082019050818103600083015261229e81612262565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006123016021836118b4565b915061230c826122a5565b604082019050919050565b60006020820190508181036000830152612330816122f4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123936022836118b4565b915061239e82612337565b604082019050919050565b600060208201905081810360008301526123c281612386565b9050919050565b60006123d4826119c7565b91506123df836119c7565b9250828210156123f2576123f1611d4a565b5b828203905092915050565b7f426c61636b6c69737465642066726f6d20747261646500000000000000000000600082015250565b60006124336016836118b4565b915061243e826123fd565b602082019050919050565b6000602082019050818103600083015261246281612426565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061249f6016836118b4565b91506124aa82612469565b602082019050919050565b600060208201905081810360008301526124ce81612492565b905091905056fea264697066735822122029042ba41a18230212a79cfaf75bbbf2cbc1558c8b68c524b344800ee20471c564736f6c634300080b00330000000000000000000000000000000000000000023ac12ef364587bf2000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063711bf9b2116100c3578063a457c2d71161007c578063a457c2d7146103b9578063a9059cbb146103e9578063b918161114610419578063db5d779314610449578063dd62ed3e14610465578063f2fde38b1461049557610158565b8063711bf9b21461031b578063715018a614610337578063860a32ec1461034157806389f9a1d31461035f5780638da5cb5b1461037d57806395d89b411461039b57610158565b8063313ce56711610115578063313ce567146102475780633950935114610265578063404e51291461029557806342966c68146102b157806349bd5a5e146102cd57806370a08231146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806316c02129146101ab57806318160ddd146101db5780631ab99e12146101f957806323b872dd14610217575b600080fd5b6101656104b1565b6040516101729190611942565b60405180910390f35b610195600480360381019061019091906119fd565b610543565b6040516101a29190611a58565b60405180910390f35b6101c560048036038101906101c09190611a73565b610561565b6040516101d29190611a58565b60405180910390f35b6101e3610581565b6040516101f09190611aaf565b60405180910390f35b61020161058b565b60405161020e9190611aaf565b60405180910390f35b610231600480360381019061022c9190611aca565b610591565b60405161023e9190611a58565b60405180910390f35b61024f610689565b60405161025c9190611b39565b60405180910390f35b61027f600480360381019061027a91906119fd565b610692565b60405161028c9190611a58565b60405180910390f35b6102af60048036038101906102aa9190611b80565b61073e565b005b6102cb60048036038101906102c69190611bc0565b6108a6565b005b6102d56108b3565b6040516102e29190611bfc565b60405180910390f35b61030560048036038101906103009190611a73565b6108d9565b6040516103129190611aaf565b60405180910390f35b61033560048036038101906103309190611b80565b610922565b005b61033f6109f9565b005b610349610a81565b6040516103569190611a58565b60405180910390f35b610367610a94565b6040516103749190611aaf565b60405180910390f35b610385610a9a565b6040516103929190611bfc565b60405180910390f35b6103a3610ac3565b6040516103b09190611942565b60405180910390f35b6103d360048036038101906103ce91906119fd565b610b55565b6040516103e09190611a58565b60405180910390f35b61040360048036038101906103fe91906119fd565b610c40565b6040516104109190611a58565b60405180910390f35b610433600480360381019061042e9190611a73565b610c5e565b6040516104409190611a58565b60405180910390f35b610463600480360381019061045e9190611a73565b610c7e565b005b61047f600480360381019061047a9190611c17565b610d3e565b60405161048c9190611aaf565b60405180910390f35b6104af60048036038101906104aa9190611a73565b610dc5565b005b6060600480546104c090611c86565b80601f01602080910402602001604051908101604052809291908181526020018280546104ec90611c86565b80156105395780601f1061050e57610100808354040283529160200191610539565b820191906000526020600020905b81548152906001019060200180831161051c57829003601f168201915b5050505050905090565b6000610557610550610ebd565b8484610ec5565b6001905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b600061059e848484611090565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105e9610ebd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066090611d2a565b60405180910390fd5b61067d85610675610ebd565b858403610ec5565b60019150509392505050565b60006012905090565b600061073461069f610ebd565b8484600260006106ad610ebd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461072f9190611d79565b610ec5565b6001905092915050565b610746610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610764610a9a565b73ffffffffffffffffffffffffffffffffffffffff16146107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b190611e1b565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290611e87565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6108b03382611314565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61092a610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610948610a9a565b73ffffffffffffffffffffffffffffffffffffffff161461099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590611e1b565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610a01610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90611e1b565b60405180910390fd5b610a7f60006114ed565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610ad290611c86565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90611c86565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b5050505050905090565b60008060026000610b64610ebd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890611f19565b60405180910390fd5b610c35610c2c610ebd565b85858403610ec5565b600191505092915050565b6000610c54610c4d610ebd565b8484611090565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610c86610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610ca4610a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190611e1b565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dcd610ebd565b73ffffffffffffffffffffffffffffffffffffffff16610deb610a9a565b73ffffffffffffffffffffffffffffffffffffffff1614610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890611e1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890611fab565b60405180910390fd5b610eba816114ed565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061203d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c906120cf565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110839190611aaf565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612161565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611167906121f3565b60405180910390fd5b61117b8383836115b1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612285565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112979190611d79565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112fb9190611aaf565b60405180910390a361130e8484846118a4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612317565b60405180910390fd5b611390826000836115b1565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e906123a9565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461146f91906123c9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114d49190611aaf565b60405180910390a36114e8836000846118a4565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116555750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612449565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561189e576116f3610a9a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061175e575061172f610a9a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806117b25750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118065750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061185a5750600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611890906124b5565b60405180910390fd5b61189f565b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118e35780820151818401526020810190506118c8565b838111156118f2576000848401525b50505050565b6000601f19601f8301169050919050565b6000611914826118a9565b61191e81856118b4565b935061192e8185602086016118c5565b611937816118f8565b840191505092915050565b6000602082019050818103600083015261195c8184611909565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061199482611969565b9050919050565b6119a481611989565b81146119af57600080fd5b50565b6000813590506119c18161199b565b92915050565b6000819050919050565b6119da816119c7565b81146119e557600080fd5b50565b6000813590506119f7816119d1565b92915050565b60008060408385031215611a1457611a13611964565b5b6000611a22858286016119b2565b9250506020611a33858286016119e8565b9150509250929050565b60008115159050919050565b611a5281611a3d565b82525050565b6000602082019050611a6d6000830184611a49565b92915050565b600060208284031215611a8957611a88611964565b5b6000611a97848285016119b2565b91505092915050565b611aa9816119c7565b82525050565b6000602082019050611ac46000830184611aa0565b92915050565b600080600060608486031215611ae357611ae2611964565b5b6000611af1868287016119b2565b9350506020611b02868287016119b2565b9250506040611b13868287016119e8565b9150509250925092565b600060ff82169050919050565b611b3381611b1d565b82525050565b6000602082019050611b4e6000830184611b2a565b92915050565b611b5d81611a3d565b8114611b6857600080fd5b50565b600081359050611b7a81611b54565b92915050565b60008060408385031215611b9757611b96611964565b5b6000611ba5858286016119b2565b9250506020611bb685828601611b6b565b9150509250929050565b600060208284031215611bd657611bd5611964565b5b6000611be4848285016119e8565b91505092915050565b611bf681611989565b82525050565b6000602082019050611c116000830184611bed565b92915050565b60008060408385031215611c2e57611c2d611964565b5b6000611c3c858286016119b2565b9250506020611c4d858286016119b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c9e57607f821691505b60208210811415611cb257611cb1611c57565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611d146028836118b4565b9150611d1f82611cb8565b604082019050919050565b60006020820190508181036000830152611d4381611d07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d84826119c7565b9150611d8f836119c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dc457611dc3611d4a565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e056020836118b4565b9150611e1082611dcf565b602082019050919050565b60006020820190508181036000830152611e3481611df8565b9050919050565b7f43616e6e6f7420426c61636b6c697374204c6971756964697479000000000000600082015250565b6000611e71601a836118b4565b9150611e7c82611e3b565b602082019050919050565b60006020820190508181036000830152611ea081611e64565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f036025836118b4565b9150611f0e82611ea7565b604082019050919050565b60006020820190508181036000830152611f3281611ef6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f956026836118b4565b9150611fa082611f39565b604082019050919050565b60006020820190508181036000830152611fc481611f88565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120276024836118b4565b915061203282611fcb565b604082019050919050565b600060208201905081810360008301526120568161201a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120b96022836118b4565b91506120c48261205d565b604082019050919050565b600060208201905081810360008301526120e8816120ac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061214b6025836118b4565b9150612156826120ef565b604082019050919050565b6000602082019050818103600083015261217a8161213e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121dd6023836118b4565b91506121e882612181565b604082019050919050565b6000602082019050818103600083015261220c816121d0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061226f6026836118b4565b915061227a82612213565b604082019050919050565b6000602082019050818103600083015261229e81612262565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006123016021836118b4565b915061230c826122a5565b604082019050919050565b60006020820190508181036000830152612330816122f4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123936022836118b4565b915061239e82612337565b604082019050919050565b600060208201905081810360008301526123c281612386565b9050919050565b60006123d4826119c7565b91506123df836119c7565b9250828210156123f2576123f1611d4a565b5b828203905092915050565b7f426c61636b6c69737465642066726f6d20747261646500000000000000000000600082015250565b60006124336016836118b4565b915061243e826123fd565b602082019050919050565b6000602082019050818103600083015261246281612426565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061249f6016836118b4565b91506124aa82612469565b602082019050919050565b600060208201905081810360008301526124ce81612492565b905091905056fea264697066735822122029042ba41a18230212a79cfaf75bbbf2cbc1558c8b68c524b344800ee20471c564736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000023ac12ef364587bf2000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 690000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000023ac12ef364587bf2000000
Deployed Bytecode Sourcemap
19715:1407:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9435:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11602:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19947:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10555:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19825:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12253:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10397:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13154:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20117:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21038:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19863:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10726:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20450:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2836:103;;;:::i;:::-;;19761:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19787:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2185:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9654:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13872:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11066:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19898:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20335:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11304:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3094:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9435:100;9489:13;9522:5;9515:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9435:100;:::o;11602:169::-;11685:4;11702:39;11711:12;:10;:12::i;:::-;11725:7;11734:6;11702:8;:39::i;:::-;11759:4;11752:11;;11602:169;;;;:::o;19947:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10555:108::-;10616:7;10643:12;;10636:19;;10555:108;:::o;19825:31::-;;;;:::o;12253:492::-;12393:4;12410:36;12420:6;12428:9;12439:6;12410:9;:36::i;:::-;12459:24;12486:11;:19;12498:6;12486:19;;;;;;;;;;;;;;;:33;12506:12;:10;:12::i;:::-;12486:33;;;;;;;;;;;;;;;;12459:60;;12558:6;12538:16;:26;;12530:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12645:57;12654:6;12662:12;:10;:12::i;:::-;12695:6;12676:16;:25;12645:8;:57::i;:::-;12733:4;12726:11;;;12253:492;;;;;:::o;10397:93::-;10455:5;10480:2;10473:9;;10397:93;:::o;13154:215::-;13242:4;13259:80;13268:12;:10;:12::i;:::-;13282:7;13328:10;13291:11;:25;13303:12;:10;:12::i;:::-;13291:25;;;;;;;;;;;;;;;:34;13317:7;13291:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13259:8;:80::i;:::-;13357:4;13350:11;;13154:215;;;;:::o;20117:210::-;2416:12;:10;:12::i;:::-;2405:23;;:7;:5;:7::i;:::-;:23;;;2397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20226:13:::1;;;;;;;;;;;20214:25;;:8;:25;;;;20206:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20304:15;20281:10;:20;20292:8;20281:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;20117:210:::0;;:::o;21038:81::-;21087:24;21093:10;21105:5;21087;:24::i;:::-;21038:81;:::o;19863:28::-;;;;;;;;;;;;;:::o;10726:127::-;10800:7;10827:9;:18;10837:7;10827:18;;;;;;;;;;;;;;;;10820:25;;10726:127;;;:::o;20450:126::-;2416:12;:10;:12::i;:::-;2405:23;;:7;:5;:7::i;:::-;:23;;;2397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20562:6:::1;20536:10;:23;20547:11;20536:23;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;20450:126:::0;;:::o;2836:103::-;2416:12;:10;:12::i;:::-;2405:23;;:7;:5;:7::i;:::-;:23;;;2397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2901:30:::1;2928:1;2901:18;:30::i;:::-;2836:103::o:0;19761:19::-;;;;;;;;;;;;;:::o;19787:31::-;;;;:::o;2185:87::-;2231:7;2258:6;;;;;;;;;;;2251:13;;2185:87;:::o;9654:104::-;9710:13;9743:7;9736:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9654:104;:::o;13872:413::-;13965:4;13982:24;14009:11;:25;14021:12;:10;:12::i;:::-;14009:25;;;;;;;;;;;;;;;:34;14035:7;14009:34;;;;;;;;;;;;;;;;13982:61;;14082:15;14062:16;:35;;14054:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14175:67;14184:12;:10;:12::i;:::-;14198:7;14226:15;14207:16;:34;14175:8;:67::i;:::-;14273:4;14266:11;;;13872:413;;;;:::o;11066:175::-;11152:4;11169:42;11179:12;:10;:12::i;:::-;11193:9;11204:6;11169:9;:42::i;:::-;11229:4;11222:11;;11066:175;;;;:::o;19898:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;20335:109::-;2416:12;:10;:12::i;:::-;2405:23;;:7;:5;:7::i;:::-;:23;;;2397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20422:14:::1;20406:13;;:30;;;;;;;;;;;;;;;;;;20335:109:::0;:::o;11304:151::-;11393:7;11420:11;:18;11432:5;11420:18;;;;;;;;;;;;;;;:27;11439:7;11420:27;;;;;;;;;;;;;;;;11413:34;;11304:151;;;;:::o;3094:201::-;2416:12;:10;:12::i;:::-;2405:23;;:7;:5;:7::i;:::-;:23;;;2397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3203:1:::1;3183:22;;:8;:22;;;;3175:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3259:28;3278:8;3259:18;:28::i;:::-;3094:201:::0;:::o;903:98::-;956:7;983:10;976:17;;903:98;:::o;17556:380::-;17709:1;17692:19;;:5;:19;;;;17684:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17790:1;17771:21;;:7;:21;;;;17763:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17874:6;17844:11;:18;17856:5;17844:18;;;;;;;;;;;;;;;:27;17863:7;17844:27;;;;;;;;;;;;;;;:36;;;;17912:7;17896:32;;17905:5;17896:32;;;17921:6;17896:32;;;;;;:::i;:::-;;;;;;;;17556:380;;;:::o;14775:733::-;14933:1;14915:20;;:6;:20;;;;14907:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15017:1;14996:23;;:9;:23;;;;14988:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15072:47;15093:6;15101:9;15112:6;15072:20;:47::i;:::-;15132:21;15156:9;:17;15166:6;15156:17;;;;;;;;;;;;;;;;15132:41;;15209:6;15192:13;:23;;15184:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15330:6;15314:13;:22;15294:9;:17;15304:6;15294:17;;;;;;;;;;;;;;;:42;;;;15382:6;15358:9;:20;15368:9;15358:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15423:9;15406:35;;15415:6;15406:35;;;15434:6;15406:35;;;;;;:::i;:::-;;;;;;;;15454:46;15474:6;15482:9;15493:6;15454:19;:46::i;:::-;14896:612;14775:733;;;:::o;16527:591::-;16630:1;16611:21;;:7;:21;;;;16603:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16683:49;16704:7;16721:1;16725:6;16683:20;:49::i;:::-;16745:22;16770:9;:18;16780:7;16770:18;;;;;;;;;;;;;;;;16745:43;;16825:6;16807:14;:24;;16799:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16944:6;16927:14;:23;16906:9;:18;16916:7;16906:18;;;;;;;;;;;;;;;:44;;;;16988:6;16972:12;;:22;;;;;;;:::i;:::-;;;;;;;;17038:1;17012:37;;17021:7;17012:37;;;17042:6;17012:37;;;;;;:::i;:::-;;;;;;;;17062:48;17082:7;17099:1;17103:6;17062:19;:48::i;:::-;16592:526;16527:591;;:::o;3455:191::-;3529:16;3548:6;;;;;;;;;;;3529:25;;3574:8;3565:6;;:17;;;;;;;;;;;;;;;;;;3629:8;3598:40;;3619:8;3598:40;;;;;;;;;;;;3518:128;3455:191;:::o;20584:446::-;20736:10;:14;20747:2;20736:14;;;;;;;;;;;;;;;;;;;;;;;;;20735:15;:36;;;;;20755:10;:16;20766:4;20755:16;;;;;;;;;;;;;;;;;;;;;;;;;20754:17;20735:36;20727:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20840:1;20815:27;;:13;;;;;;;;;;;:27;;;20811:212;;;20875:7;:5;:7::i;:::-;20867:15;;:4;:15;;;:32;;;;20892:7;:5;:7::i;:::-;20886:13;;:2;:13;;;20867:32;:52;;;;20903:10;:16;20914:4;20903:16;;;;;;;;;;;;;;;;;;;;;;;;;20867:52;:70;;;;20923:10;:14;20934:2;20923:14;;;;;;;;;;;;;;;;;;;;;;;;;20867:70;:96;;;;20941:10;:22;20952:10;20941:22;;;;;;;;;;;;;;;;;;;;;;;;;20867:96;20859:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;21005:7;;20811:212;20584:446;;;;:::o;19265: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:118::-;3916:24;3934:5;3916:24;:::i;:::-;3911:3;3904:37;3829:118;;:::o;3953:222::-;4046:4;4084:2;4073:9;4069:18;4061:26;;4097:71;4165:1;4154:9;4150:17;4141:6;4097:71;:::i;:::-;3953:222;;;;:::o;4181:619::-;4258:6;4266;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:119;;;4329:79;;:::i;:::-;4291:119;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:53;4647:7;4638:6;4627:9;4623:22;4602:53;:::i;:::-;4592:63;;4547:118;4704:2;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4675:118;4181:619;;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:116::-;5306:21;5321:5;5306:21;:::i;:::-;5299:5;5296:32;5286:60;;5342:1;5339;5332:12;5286:60;5236:116;:::o;5358:133::-;5401:5;5439:6;5426:20;5417:29;;5455:30;5479:5;5455:30;:::i;:::-;5358:133;;;;:::o;5497:468::-;5562:6;5570;5619:2;5607:9;5598:7;5594:23;5590:32;5587:119;;;5625:79;;:::i;:::-;5587:119;5745:1;5770:53;5815:7;5806:6;5795:9;5791:22;5770:53;:::i;:::-;5760:63;;5716:117;5872:2;5898:50;5940:7;5931:6;5920:9;5916:22;5898:50;:::i;:::-;5888:60;;5843:115;5497:468;;;;;:::o;5971:329::-;6030:6;6079:2;6067:9;6058:7;6054:23;6050:32;6047:119;;;6085:79;;:::i;:::-;6047:119;6205:1;6230:53;6275:7;6266:6;6255:9;6251:22;6230:53;:::i;:::-;6220:63;;6176:117;5971:329;;;;:::o;6306:118::-;6393:24;6411:5;6393:24;:::i;:::-;6388:3;6381:37;6306:118;;:::o;6430:222::-;6523:4;6561:2;6550:9;6546:18;6538:26;;6574:71;6642:1;6631:9;6627:17;6618:6;6574:71;:::i;:::-;6430:222;;;;:::o;6658:474::-;6726:6;6734;6783:2;6771:9;6762:7;6758:23;6754:32;6751:119;;;6789:79;;:::i;:::-;6751:119;6909:1;6934:53;6979:7;6970:6;6959:9;6955:22;6934:53;:::i;:::-;6924:63;;6880:117;7036:2;7062:53;7107:7;7098:6;7087:9;7083:22;7062:53;:::i;:::-;7052:63;;7007:118;6658:474;;;;;:::o;7138:180::-;7186:77;7183:1;7176:88;7283:4;7280:1;7273:15;7307:4;7304:1;7297:15;7324:320;7368:6;7405:1;7399:4;7395:12;7385:22;;7452:1;7446:4;7442:12;7473:18;7463:81;;7529:4;7521:6;7517:17;7507:27;;7463:81;7591:2;7583:6;7580:14;7560:18;7557:38;7554:84;;;7610:18;;:::i;:::-;7554:84;7375:269;7324:320;;;:::o;7650:227::-;7790:34;7786:1;7778:6;7774:14;7767:58;7859:10;7854:2;7846:6;7842:15;7835:35;7650:227;:::o;7883:366::-;8025:3;8046:67;8110:2;8105:3;8046:67;:::i;:::-;8039:74;;8122:93;8211:3;8122:93;:::i;:::-;8240:2;8235:3;8231:12;8224:19;;7883:366;;;:::o;8255:419::-;8421:4;8459:2;8448:9;8444:18;8436:26;;8508:9;8502:4;8498:20;8494:1;8483:9;8479:17;8472:47;8536:131;8662:4;8536:131;:::i;:::-;8528:139;;8255:419;;;:::o;8680:180::-;8728:77;8725:1;8718:88;8825:4;8822:1;8815:15;8849:4;8846:1;8839:15;8866:305;8906:3;8925:20;8943:1;8925:20;:::i;:::-;8920:25;;8959:20;8977:1;8959:20;:::i;:::-;8954:25;;9113:1;9045:66;9041:74;9038:1;9035:81;9032:107;;;9119:18;;:::i;:::-;9032:107;9163:1;9160;9156:9;9149:16;;8866:305;;;;:::o;9177:182::-;9317:34;9313:1;9305:6;9301:14;9294:58;9177:182;:::o;9365:366::-;9507:3;9528:67;9592:2;9587:3;9528:67;:::i;:::-;9521:74;;9604:93;9693:3;9604:93;:::i;:::-;9722:2;9717:3;9713:12;9706:19;;9365:366;;;:::o;9737:419::-;9903:4;9941:2;9930:9;9926:18;9918:26;;9990:9;9984:4;9980:20;9976:1;9965:9;9961:17;9954:47;10018:131;10144:4;10018:131;:::i;:::-;10010:139;;9737:419;;;:::o;10162:176::-;10302:28;10298:1;10290:6;10286:14;10279:52;10162:176;:::o;10344:366::-;10486:3;10507:67;10571:2;10566:3;10507:67;:::i;:::-;10500:74;;10583:93;10672:3;10583:93;:::i;:::-;10701:2;10696:3;10692:12;10685:19;;10344:366;;;:::o;10716:419::-;10882:4;10920:2;10909:9;10905:18;10897:26;;10969:9;10963:4;10959:20;10955:1;10944:9;10940:17;10933:47;10997:131;11123:4;10997:131;:::i;:::-;10989:139;;10716:419;;;:::o;11141:224::-;11281:34;11277:1;11269:6;11265:14;11258:58;11350:7;11345:2;11337:6;11333:15;11326:32;11141:224;:::o;11371:366::-;11513:3;11534:67;11598:2;11593:3;11534:67;:::i;:::-;11527:74;;11610:93;11699:3;11610:93;:::i;:::-;11728:2;11723:3;11719:12;11712:19;;11371:366;;;:::o;11743:419::-;11909:4;11947:2;11936:9;11932:18;11924:26;;11996:9;11990:4;11986:20;11982:1;11971:9;11967:17;11960:47;12024:131;12150:4;12024:131;:::i;:::-;12016:139;;11743:419;;;:::o;12168:225::-;12308:34;12304:1;12296:6;12292:14;12285:58;12377:8;12372:2;12364:6;12360:15;12353:33;12168:225;:::o;12399:366::-;12541:3;12562:67;12626:2;12621:3;12562:67;:::i;:::-;12555:74;;12638:93;12727:3;12638:93;:::i;:::-;12756:2;12751:3;12747:12;12740:19;;12399:366;;;:::o;12771:419::-;12937:4;12975:2;12964:9;12960:18;12952:26;;13024:9;13018:4;13014:20;13010:1;12999:9;12995:17;12988:47;13052:131;13178:4;13052:131;:::i;:::-;13044:139;;12771:419;;;:::o;13196:223::-;13336:34;13332:1;13324:6;13320:14;13313:58;13405:6;13400:2;13392:6;13388:15;13381:31;13196:223;:::o;13425:366::-;13567:3;13588:67;13652:2;13647:3;13588:67;:::i;:::-;13581:74;;13664:93;13753:3;13664:93;:::i;:::-;13782:2;13777:3;13773:12;13766:19;;13425:366;;;:::o;13797:419::-;13963:4;14001:2;13990:9;13986:18;13978:26;;14050:9;14044:4;14040:20;14036:1;14025:9;14021:17;14014:47;14078:131;14204:4;14078:131;:::i;:::-;14070:139;;13797:419;;;:::o;14222:221::-;14362:34;14358:1;14350:6;14346:14;14339:58;14431:4;14426:2;14418:6;14414:15;14407:29;14222:221;:::o;14449:366::-;14591:3;14612:67;14676:2;14671:3;14612:67;:::i;:::-;14605:74;;14688:93;14777:3;14688:93;:::i;:::-;14806:2;14801:3;14797:12;14790:19;;14449:366;;;:::o;14821:419::-;14987:4;15025:2;15014:9;15010:18;15002:26;;15074:9;15068:4;15064:20;15060:1;15049:9;15045:17;15038:47;15102:131;15228:4;15102:131;:::i;:::-;15094:139;;14821:419;;;:::o;15246:224::-;15386:34;15382:1;15374:6;15370:14;15363:58;15455:7;15450:2;15442:6;15438:15;15431:32;15246:224;:::o;15476:366::-;15618:3;15639:67;15703:2;15698:3;15639:67;:::i;:::-;15632:74;;15715:93;15804:3;15715:93;:::i;:::-;15833:2;15828:3;15824:12;15817:19;;15476:366;;;:::o;15848:419::-;16014:4;16052:2;16041:9;16037:18;16029:26;;16101:9;16095:4;16091:20;16087:1;16076:9;16072:17;16065:47;16129:131;16255:4;16129:131;:::i;:::-;16121:139;;15848:419;;;:::o;16273:222::-;16413:34;16409:1;16401:6;16397:14;16390:58;16482:5;16477:2;16469:6;16465:15;16458:30;16273:222;:::o;16501:366::-;16643:3;16664:67;16728:2;16723:3;16664:67;:::i;:::-;16657:74;;16740:93;16829:3;16740:93;:::i;:::-;16858:2;16853:3;16849:12;16842:19;;16501:366;;;:::o;16873:419::-;17039:4;17077:2;17066:9;17062:18;17054:26;;17126:9;17120:4;17116:20;17112:1;17101:9;17097:17;17090:47;17154:131;17280:4;17154:131;:::i;:::-;17146:139;;16873:419;;;:::o;17298:225::-;17438:34;17434:1;17426:6;17422:14;17415:58;17507:8;17502:2;17494:6;17490:15;17483:33;17298:225;:::o;17529:366::-;17671:3;17692:67;17756:2;17751:3;17692:67;:::i;:::-;17685:74;;17768:93;17857:3;17768:93;:::i;:::-;17886:2;17881:3;17877:12;17870:19;;17529:366;;;:::o;17901:419::-;18067:4;18105:2;18094:9;18090:18;18082:26;;18154:9;18148:4;18144:20;18140:1;18129:9;18125:17;18118:47;18182:131;18308:4;18182:131;:::i;:::-;18174:139;;17901:419;;;:::o;18326:220::-;18466:34;18462:1;18454:6;18450:14;18443:58;18535:3;18530:2;18522:6;18518:15;18511:28;18326:220;:::o;18552:366::-;18694:3;18715:67;18779:2;18774:3;18715:67;:::i;:::-;18708:74;;18791:93;18880:3;18791:93;:::i;:::-;18909:2;18904:3;18900:12;18893:19;;18552:366;;;:::o;18924:419::-;19090:4;19128:2;19117:9;19113:18;19105:26;;19177:9;19171:4;19167:20;19163:1;19152:9;19148:17;19141:47;19205:131;19331:4;19205:131;:::i;:::-;19197:139;;18924:419;;;:::o;19349:221::-;19489:34;19485:1;19477:6;19473:14;19466:58;19558:4;19553:2;19545:6;19541:15;19534:29;19349:221;:::o;19576:366::-;19718:3;19739:67;19803:2;19798:3;19739:67;:::i;:::-;19732:74;;19815:93;19904:3;19815:93;:::i;:::-;19933:2;19928:3;19924:12;19917:19;;19576:366;;;:::o;19948:419::-;20114:4;20152:2;20141:9;20137:18;20129:26;;20201:9;20195:4;20191:20;20187:1;20176:9;20172:17;20165:47;20229:131;20355:4;20229:131;:::i;:::-;20221:139;;19948:419;;;:::o;20373:191::-;20413:4;20433:20;20451:1;20433:20;:::i;:::-;20428:25;;20467:20;20485:1;20467:20;:::i;:::-;20462:25;;20506:1;20503;20500:8;20497:34;;;20511:18;;:::i;:::-;20497:34;20556:1;20553;20549:9;20541:17;;20373:191;;;;:::o;20570:172::-;20710:24;20706:1;20698:6;20694:14;20687:48;20570:172;:::o;20748:366::-;20890:3;20911:67;20975:2;20970:3;20911:67;:::i;:::-;20904:74;;20987:93;21076:3;20987:93;:::i;:::-;21105:2;21100:3;21096:12;21089:19;;20748:366;;;:::o;21120:419::-;21286:4;21324:2;21313:9;21309:18;21301:26;;21373:9;21367:4;21363:20;21359:1;21348:9;21344:17;21337:47;21401:131;21527:4;21401:131;:::i;:::-;21393:139;;21120:419;;;:::o;21545:172::-;21685:24;21681:1;21673:6;21669:14;21662:48;21545:172;:::o;21723:366::-;21865:3;21886:67;21950:2;21945:3;21886:67;:::i;:::-;21879:74;;21962:93;22051:3;21962:93;:::i;:::-;22080:2;22075:3;22071:12;22064:19;;21723:366;;;:::o;22095:419::-;22261:4;22299:2;22288:9;22284:18;22276:26;;22348:9;22342:4;22338:20;22334:1;22323:9;22319:17;22312:47;22376:131;22502:4;22376:131;:::i;:::-;22368:139;;22095:419;;;:::o
Swarm Source
ipfs://29042ba41a18230212a79cfaf75bbbf2cbc1558c8b68c524b344800ee20471c5
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.