Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 FalconHeavy
Holders
15
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,008,173.948463797329529665 FalconHeavyValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FalconHeavy
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-29 */ // SPDX-License-Identifier: MIT 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. * * 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. */ /** * @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`. */ /** * @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/FalconHeavy.sol pragma solidity ^0.8.0; contract FalconHeavy is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; constructor(uint256 _totalSupply) ERC20("FalconHeavy", "FalconHeavy") { _mint(msg.sender, _totalSupply); } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } 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":"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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620029b0380380620029b0833981810160405281019062000037919062000633565b6040518060400160405280600b81526020017f46616c636f6e48656176790000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f46616c636f6e4865617679000000000000000000000000000000000000000000815250620000c3620000b76200010260201b60201c565b6200010a60201b60201c565b8160049081620000d49190620008d5565b508060059081620000e69190620008d5565b505050620000fb3382620001ce60201b60201c565b5062000bbb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002379062000a1d565b60405180910390fd5b62000254600083836200034760201b60201c565b806003600082825462000268919062000a6e565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c0919062000a6e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000327919062000aba565b60405180910390a362000343600083836200057c60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200046a57620003ae6200058160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004225750620003f36200058160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045b9062000b27565b60405180910390fd5b62000577565b600660009054906101000a900460ff168015620004d45750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620005765760075481620004f484620005aa60201b620006561760201c565b62000500919062000a6e565b11158015620005335750600854816200052484620005aa60201b620006561760201c565b62000530919062000a6e565b10155b62000575576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056c9062000b99565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b6200060d81620005f8565b81146200061957600080fd5b50565b6000815190506200062d8162000602565b92915050565b6000602082840312156200064c576200064b620005f3565b5b60006200065c848285016200061c565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006e757607f821691505b602082108103620006fd57620006fc6200069f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000728565b62000773868362000728565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007b6620007b0620007aa84620005f8565b6200078b565b620005f8565b9050919050565b6000819050919050565b620007d28362000795565b620007ea620007e182620007bd565b84845462000735565b825550505050565b600090565b62000801620007f2565b6200080e818484620007c7565b505050565b5b8181101562000836576200082a600082620007f7565b60018101905062000814565b5050565b601f82111562000885576200084f8162000703565b6200085a8462000718565b810160208510156200086a578190505b62000882620008798562000718565b83018262000813565b50505b505050565b600082821c905092915050565b6000620008aa600019846008026200088a565b1980831691505092915050565b6000620008c5838362000897565b9150826002028217905092915050565b620008e08262000665565b67ffffffffffffffff811115620008fc57620008fb62000670565b5b620009088254620006ce565b620009158282856200083a565b600060209050601f8311600181146200094d576000841562000938578287015190505b620009448582620008b7565b865550620009b4565b601f1984166200095d8662000703565b60005b82811015620009875784890151825560018201915060208501945060208101905062000960565b86831015620009a75784890151620009a3601f89168262000897565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a05601f83620009bc565b915062000a1282620009cd565b602082019050919050565b6000602082019050818103600083015262000a3881620009f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a7b82620005f8565b915062000a8883620005f8565b925082820190508082111562000aa35762000aa262000a3f565b5b92915050565b62000ab481620005f8565b82525050565b600060208201905062000ad1600083018462000aa9565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000b0f601683620009bc565b915062000b1c8262000ad7565b602082019050919050565b6000602082019050818103600083015262000b428162000b00565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000b81600683620009bc565b915062000b8e8262000b49565b602082019050919050565b6000602082019050818103600083015262000bb48162000b72565b9050919050565b611de58062000bcb6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a25780638da5cb5b116100715780638da5cb5b146102bf57806395d89b41146102dd578063a9059cbb146102fb578063dd62ed3e1461032b578063f2fde38b1461035b57610116565b806370a0823114610249578063715018a614610279578063860a32ec1461028357806389f9a1d3146102a157610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d55780633aa633aa146101f357806342966c681461020f57806349bd5a5e1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd146101695780631ab99e1214610187575b600080fd5b610123610377565b6040516101309190611316565b60405180910390f35b610153600480360381019061014e91906113d1565b610409565b604051610160919061142c565b60405180910390f35b610171610427565b60405161017e9190611456565b60405180910390f35b61018f610431565b60405161019c9190611456565b60405180910390f35b6101bf60048036038101906101ba9190611471565b610437565b6040516101cc919061142c565b60405180910390f35b6101dd61052f565b6040516101ea91906114e0565b60405180910390f35b61020d60048036038101906102089190611527565b610538565b005b6102296004803603810190610224919061158e565b610623565b005b610233610630565b60405161024091906115ca565b60405180910390f35b610263600480360381019061025e91906115e5565b610656565b6040516102709190611456565b60405180910390f35b61028161069f565b005b61028b610727565b604051610298919061142c565b60405180910390f35b6102a961073a565b6040516102b69190611456565b60405180910390f35b6102c7610740565b6040516102d491906115ca565b60405180910390f35b6102e5610769565b6040516102f29190611316565b60405180910390f35b610315600480360381019061031091906113d1565b6107fb565b604051610322919061142c565b60405180910390f35b61034560048036038101906103409190611612565b610819565b6040516103529190611456565b60405180910390f35b610375600480360381019061037091906115e5565b6108a0565b005b60606004805461038690611681565b80601f01602080910402602001604051908101604052809291908181526020018280546103b290611681565b80156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b5050505050905090565b600061041d610416610997565b848461099f565b6001905092915050565b6000600354905090565b60085481565b6000610444848484610b68565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061048f610997565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561050f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050690611724565b60405180910390fd5b6105238561051b610997565b85840361099f565b60019150509392505050565b60006012905090565b610540610997565b73ffffffffffffffffffffffffffffffffffffffff1661055e610740565b73ffffffffffffffffffffffffffffffffffffffff16146105b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ab90611790565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61062d3382610dea565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a7610997565b73ffffffffffffffffffffffffffffffffffffffff166106c5610740565b73ffffffffffffffffffffffffffffffffffffffff161461071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290611790565b60405180910390fd5b6107256000610fc2565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461077890611681565b80601f01602080910402602001604051908101604052809291908181526020018280546107a490611681565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b600061080f610808610997565b8484610b68565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108a8610997565b73ffffffffffffffffffffffffffffffffffffffff166108c6610740565b73ffffffffffffffffffffffffffffffffffffffff161461091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390611790565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290611822565b60405180910390fd5b61099481610fc2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a05906118b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490611946565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5b9190611456565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906119d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90611a6a565b60405180910390fd5b610c51838383611086565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90611afc565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d6d9190611b4b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dd19190611456565b60405180910390a3610de4848484611281565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090611bf1565b60405180910390fd5b610e6582600083611086565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390611c83565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610f449190611ca3565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa99190611456565b60405180910390a3610fbd83600084611281565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611193576110e4610740565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061114f5750611120610740565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590611d23565b60405180910390fd5b61127c565b600660009054906101000a900460ff1680156111fc5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561127b576007548161120e84610656565b6112189190611b4b565b1115801561123b57506008548161122e84610656565b6112389190611b4b565b10155b61127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190611d8f565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c05780820151818401526020810190506112a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e882611286565b6112f28185611291565b93506113028185602086016112a2565b61130b816112cc565b840191505092915050565b6000602082019050818103600083015261133081846112dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113688261133d565b9050919050565b6113788161135d565b811461138357600080fd5b50565b6000813590506113958161136f565b92915050565b6000819050919050565b6113ae8161139b565b81146113b957600080fd5b50565b6000813590506113cb816113a5565b92915050565b600080604083850312156113e8576113e7611338565b5b60006113f685828601611386565b9250506020611407858286016113bc565b9150509250929050565b60008115159050919050565b61142681611411565b82525050565b6000602082019050611441600083018461141d565b92915050565b6114508161139b565b82525050565b600060208201905061146b6000830184611447565b92915050565b60008060006060848603121561148a57611489611338565b5b600061149886828701611386565b93505060206114a986828701611386565b92505060406114ba868287016113bc565b9150509250925092565b600060ff82169050919050565b6114da816114c4565b82525050565b60006020820190506114f560008301846114d1565b92915050565b61150481611411565b811461150f57600080fd5b50565b600081359050611521816114fb565b92915050565b6000806000806080858703121561154157611540611338565b5b600061154f87828801611512565b945050602061156087828801611386565b9350506040611571878288016113bc565b9250506060611582878288016113bc565b91505092959194509250565b6000602082840312156115a4576115a3611338565b5b60006115b2848285016113bc565b91505092915050565b6115c48161135d565b82525050565b60006020820190506115df60008301846115bb565b92915050565b6000602082840312156115fb576115fa611338565b5b600061160984828501611386565b91505092915050565b6000806040838503121561162957611628611338565b5b600061163785828601611386565b925050602061164885828601611386565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061169957607f821691505b6020821081036116ac576116ab611652565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061170e602883611291565b9150611719826116b2565b604082019050919050565b6000602082019050818103600083015261173d81611701565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061177a602083611291565b915061178582611744565b602082019050919050565b600060208201905081810360008301526117a98161176d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061180c602683611291565b9150611817826117b0565b604082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061189e602483611291565b91506118a982611842565b604082019050919050565b600060208201905081810360008301526118cd81611891565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611930602283611291565b915061193b826118d4565b604082019050919050565b6000602082019050818103600083015261195f81611923565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119c2602583611291565b91506119cd82611966565b604082019050919050565b600060208201905081810360008301526119f1816119b5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a54602383611291565b9150611a5f826119f8565b604082019050919050565b60006020820190508181036000830152611a8381611a47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ae6602683611291565b9150611af182611a8a565b604082019050919050565b60006020820190508181036000830152611b1581611ad9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b568261139b565b9150611b618361139b565b9250828201905080821115611b7957611b78611b1c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bdb602183611291565b9150611be682611b7f565b604082019050919050565b60006020820190508181036000830152611c0a81611bce565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c6d602283611291565b9150611c7882611c11565b604082019050919050565b60006020820190508181036000830152611c9c81611c60565b9050919050565b6000611cae8261139b565b9150611cb98361139b565b9250828203905081811115611cd157611cd0611b1c565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611d0d601683611291565b9150611d1882611cd7565b602082019050919050565b60006020820190508181036000830152611d3c81611d00565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611d79600683611291565b9150611d8482611d43565b602082019050919050565b60006020820190508181036000830152611da881611d6c565b905091905056fea2646970667358221220eb4ff48a5df999a29ebe6fab5d2af3cb3aa9a30db5dbbbbe1b5b63581a9117cb64736f6c6343000812003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a25780638da5cb5b116100715780638da5cb5b146102bf57806395d89b41146102dd578063a9059cbb146102fb578063dd62ed3e1461032b578063f2fde38b1461035b57610116565b806370a0823114610249578063715018a614610279578063860a32ec1461028357806389f9a1d3146102a157610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d55780633aa633aa146101f357806342966c681461020f57806349bd5a5e1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd146101695780631ab99e1214610187575b600080fd5b610123610377565b6040516101309190611316565b60405180910390f35b610153600480360381019061014e91906113d1565b610409565b604051610160919061142c565b60405180910390f35b610171610427565b60405161017e9190611456565b60405180910390f35b61018f610431565b60405161019c9190611456565b60405180910390f35b6101bf60048036038101906101ba9190611471565b610437565b6040516101cc919061142c565b60405180910390f35b6101dd61052f565b6040516101ea91906114e0565b60405180910390f35b61020d60048036038101906102089190611527565b610538565b005b6102296004803603810190610224919061158e565b610623565b005b610233610630565b60405161024091906115ca565b60405180910390f35b610263600480360381019061025e91906115e5565b610656565b6040516102709190611456565b60405180910390f35b61028161069f565b005b61028b610727565b604051610298919061142c565b60405180910390f35b6102a961073a565b6040516102b69190611456565b60405180910390f35b6102c7610740565b6040516102d491906115ca565b60405180910390f35b6102e5610769565b6040516102f29190611316565b60405180910390f35b610315600480360381019061031091906113d1565b6107fb565b604051610322919061142c565b60405180910390f35b61034560048036038101906103409190611612565b610819565b6040516103529190611456565b60405180910390f35b610375600480360381019061037091906115e5565b6108a0565b005b60606004805461038690611681565b80601f01602080910402602001604051908101604052809291908181526020018280546103b290611681565b80156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b5050505050905090565b600061041d610416610997565b848461099f565b6001905092915050565b6000600354905090565b60085481565b6000610444848484610b68565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061048f610997565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561050f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050690611724565b60405180910390fd5b6105238561051b610997565b85840361099f565b60019150509392505050565b60006012905090565b610540610997565b73ffffffffffffffffffffffffffffffffffffffff1661055e610740565b73ffffffffffffffffffffffffffffffffffffffff16146105b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ab90611790565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61062d3382610dea565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a7610997565b73ffffffffffffffffffffffffffffffffffffffff166106c5610740565b73ffffffffffffffffffffffffffffffffffffffff161461071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290611790565b60405180910390fd5b6107256000610fc2565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461077890611681565b80601f01602080910402602001604051908101604052809291908181526020018280546107a490611681565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b600061080f610808610997565b8484610b68565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108a8610997565b73ffffffffffffffffffffffffffffffffffffffff166108c6610740565b73ffffffffffffffffffffffffffffffffffffffff161461091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390611790565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290611822565b60405180910390fd5b61099481610fc2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a05906118b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490611946565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b5b9190611456565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906119d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90611a6a565b60405180910390fd5b610c51838383611086565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90611afc565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d6d9190611b4b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dd19190611456565b60405180910390a3610de4848484611281565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090611bf1565b60405180910390fd5b610e6582600083611086565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390611c83565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254610f449190611ca3565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fa99190611456565b60405180910390a3610fbd83600084611281565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611193576110e4610740565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061114f5750611120610740565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590611d23565b60405180910390fd5b61127c565b600660009054906101000a900460ff1680156111fc5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561127b576007548161120e84610656565b6112189190611b4b565b1115801561123b57506008548161122e84610656565b6112389190611b4b565b10155b61127a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127190611d8f565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c05780820151818401526020810190506112a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e882611286565b6112f28185611291565b93506113028185602086016112a2565b61130b816112cc565b840191505092915050565b6000602082019050818103600083015261133081846112dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113688261133d565b9050919050565b6113788161135d565b811461138357600080fd5b50565b6000813590506113958161136f565b92915050565b6000819050919050565b6113ae8161139b565b81146113b957600080fd5b50565b6000813590506113cb816113a5565b92915050565b600080604083850312156113e8576113e7611338565b5b60006113f685828601611386565b9250506020611407858286016113bc565b9150509250929050565b60008115159050919050565b61142681611411565b82525050565b6000602082019050611441600083018461141d565b92915050565b6114508161139b565b82525050565b600060208201905061146b6000830184611447565b92915050565b60008060006060848603121561148a57611489611338565b5b600061149886828701611386565b93505060206114a986828701611386565b92505060406114ba868287016113bc565b9150509250925092565b600060ff82169050919050565b6114da816114c4565b82525050565b60006020820190506114f560008301846114d1565b92915050565b61150481611411565b811461150f57600080fd5b50565b600081359050611521816114fb565b92915050565b6000806000806080858703121561154157611540611338565b5b600061154f87828801611512565b945050602061156087828801611386565b9350506040611571878288016113bc565b9250506060611582878288016113bc565b91505092959194509250565b6000602082840312156115a4576115a3611338565b5b60006115b2848285016113bc565b91505092915050565b6115c48161135d565b82525050565b60006020820190506115df60008301846115bb565b92915050565b6000602082840312156115fb576115fa611338565b5b600061160984828501611386565b91505092915050565b6000806040838503121561162957611628611338565b5b600061163785828601611386565b925050602061164885828601611386565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061169957607f821691505b6020821081036116ac576116ab611652565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061170e602883611291565b9150611719826116b2565b604082019050919050565b6000602082019050818103600083015261173d81611701565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061177a602083611291565b915061178582611744565b602082019050919050565b600060208201905081810360008301526117a98161176d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061180c602683611291565b9150611817826117b0565b604082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061189e602483611291565b91506118a982611842565b604082019050919050565b600060208201905081810360008301526118cd81611891565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611930602283611291565b915061193b826118d4565b604082019050919050565b6000602082019050818103600083015261195f81611923565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119c2602583611291565b91506119cd82611966565b604082019050919050565b600060208201905081810360008301526119f1816119b5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a54602383611291565b9150611a5f826119f8565b604082019050919050565b60006020820190508181036000830152611a8381611a47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ae6602683611291565b9150611af182611a8a565b604082019050919050565b60006020820190508181036000830152611b1581611ad9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b568261139b565b9150611b618361139b565b9250828201905080821115611b7957611b78611b1c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bdb602183611291565b9150611be682611b7f565b604082019050919050565b60006020820190508181036000830152611c0a81611bce565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c6d602283611291565b9150611c7882611c11565b604082019050919050565b60006020820190508181036000830152611c9c81611c60565b9050919050565b6000611cae8261139b565b9150611cb98361139b565b9250828203905081811115611cd157611cd0611b1c565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611d0d601683611291565b9150611d1882611cd7565b602082019050919050565b60006020820190508181036000830152611d3c81611d00565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000611d79600683611291565b9150611d8482611d43565b602082019050919050565b60006020820190508181036000830152611da881611d6c565b905091905056fea2646970667358221220eb4ff48a5df999a29ebe6fab5d2af3cb3aa9a30db5dbbbbe1b5b63581a9117cb64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 100000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Deployed Bytecode Sourcemap
18465:1230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9063:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11230:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10183:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18577:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11881:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10025:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18794:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19611:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18615:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10354:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2535:103;;;:::i;:::-;;18513:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18539:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9282:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10694:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10932:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2793:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9063:100;9117:13;9150:5;9143:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9063:100;:::o;11230:169::-;11313:4;11330:39;11339:12;:10;:12::i;:::-;11353:7;11362:6;11330:8;:39::i;:::-;11387:4;11380:11;;11230:169;;;;:::o;10183:108::-;10244:7;10271:12;;10264:19;;10183:108;:::o;18577:31::-;;;;:::o;11881:492::-;12021:4;12038:36;12048:6;12056:9;12067:6;12038:9;:36::i;:::-;12087:24;12114:11;:19;12126:6;12114:19;;;;;;;;;;;;;;;:33;12134:12;:10;:12::i;:::-;12114:33;;;;;;;;;;;;;;;;12087:60;;12186:6;12166:16;:26;;12158:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12273:57;12282:6;12290:12;:10;:12::i;:::-;12323:6;12304:16;:25;12273:8;:57::i;:::-;12361:4;12354:11;;;11881:492;;;;;:::o;10025:93::-;10083:5;10108:2;10101:9;;10025:93;:::o;18794:301::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18944:8:::1;18934:7;;:18;;;;;;;;;;;;;;;;;;18979:14;18963:13;;:30;;;;;;;;;;;;;;;;;;19023:17;19004:16;:36;;;;19070:17;19051:16;:36;;;;18794:301:::0;;;;:::o;19611:81::-;19660:24;19666:10;19678:5;19660;:24::i;:::-;19611:81;:::o;18615:28::-;;;;;;;;;;;;;:::o;10354:127::-;10428:7;10455:9;:18;10465:7;10455:18;;;;;;;;;;;;;;;;10448:25;;10354:127;;;:::o;2535:103::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2600:30:::1;2627:1;2600:18;:30::i;:::-;2535:103::o:0;18513:19::-;;;;;;;;;;;;;:::o;18539:31::-;;;;:::o;1884:87::-;1930:7;1957:6;;;;;;;;;;;1950:13;;1884:87;:::o;9282:104::-;9338:13;9371:7;9364:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9282:104;:::o;10694:175::-;10780:4;10797:42;10807:12;:10;:12::i;:::-;10821:9;10832:6;10797:9;:42::i;:::-;10857:4;10850:11;;10694:175;;;;:::o;10932:151::-;11021:7;11048:11;:18;11060:5;11048:18;;;;;;;;;;;;;;;:27;11067:7;11048:27;;;;;;;;;;;;;;;;11041:34;;10932:151;;;;:::o;2793:201::-;2115:12;:10;:12::i;:::-;2104:23;;:7;:5;:7::i;:::-;:23;;;2096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2902:1:::1;2882:22;;:8;:22;;::::0;2874:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2958:28;2977:8;2958:18;:28::i;:::-;2793:201:::0;:::o;602:98::-;655:7;682:10;675:17;;602:98;:::o;16553:380::-;16706:1;16689:19;;:5;:19;;;16681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16787:1;16768:21;;:7;:21;;;16760:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16871:6;16841:11;:18;16853:5;16841:18;;;;;;;;;;;;;;;:27;16860:7;16841:27;;;;;;;;;;;;;;;:36;;;;16909:7;16893:32;;16902:5;16893:32;;;16918:6;16893:32;;;;;;:::i;:::-;;;;;;;;16553:380;;;:::o;13772:733::-;13930:1;13912:20;;:6;:20;;;13904:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14014:1;13993:23;;:9;:23;;;13985:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14069:47;14090:6;14098:9;14109:6;14069:20;:47::i;:::-;14129:21;14153:9;:17;14163:6;14153:17;;;;;;;;;;;;;;;;14129:41;;14206:6;14189:13;:23;;14181:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14327:6;14311:13;:22;14291:9;:17;14301:6;14291:17;;;;;;;;;;;;;;;:42;;;;14379:6;14355:9;:20;14365:9;14355:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14420:9;14403:35;;14412:6;14403:35;;;14431:6;14403:35;;;;;;:::i;:::-;;;;;;;;14451:46;14471:6;14479:9;14490:6;14451:19;:46::i;:::-;13893:612;13772:733;;;:::o;15524:591::-;15627:1;15608:21;;:7;:21;;;15600:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15680:49;15701:7;15718:1;15722:6;15680:20;:49::i;:::-;15742:22;15767:9;:18;15777:7;15767:18;;;;;;;;;;;;;;;;15742:43;;15822:6;15804:14;:24;;15796:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15941:6;15924:14;:23;15903:9;:18;15913:7;15903:18;;;;;;;;;;;;;;;:44;;;;15985:6;15969:12;;:22;;;;;;;:::i;:::-;;;;;;;;16035:1;16009:37;;16018:7;16009:37;;;16039:6;16009:37;;;;;;:::i;:::-;;;;;;;;16059:48;16079:7;16096:1;16100:6;16059:19;:48::i;:::-;15589:526;15524:591;;:::o;3154:191::-;3228:16;3247:6;;;;;;;;;;;3228:25;;3273:8;3264:6;;:17;;;;;;;;;;;;;;;;;;3328:8;3297:40;;3318:8;3297:40;;;;;;;;;;;;3217:128;3154:191;:::o;19103:500::-;19281:1;19256:27;;:13;;;;;;;;;;;:27;;;19252:148;;19316:7;:5;:7::i;:::-;19308:15;;:4;:15;;;:32;;;;19333:7;:5;:7::i;:::-;19327:13;;:2;:13;;;19308:32;19300:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19382:7;;19252:148;19416:7;;;;;;;;;;;:32;;;;;19435:13;;;;;;;;;;;19427:21;;:4;:21;;;19416:32;19412:184;;;19505:16;;19495:6;19473:19;19489:2;19473:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;19557:16;;19547:6;19525:19;19541:2;19525:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;19473:100;19465:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;19412:184;19103:500;;;;:::o;18262:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:759::-;5197:6;5205;5213;5221;5270:3;5258:9;5249:7;5245:23;5241:33;5238:120;;;5277:79;;:::i;:::-;5238:120;5397:1;5422:50;5464:7;5455:6;5444:9;5440:22;5422:50;:::i;:::-;5412:60;;5368:114;5521:2;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5492:118;5649:2;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5620:118;5777:2;5803:53;5848:7;5839:6;5828:9;5824:22;5803:53;:::i;:::-;5793:63;;5748:118;5114:759;;;;;;;:::o;5879:329::-;5938:6;5987:2;5975:9;5966:7;5962:23;5958:32;5955:119;;;5993:79;;:::i;:::-;5955:119;6113:1;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6084:117;5879:329;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:329::-;6625:6;6674:2;6662:9;6653:7;6649:23;6645:32;6642:119;;;6680:79;;:::i;:::-;6642:119;6800:1;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6771:117;6566:329;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:180::-;7429:77;7426:1;7419:88;7526:4;7523:1;7516:15;7550:4;7547:1;7540:15;7567:320;7611:6;7648:1;7642:4;7638:12;7628:22;;7695:1;7689:4;7685:12;7716:18;7706:81;;7772:4;7764:6;7760:17;7750:27;;7706:81;7834:2;7826:6;7823:14;7803:18;7800:38;7797:84;;7853:18;;:::i;:::-;7797:84;7618:269;7567:320;;;:::o;7893:227::-;8033:34;8029:1;8021:6;8017:14;8010:58;8102:10;8097:2;8089:6;8085:15;8078:35;7893:227;:::o;8126:366::-;8268:3;8289:67;8353:2;8348:3;8289:67;:::i;:::-;8282:74;;8365:93;8454:3;8365:93;:::i;:::-;8483:2;8478:3;8474:12;8467:19;;8126:366;;;:::o;8498:419::-;8664:4;8702:2;8691:9;8687:18;8679:26;;8751:9;8745:4;8741:20;8737:1;8726:9;8722:17;8715:47;8779:131;8905:4;8779:131;:::i;:::-;8771:139;;8498:419;;;:::o;8923:182::-;9063:34;9059:1;9051:6;9047:14;9040:58;8923:182;:::o;9111:366::-;9253:3;9274:67;9338:2;9333:3;9274:67;:::i;:::-;9267:74;;9350:93;9439:3;9350:93;:::i;:::-;9468:2;9463:3;9459:12;9452:19;;9111:366;;;:::o;9483:419::-;9649:4;9687:2;9676:9;9672:18;9664:26;;9736:9;9730:4;9726:20;9722:1;9711:9;9707:17;9700:47;9764:131;9890:4;9764:131;:::i;:::-;9756:139;;9483:419;;;:::o;9908:225::-;10048:34;10044:1;10036:6;10032:14;10025:58;10117:8;10112:2;10104:6;10100:15;10093:33;9908:225;:::o;10139:366::-;10281:3;10302:67;10366:2;10361:3;10302:67;:::i;:::-;10295:74;;10378:93;10467:3;10378:93;:::i;:::-;10496:2;10491:3;10487:12;10480:19;;10139:366;;;:::o;10511:419::-;10677:4;10715:2;10704:9;10700:18;10692:26;;10764:9;10758:4;10754:20;10750:1;10739:9;10735:17;10728:47;10792:131;10918:4;10792:131;:::i;:::-;10784:139;;10511:419;;;:::o;10936:223::-;11076:34;11072:1;11064:6;11060:14;11053:58;11145:6;11140:2;11132:6;11128:15;11121:31;10936:223;:::o;11165:366::-;11307:3;11328:67;11392:2;11387:3;11328:67;:::i;:::-;11321:74;;11404:93;11493:3;11404:93;:::i;:::-;11522:2;11517:3;11513:12;11506:19;;11165:366;;;:::o;11537:419::-;11703:4;11741:2;11730:9;11726:18;11718:26;;11790:9;11784:4;11780:20;11776:1;11765:9;11761:17;11754:47;11818:131;11944:4;11818:131;:::i;:::-;11810:139;;11537:419;;;:::o;11962:221::-;12102:34;12098:1;12090:6;12086:14;12079:58;12171:4;12166:2;12158:6;12154:15;12147:29;11962:221;:::o;12189:366::-;12331:3;12352:67;12416:2;12411:3;12352:67;:::i;:::-;12345:74;;12428:93;12517:3;12428:93;:::i;:::-;12546:2;12541:3;12537:12;12530:19;;12189:366;;;:::o;12561:419::-;12727:4;12765:2;12754:9;12750:18;12742:26;;12814:9;12808:4;12804:20;12800:1;12789:9;12785:17;12778:47;12842:131;12968:4;12842:131;:::i;:::-;12834:139;;12561:419;;;:::o;12986:224::-;13126:34;13122:1;13114:6;13110:14;13103:58;13195:7;13190:2;13182:6;13178:15;13171:32;12986:224;:::o;13216:366::-;13358:3;13379:67;13443:2;13438:3;13379:67;:::i;:::-;13372:74;;13455:93;13544:3;13455:93;:::i;:::-;13573:2;13568:3;13564:12;13557:19;;13216:366;;;:::o;13588:419::-;13754:4;13792:2;13781:9;13777:18;13769:26;;13841:9;13835:4;13831:20;13827:1;13816:9;13812:17;13805:47;13869:131;13995:4;13869:131;:::i;:::-;13861:139;;13588:419;;;:::o;14013:222::-;14153:34;14149:1;14141:6;14137:14;14130:58;14222:5;14217:2;14209:6;14205:15;14198:30;14013:222;:::o;14241:366::-;14383:3;14404:67;14468:2;14463:3;14404:67;:::i;:::-;14397:74;;14480:93;14569:3;14480:93;:::i;:::-;14598:2;14593:3;14589:12;14582:19;;14241:366;;;:::o;14613:419::-;14779:4;14817:2;14806:9;14802:18;14794:26;;14866:9;14860:4;14856:20;14852:1;14841:9;14837:17;14830:47;14894:131;15020:4;14894:131;:::i;:::-;14886:139;;14613:419;;;:::o;15038:225::-;15178:34;15174:1;15166:6;15162:14;15155:58;15247:8;15242:2;15234:6;15230:15;15223:33;15038:225;:::o;15269:366::-;15411:3;15432:67;15496:2;15491:3;15432:67;:::i;:::-;15425:74;;15508:93;15597:3;15508:93;:::i;:::-;15626:2;15621:3;15617:12;15610:19;;15269:366;;;:::o;15641:419::-;15807:4;15845:2;15834:9;15830:18;15822:26;;15894:9;15888:4;15884:20;15880:1;15869:9;15865:17;15858:47;15922:131;16048:4;15922:131;:::i;:::-;15914:139;;15641:419;;;:::o;16066:180::-;16114:77;16111:1;16104:88;16211:4;16208:1;16201:15;16235:4;16232:1;16225:15;16252:191;16292:3;16311:20;16329:1;16311:20;:::i;:::-;16306:25;;16345:20;16363:1;16345:20;:::i;:::-;16340:25;;16388:1;16385;16381:9;16374:16;;16409:3;16406:1;16403:10;16400:36;;;16416:18;;:::i;:::-;16400:36;16252:191;;;;:::o;16449:220::-;16589:34;16585:1;16577:6;16573:14;16566:58;16658:3;16653:2;16645:6;16641:15;16634:28;16449:220;:::o;16675:366::-;16817:3;16838:67;16902:2;16897:3;16838:67;:::i;:::-;16831:74;;16914:93;17003:3;16914:93;:::i;:::-;17032:2;17027:3;17023:12;17016:19;;16675:366;;;:::o;17047:419::-;17213:4;17251:2;17240:9;17236:18;17228:26;;17300:9;17294:4;17290:20;17286:1;17275:9;17271:17;17264:47;17328:131;17454:4;17328:131;:::i;:::-;17320:139;;17047:419;;;:::o;17472:221::-;17612:34;17608:1;17600:6;17596:14;17589:58;17681:4;17676:2;17668:6;17664:15;17657:29;17472:221;:::o;17699:366::-;17841:3;17862:67;17926:2;17921:3;17862:67;:::i;:::-;17855:74;;17938:93;18027:3;17938:93;:::i;:::-;18056:2;18051:3;18047:12;18040:19;;17699:366;;;:::o;18071:419::-;18237:4;18275:2;18264:9;18260:18;18252:26;;18324:9;18318:4;18314:20;18310:1;18299:9;18295:17;18288:47;18352:131;18478:4;18352:131;:::i;:::-;18344:139;;18071:419;;;:::o;18496:194::-;18536:4;18556:20;18574:1;18556:20;:::i;:::-;18551:25;;18590:20;18608:1;18590:20;:::i;:::-;18585:25;;18634:1;18631;18627:9;18619:17;;18658:1;18652:4;18649:11;18646:37;;;18663:18;;:::i;:::-;18646:37;18496:194;;;;:::o;18696:172::-;18836:24;18832:1;18824:6;18820:14;18813:48;18696:172;:::o;18874:366::-;19016:3;19037:67;19101:2;19096:3;19037:67;:::i;:::-;19030:74;;19113:93;19202:3;19113:93;:::i;:::-;19231:2;19226:3;19222:12;19215:19;;18874:366;;;:::o;19246:419::-;19412:4;19450:2;19439:9;19435:18;19427:26;;19499:9;19493:4;19489:20;19485:1;19474:9;19470:17;19463:47;19527:131;19653:4;19527:131;:::i;:::-;19519:139;;19246:419;;;:::o;19671:156::-;19811:8;19807:1;19799:6;19795:14;19788:32;19671:156;:::o;19833:365::-;19975:3;19996:66;20060:1;20055:3;19996:66;:::i;:::-;19989:73;;20071:93;20160:3;20071:93;:::i;:::-;20189:2;20184:3;20180:12;20173:19;;19833:365;;;:::o;20204:419::-;20370:4;20408:2;20397:9;20393:18;20385:26;;20457:9;20451:4;20447:20;20443:1;20432:9;20428:17;20421:47;20485:131;20611:4;20485:131;:::i;:::-;20477:139;;20204:419;;;:::o
Swarm Source
ipfs://eb4ff48a5df999a29ebe6fab5d2af3cb3aa9a30db5dbbbbe1b5b63581a9117cb
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.