ERC-20
Overview
Max Total Supply
1,000,000,000 METRO
Holders
3
Total Transfers
-
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MetroToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-23 */ // SPDX-License-Identifier: MIT // SonicLabs Core Contracts (last updated v1.0.0) pragma solidity 0.8.20; /* * @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. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /** * @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); } /** * @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 GSN 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 payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 guidelines: functions revert instead * of 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 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 to 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 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract MetroToken is ERC20("Metronix", "METRO"), Ownable { uint256 public minted; uint256 public burned; function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); minted+=_amount; } function burn(uint256 _amount) public { require (balanceOf(msg.sender)>=_amount); _burn(msg.sender, _amount); burned+=_amount; } function getOwner() external view returns (address) { return owner(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","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":[],"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"}]
Contract Creation Code
608060405234801562000010575f80fd5b506040518060400160405280600881526020017f4d6574726f6e69780000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4554524f00000000000000000000000000000000000000000000000000000081525081600390816200008e9190620003de565b508060049081620000a09190620003de565b50601260055f6101000a81548160ff021916908360ff16021790555050505f620000cf6200017360201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620004c2565b5f33905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620001f657607f821691505b6020821081036200020c576200020b620001b1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000233565b6200027c868362000233565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620002c6620002c0620002ba8462000294565b6200029d565b62000294565b9050919050565b5f819050919050565b620002e183620002a6565b620002f9620002f082620002cd565b8484546200023f565b825550505050565b5f90565b6200030f62000301565b6200031c818484620002d6565b505050565b5b818110156200034357620003375f8262000305565b60018101905062000322565b5050565b601f82111562000392576200035c8162000212565b620003678462000224565b8101602085101562000377578190505b6200038f620003868562000224565b83018262000321565b50505b505050565b5f82821c905092915050565b5f620003b45f198460080262000397565b1980831691505092915050565b5f620003ce8383620003a3565b9150826002028217905092915050565b620003e9826200017a565b67ffffffffffffffff81111562000405576200040462000184565b5b620004118254620001de565b6200041e82828562000347565b5f60209050601f83116001811462000454575f84156200043f578287015190505b6200044b8582620003c1565b865550620004ba565b601f198416620004648662000212565b5f5b828110156200048d5784890151825560018201915060208501945060208101905062000466565b86831015620004ad5784890151620004a9601f891682620003a3565b8355505b6001600288020188555050505b505050505050565b611eac80620004d05f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f7578063a457c2d714610315578063a9059cbb14610345578063dd62ed3e14610375578063f2fde38b146103a55761011f565b806370a0823114610263578063715018a61461029357806373f425611461029d578063893d20e8146102bb5780638da5cb5b146102d95761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806340c10f191461020d57806342966c68146102295780634f02c420146102455761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c1565b6040516101389190611573565b60405180910390f35b61015b60048036038101906101569190611624565b610451565b604051610168919061167c565b60405180910390f35b61017961046e565b60405161018691906116a4565b60405180910390f35b6101a960048036038101906101a491906116bd565b610477565b6040516101b6919061167c565b60405180910390f35b6101c761054b565b6040516101d49190611728565b60405180910390f35b6101f760048036038101906101f29190611624565b610560565b604051610204919061167c565b60405180910390f35b61022760048036038101906102229190611624565b61060e565b005b610243600480360381019061023e9190611741565b6106b0565b005b61024d6106e9565b60405161025a91906116a4565b60405180910390f35b61027d6004803603810190610278919061176c565b6106ef565b60405161028a91906116a4565b60405180910390f35b61029b610734565b005b6102a561086f565b6040516102b291906116a4565b60405180910390f35b6102c3610875565b6040516102d091906117a6565b60405180910390f35b6102e1610883565b6040516102ee91906117a6565b60405180910390f35b6102ff6108ac565b60405161030c9190611573565b60405180910390f35b61032f600480360381019061032a9190611624565b61093c565b60405161033c919061167c565b60405180910390f35b61035f600480360381019061035a9190611624565b610a04565b60405161036c919061167c565b60405180910390f35b61038f600480360381019061038a91906117bf565b610a21565b60405161039c91906116a4565b60405180910390f35b6103bf60048036038101906103ba919061176c565b610aa3565b005b6060600380546103d09061182a565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc9061182a565b80156104475780601f1061041e57610100808354040283529160200191610447565b820191905f5260205f20905b81548152906001019060200180831161042a57829003601f168201915b5050505050905090565b5f61046461045d610c4d565b8484610c54565b6001905092915050565b5f600254905090565b5f610483848484610e17565b6105408461048f610c4d565b61053b85604051806060016040528060288152602001611e2a6028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104f2610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b610c54565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f61060461056c610c4d565b846105ff8560015f61057c610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b610c54565b6001905092915050565b610616610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610634610883565b73ffffffffffffffffffffffffffffffffffffffff161461068a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610681906118a4565b60405180910390fd5b610694828261115a565b8060065f8282546106a591906118ef565b925050819055505050565b806106ba336106ef565b10156106c4575f80fd5b6106ce33826112e6565b8060075f8282546106df91906118ef565b9250508190555050565b60065481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61073c610c4d565b73ffffffffffffffffffffffffffffffffffffffff1661075a610883565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a7906118a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b5f61087e610883565b905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108bb9061182a565b80601f01602080910402602001604051908101604052809291908181526020018280546108e79061182a565b80156109325780601f1061090957610100808354040283529160200191610932565b820191905f5260205f20905b81548152906001019060200180831161091557829003601f168201915b5050505050905090565b5f6109fa610948610c4d565b846109f585604051806060016040528060258152602001611e526025913960015f610971610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b610c54565b6001905092915050565b5f610a17610a10610c4d565b8484610e17565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610aab610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610ac9610883565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906118a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490611992565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990611a20565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790611aae565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a91906116a4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611b3c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90611bca565b60405180910390fd5b610efe83838361148c565b610f6781604051806060016040528060268152602001611e04602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610ff6815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109391906116a4565b60405180910390a3505050565b5f8383111582906110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9190611573565b60405180910390fd5b5082846110f49190611be8565b90509392505050565b5f80828461110b91906118ef565b905083811015611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790611c65565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90611ccd565b60405180910390fd5b6111d35f838361148c565b6111e8816002546110fd90919063ffffffff16565b60028190555061123d815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112da91906116a4565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90611d5b565b60405180910390fd5b61135f825f8361148c565b6113c881604051806060016040528060228152602001611de2602291395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061141d8160025461149190919063ffffffff16565b6002819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161148091906116a4565b60405180910390a35050565b505050565b5f828211156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611dc3565b60405180910390fd5b81836114e19190611be8565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611520578082015181840152602081019050611505565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611545826114e9565b61154f81856114f3565b935061155f818560208601611503565b6115688161152b565b840191505092915050565b5f6020820190508181035f83015261158b818461153b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115c082611597565b9050919050565b6115d0816115b6565b81146115da575f80fd5b50565b5f813590506115eb816115c7565b92915050565b5f819050919050565b611603816115f1565b811461160d575f80fd5b50565b5f8135905061161e816115fa565b92915050565b5f806040838503121561163a57611639611593565b5b5f611647858286016115dd565b925050602061165885828601611610565b9150509250929050565b5f8115159050919050565b61167681611662565b82525050565b5f60208201905061168f5f83018461166d565b92915050565b61169e816115f1565b82525050565b5f6020820190506116b75f830184611695565b92915050565b5f805f606084860312156116d4576116d3611593565b5b5f6116e1868287016115dd565b93505060206116f2868287016115dd565b925050604061170386828701611610565b9150509250925092565b5f60ff82169050919050565b6117228161170d565b82525050565b5f60208201905061173b5f830184611719565b92915050565b5f6020828403121561175657611755611593565b5b5f61176384828501611610565b91505092915050565b5f6020828403121561178157611780611593565b5b5f61178e848285016115dd565b91505092915050565b6117a0816115b6565b82525050565b5f6020820190506117b95f830184611797565b92915050565b5f80604083850312156117d5576117d4611593565b5b5f6117e2858286016115dd565b92505060206117f3858286016115dd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061184157607f821691505b602082108103611854576118536117fd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61188e6020836114f3565b91506118998261185a565b602082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118f9826115f1565b9150611904836115f1565b925082820190508082111561191c5761191b6118c2565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61197c6026836114f3565b915061198782611922565b604082019050919050565b5f6020820190508181035f8301526119a981611970565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a0a6024836114f3565b9150611a15826119b0565b604082019050919050565b5f6020820190508181035f830152611a37816119fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a986022836114f3565b9150611aa382611a3e565b604082019050919050565b5f6020820190508181035f830152611ac581611a8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b266025836114f3565b9150611b3182611acc565b604082019050919050565b5f6020820190508181035f830152611b5381611b1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611bb46023836114f3565b9150611bbf82611b5a565b604082019050919050565b5f6020820190508181035f830152611be181611ba8565b9050919050565b5f611bf2826115f1565b9150611bfd836115f1565b9250828203905081811115611c1557611c146118c2565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611c4f601b836114f3565b9150611c5a82611c1b565b602082019050919050565b5f6020820190508181035f830152611c7c81611c43565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611cb7601f836114f3565b9150611cc282611c83565b602082019050919050565b5f6020820190508181035f830152611ce481611cab565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d456021836114f3565b9150611d5082611ceb565b604082019050919050565b5f6020820190508181035f830152611d7281611d39565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f611dad601e836114f3565b9150611db882611d79565b602082019050919050565b5f6020820190508181035f830152611dda81611da1565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220026d2eb47c7bf3d85570b966c5c5cfefafa6303a30ea9941c7971e6cd022888464736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f7578063a457c2d714610315578063a9059cbb14610345578063dd62ed3e14610375578063f2fde38b146103a55761011f565b806370a0823114610263578063715018a61461029357806373f425611461029d578063893d20e8146102bb5780638da5cb5b146102d95761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806340c10f191461020d57806342966c68146102295780634f02c420146102455761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c1565b6040516101389190611573565b60405180910390f35b61015b60048036038101906101569190611624565b610451565b604051610168919061167c565b60405180910390f35b61017961046e565b60405161018691906116a4565b60405180910390f35b6101a960048036038101906101a491906116bd565b610477565b6040516101b6919061167c565b60405180910390f35b6101c761054b565b6040516101d49190611728565b60405180910390f35b6101f760048036038101906101f29190611624565b610560565b604051610204919061167c565b60405180910390f35b61022760048036038101906102229190611624565b61060e565b005b610243600480360381019061023e9190611741565b6106b0565b005b61024d6106e9565b60405161025a91906116a4565b60405180910390f35b61027d6004803603810190610278919061176c565b6106ef565b60405161028a91906116a4565b60405180910390f35b61029b610734565b005b6102a561086f565b6040516102b291906116a4565b60405180910390f35b6102c3610875565b6040516102d091906117a6565b60405180910390f35b6102e1610883565b6040516102ee91906117a6565b60405180910390f35b6102ff6108ac565b60405161030c9190611573565b60405180910390f35b61032f600480360381019061032a9190611624565b61093c565b60405161033c919061167c565b60405180910390f35b61035f600480360381019061035a9190611624565b610a04565b60405161036c919061167c565b60405180910390f35b61038f600480360381019061038a91906117bf565b610a21565b60405161039c91906116a4565b60405180910390f35b6103bf60048036038101906103ba919061176c565b610aa3565b005b6060600380546103d09061182a565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc9061182a565b80156104475780601f1061041e57610100808354040283529160200191610447565b820191905f5260205f20905b81548152906001019060200180831161042a57829003601f168201915b5050505050905090565b5f61046461045d610c4d565b8484610c54565b6001905092915050565b5f600254905090565b5f610483848484610e17565b6105408461048f610c4d565b61053b85604051806060016040528060288152602001611e2a6028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104f2610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b610c54565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f61060461056c610c4d565b846105ff8560015f61057c610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b610c54565b6001905092915050565b610616610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610634610883565b73ffffffffffffffffffffffffffffffffffffffff161461068a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610681906118a4565b60405180910390fd5b610694828261115a565b8060065f8282546106a591906118ef565b925050819055505050565b806106ba336106ef565b10156106c4575f80fd5b6106ce33826112e6565b8060075f8282546106df91906118ef565b9250508190555050565b60065481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61073c610c4d565b73ffffffffffffffffffffffffffffffffffffffff1661075a610883565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a7906118a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b5f61087e610883565b905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108bb9061182a565b80601f01602080910402602001604051908101604052809291908181526020018280546108e79061182a565b80156109325780601f1061090957610100808354040283529160200191610932565b820191905f5260205f20905b81548152906001019060200180831161091557829003601f168201915b5050505050905090565b5f6109fa610948610c4d565b846109f585604051806060016040528060258152602001611e526025913960015f610971610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b610c54565b6001905092915050565b5f610a17610a10610c4d565b8484610e17565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610aab610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610ac9610883565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906118a4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490611992565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990611a20565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790611aae565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a91906116a4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611b3c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90611bca565b60405180910390fd5b610efe83838361148c565b610f6781604051806060016040528060268152602001611e04602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610ff6815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109391906116a4565b60405180910390a3505050565b5f8383111582906110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9190611573565b60405180910390fd5b5082846110f49190611be8565b90509392505050565b5f80828461110b91906118ef565b905083811015611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790611c65565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90611ccd565b60405180910390fd5b6111d35f838361148c565b6111e8816002546110fd90919063ffffffff16565b60028190555061123d815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112da91906116a4565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90611d5b565b60405180910390fd5b61135f825f8361148c565b6113c881604051806060016040528060228152602001611de2602291395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061141d8160025461149190919063ffffffff16565b6002819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161148091906116a4565b60405180910390a35050565b505050565b5f828211156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611dc3565b60405180910390fd5b81836114e19190611be8565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611520578082015181840152602081019050611505565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611545826114e9565b61154f81856114f3565b935061155f818560208601611503565b6115688161152b565b840191505092915050565b5f6020820190508181035f83015261158b818461153b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115c082611597565b9050919050565b6115d0816115b6565b81146115da575f80fd5b50565b5f813590506115eb816115c7565b92915050565b5f819050919050565b611603816115f1565b811461160d575f80fd5b50565b5f8135905061161e816115fa565b92915050565b5f806040838503121561163a57611639611593565b5b5f611647858286016115dd565b925050602061165885828601611610565b9150509250929050565b5f8115159050919050565b61167681611662565b82525050565b5f60208201905061168f5f83018461166d565b92915050565b61169e816115f1565b82525050565b5f6020820190506116b75f830184611695565b92915050565b5f805f606084860312156116d4576116d3611593565b5b5f6116e1868287016115dd565b93505060206116f2868287016115dd565b925050604061170386828701611610565b9150509250925092565b5f60ff82169050919050565b6117228161170d565b82525050565b5f60208201905061173b5f830184611719565b92915050565b5f6020828403121561175657611755611593565b5b5f61176384828501611610565b91505092915050565b5f6020828403121561178157611780611593565b5b5f61178e848285016115dd565b91505092915050565b6117a0816115b6565b82525050565b5f6020820190506117b95f830184611797565b92915050565b5f80604083850312156117d5576117d4611593565b5b5f6117e2858286016115dd565b92505060206117f3858286016115dd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061184157607f821691505b602082108103611854576118536117fd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61188e6020836114f3565b91506118998261185a565b602082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118f9826115f1565b9150611904836115f1565b925082820190508082111561191c5761191b6118c2565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61197c6026836114f3565b915061198782611922565b604082019050919050565b5f6020820190508181035f8301526119a981611970565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a0a6024836114f3565b9150611a15826119b0565b604082019050919050565b5f6020820190508181035f830152611a37816119fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a986022836114f3565b9150611aa382611a3e565b604082019050919050565b5f6020820190508181035f830152611ac581611a8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b266025836114f3565b9150611b3182611acc565b604082019050919050565b5f6020820190508181035f830152611b5381611b1a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611bb46023836114f3565b9150611bbf82611b5a565b604082019050919050565b5f6020820190508181035f830152611be181611ba8565b9050919050565b5f611bf2826115f1565b9150611bfd836115f1565b9250828203905081811115611c1557611c146118c2565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611c4f601b836114f3565b9150611c5a82611c1b565b602082019050919050565b5f6020820190508181035f830152611c7c81611c43565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611cb7601f836114f3565b9150611cc282611c83565b602082019050919050565b5f6020820190508181035f830152611ce481611cab565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d456021836114f3565b9150611d5082611ceb565b604082019050919050565b5f6020820190508181035f830152611d7281611d39565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f611dad601e836114f3565b9150611db882611d79565b602082019050919050565b5f6020820190508181035f830152611dda81611da1565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220026d2eb47c7bf3d85570b966c5c5cfefafa6303a30ea9941c7971e6cd022888464736f6c63430008140033
Deployed Bytecode Sourcemap
24182:515:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13098:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15244:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14197:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15895:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14041:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16625:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24308:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24441:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24250:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14368:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23630:148;;;:::i;:::-;;24278:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24609:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22979:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13308:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17346:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14708:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14946:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23933:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13098:91;13143:13;13176:5;13169:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13098:91;:::o;15244:169::-;15327:4;15344:39;15353:12;:10;:12::i;:::-;15367:7;15376:6;15344:8;:39::i;:::-;15401:4;15394:11;;15244:169;;;;:::o;14197:108::-;14258:7;14285:12;;14278:19;;14197:108;:::o;15895:321::-;16001:4;16018:36;16028:6;16036:9;16047:6;16018:9;:36::i;:::-;16065:121;16074:6;16082:12;:10;:12::i;:::-;16096:89;16134:6;16096:89;;;;;;;;;;;;;;;;;:11;:19;16108:6;16096:19;;;;;;;;;;;;;;;:33;16116:12;:10;:12::i;:::-;16096:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;16065:8;:121::i;:::-;16204:4;16197:11;;15895:321;;;;;:::o;14041:91::-;14090:5;14115:9;;;;;;;;;;;14108:16;;14041:91;:::o;16625:218::-;16713:4;16730:83;16739:12;:10;:12::i;:::-;16753:7;16762:50;16801:10;16762:11;:25;16774:12;:10;:12::i;:::-;16762:25;;;;;;;;;;;;;;;:34;16788:7;16762:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;16730:8;:83::i;:::-;16831:4;16824:11;;16625:218;;;;:::o;24308:125::-;23210:12;:10;:12::i;:::-;23199:23;;:7;:5;:7::i;:::-;:23;;;23191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24380:19:::1;24386:3;24391:7;24380:5;:19::i;:::-;24418:7;24410:6;;:15;;;;;;;:::i;:::-;;;;;;;;24308:125:::0;;:::o;24441:160::-;24522:7;24499:21;24509:10;24499:9;:21::i;:::-;:30;;24490:40;;;;;;24541:26;24547:10;24559:7;24541:5;:26::i;:::-;24586:7;24578:6;;:15;;;;;;;:::i;:::-;;;;;;;;24441:160;:::o;24250:21::-;;;;:::o;14368:127::-;14442:7;14469:9;:18;14479:7;14469:18;;;;;;;;;;;;;;;;14462:25;;14368:127;;;:::o;23630:148::-;23210:12;:10;:12::i;:::-;23199:23;;:7;:5;:7::i;:::-;:23;;;23191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23737:1:::1;23700:40;;23721:6;;;;;;;;;;;23700:40;;;;;;;;;;;;23768:1;23751:6;;:19;;;;;;;;;;;;;;;;;;23630:148::o:0;24278:21::-;;;;:::o;24609:85::-;24652:7;24679;:5;:7::i;:::-;24672:14;;24609:85;:::o;22979:87::-;23025:7;23052:6;;;;;;;;;;;23045:13;;22979:87;:::o;13308:95::-;13355:13;13388:7;13381:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13308:95;:::o;17346:269::-;17439:4;17456:129;17465:12;:10;:12::i;:::-;17479:7;17488:96;17527:15;17488:96;;;;;;;;;;;;;;;;;:11;:25;17500:12;:10;:12::i;:::-;17488:25;;;;;;;;;;;;;;;:34;17514:7;17488:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;17456:8;:129::i;:::-;17603:4;17596:11;;17346:269;;;;:::o;14708:175::-;14794:4;14811:42;14821:12;:10;:12::i;:::-;14835:9;14846:6;14811:9;:42::i;:::-;14871:4;14864:11;;14708:175;;;;:::o;14946:151::-;15035:7;15062:11;:18;15074:5;15062:18;;;;;;;;;;;;;;;:27;15081:7;15062:27;;;;;;;;;;;;;;;;15055:34;;14946:151;;;;:::o;23933:244::-;23210:12;:10;:12::i;:::-;23199:23;;:7;:5;:7::i;:::-;:23;;;23191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24042:1:::1;24022:22;;:8;:22;;::::0;24014:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;24132:8;24103:38;;24124:6;;;;;;;;;;;24103:38;;;;;;;;;;;;24161:8;24152:6;;:17;;;;;;;;;;;;;;;;;;23933:244:::0;:::o;10673:115::-;10726:15;10769:10;10754:26;;10673:115;:::o;20493:346::-;20612:1;20595:19;;:5;:19;;;20587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20693:1;20674:21;;:7;:21;;;20666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20777:6;20747:11;:18;20759:5;20747:18;;;;;;;;;;;;;;;:27;20766:7;20747:27;;;;;;;;;;;;;;;:36;;;;20815:7;20799:32;;20808:5;20799:32;;;20824:6;20799:32;;;;;;:::i;:::-;;;;;;;;20493:346;;;:::o;18105:539::-;18229:1;18211:20;;:6;:20;;;18203:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18313:1;18292:23;;:9;:23;;;18284:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18368:47;18389:6;18397:9;18408:6;18368:20;:47::i;:::-;18448:71;18470:6;18448:71;;;;;;;;;;;;;;;;;:9;:17;18458:6;18448:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18428:9;:17;18438:6;18428:17;;;;;;;;;;;;;;;:91;;;;18553:32;18578:6;18553:9;:20;18563:9;18553:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;18530:9;:20;18540:9;18530:20;;;;;;;;;;;;;;;:55;;;;18618:9;18601:35;;18610:6;18601:35;;;18629:6;18601:35;;;;;;:::i;:::-;;;;;;;;18105:539;;;:::o;5571:166::-;5657:7;5690:1;5685;:6;;5693:12;5677:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5728:1;5724;:5;;;;:::i;:::-;5717:12;;5571:166;;;;;:::o;2744:179::-;2802:7;2822:9;2838:1;2834;:5;;;;:::i;:::-;2822:17;;2863:1;2858;:6;;2850:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2914:1;2907:8;;;2744:179;;;;:::o;18926:378::-;19029:1;19010:21;;:7;:21;;;19002:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19080:49;19109:1;19113:7;19122:6;19080:20;:49::i;:::-;19157:24;19174:6;19157:12;;:16;;:24;;;;:::i;:::-;19142:12;:39;;;;19213:30;19236:6;19213:9;:18;19223:7;19213:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19192:9;:18;19202:7;19192:18;;;;;;;;;;;;;;;:51;;;;19280:7;19259:37;;19276:1;19259:37;;;19289:6;19259:37;;;;;;:::i;:::-;;;;;;;;18926:378;;:::o;19637:418::-;19740:1;19721:21;;:7;:21;;;19713:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19793:49;19814:7;19831:1;19835:6;19793:20;:49::i;:::-;19876:68;19899:6;19876:68;;;;;;;;;;;;;;;;;:9;:18;19886:7;19876:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;19855:9;:18;19865:7;19855:18;;;;;;;;;;;;;;;:89;;;;19970:24;19987:6;19970:12;;:16;;:24;;;;:::i;:::-;19955:12;:39;;;;20036:1;20010:37;;20019:7;20010:37;;;20040:6;20010:37;;;;;;:::i;:::-;;;;;;;;19637:418;;:::o;21872:92::-;;;;:::o;3206:158::-;3264:7;3297:1;3292;:6;;3284:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3355:1;3351;:5;;;;:::i;:::-;3344:12;;3206:158;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:182::-;7007:34;7003:1;6995:6;6991:14;6984:58;6867:182;:::o;7055:366::-;7197:3;7218:67;7282:2;7277:3;7218:67;:::i;:::-;7211:74;;7294:93;7383:3;7294:93;:::i;:::-;7412:2;7407:3;7403:12;7396:19;;7055:366;;;:::o;7427:419::-;7593:4;7631:2;7620:9;7616:18;7608:26;;7680:9;7674:4;7670:20;7666:1;7655:9;7651:17;7644:47;7708:131;7834:4;7708:131;:::i;:::-;7700:139;;7427:419;;;:::o;7852:180::-;7900:77;7897:1;7890:88;7997:4;7994:1;7987:15;8021:4;8018:1;8011:15;8038:191;8078:3;8097:20;8115:1;8097:20;:::i;:::-;8092:25;;8131:20;8149:1;8131:20;:::i;:::-;8126:25;;8174:1;8171;8167:9;8160:16;;8195:3;8192:1;8189:10;8186:36;;;8202:18;;:::i;:::-;8186:36;8038:191;;;;:::o;8235:225::-;8375:34;8371:1;8363:6;8359:14;8352:58;8444:8;8439:2;8431:6;8427:15;8420:33;8235:225;:::o;8466:366::-;8608:3;8629:67;8693:2;8688:3;8629:67;:::i;:::-;8622:74;;8705:93;8794:3;8705:93;:::i;:::-;8823:2;8818:3;8814:12;8807:19;;8466:366;;;:::o;8838:419::-;9004:4;9042:2;9031:9;9027:18;9019:26;;9091:9;9085:4;9081:20;9077:1;9066:9;9062:17;9055:47;9119:131;9245:4;9119:131;:::i;:::-;9111:139;;8838:419;;;:::o;9263:223::-;9403:34;9399:1;9391:6;9387:14;9380:58;9472:6;9467:2;9459:6;9455:15;9448:31;9263:223;:::o;9492:366::-;9634:3;9655:67;9719:2;9714:3;9655:67;:::i;:::-;9648:74;;9731:93;9820:3;9731:93;:::i;:::-;9849:2;9844:3;9840:12;9833:19;;9492:366;;;:::o;9864:419::-;10030:4;10068:2;10057:9;10053:18;10045:26;;10117:9;10111:4;10107:20;10103:1;10092:9;10088:17;10081:47;10145:131;10271:4;10145:131;:::i;:::-;10137:139;;9864:419;;;:::o;10289:221::-;10429:34;10425:1;10417:6;10413:14;10406:58;10498:4;10493:2;10485:6;10481:15;10474:29;10289:221;:::o;10516:366::-;10658:3;10679:67;10743:2;10738:3;10679:67;:::i;:::-;10672:74;;10755:93;10844:3;10755:93;:::i;:::-;10873:2;10868:3;10864:12;10857:19;;10516:366;;;:::o;10888:419::-;11054:4;11092:2;11081:9;11077:18;11069:26;;11141:9;11135:4;11131:20;11127:1;11116:9;11112:17;11105:47;11169:131;11295:4;11169:131;:::i;:::-;11161:139;;10888:419;;;:::o;11313:224::-;11453:34;11449:1;11441:6;11437:14;11430:58;11522:7;11517:2;11509:6;11505:15;11498:32;11313:224;:::o;11543:366::-;11685:3;11706:67;11770:2;11765:3;11706:67;:::i;:::-;11699:74;;11782:93;11871:3;11782:93;:::i;:::-;11900:2;11895:3;11891:12;11884:19;;11543:366;;;:::o;11915:419::-;12081:4;12119:2;12108:9;12104:18;12096:26;;12168:9;12162:4;12158:20;12154:1;12143:9;12139:17;12132:47;12196:131;12322:4;12196:131;:::i;:::-;12188:139;;11915:419;;;:::o;12340:222::-;12480:34;12476:1;12468:6;12464:14;12457:58;12549:5;12544:2;12536:6;12532:15;12525:30;12340:222;:::o;12568:366::-;12710:3;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12807:93;12896:3;12807:93;:::i;:::-;12925:2;12920:3;12916:12;12909:19;;12568:366;;;:::o;12940:419::-;13106:4;13144:2;13133:9;13129:18;13121:26;;13193:9;13187:4;13183:20;13179:1;13168:9;13164:17;13157:47;13221:131;13347:4;13221:131;:::i;:::-;13213:139;;12940:419;;;:::o;13365:194::-;13405:4;13425:20;13443:1;13425:20;:::i;:::-;13420:25;;13459:20;13477:1;13459:20;:::i;:::-;13454:25;;13503:1;13500;13496:9;13488:17;;13527:1;13521:4;13518:11;13515:37;;;13532:18;;:::i;:::-;13515:37;13365:194;;;;:::o;13565:177::-;13705:29;13701:1;13693:6;13689:14;13682:53;13565:177;:::o;13748:366::-;13890:3;13911:67;13975:2;13970:3;13911:67;:::i;:::-;13904:74;;13987:93;14076:3;13987:93;:::i;:::-;14105:2;14100:3;14096:12;14089:19;;13748:366;;;:::o;14120:419::-;14286:4;14324:2;14313:9;14309:18;14301:26;;14373:9;14367:4;14363:20;14359:1;14348:9;14344:17;14337:47;14401:131;14527:4;14401:131;:::i;:::-;14393:139;;14120:419;;;:::o;14545:181::-;14685:33;14681:1;14673:6;14669:14;14662:57;14545:181;:::o;14732:366::-;14874:3;14895:67;14959:2;14954:3;14895:67;:::i;:::-;14888:74;;14971:93;15060:3;14971:93;:::i;:::-;15089:2;15084:3;15080:12;15073:19;;14732:366;;;:::o;15104:419::-;15270:4;15308:2;15297:9;15293:18;15285:26;;15357:9;15351:4;15347:20;15343:1;15332:9;15328:17;15321:47;15385:131;15511:4;15385:131;:::i;:::-;15377:139;;15104:419;;;:::o;15529:220::-;15669:34;15665:1;15657:6;15653:14;15646:58;15738:3;15733:2;15725:6;15721:15;15714:28;15529:220;:::o;15755:366::-;15897:3;15918:67;15982:2;15977:3;15918:67;:::i;:::-;15911:74;;15994:93;16083:3;15994:93;:::i;:::-;16112:2;16107:3;16103:12;16096:19;;15755:366;;;:::o;16127:419::-;16293:4;16331:2;16320:9;16316:18;16308:26;;16380:9;16374:4;16370:20;16366:1;16355:9;16351:17;16344:47;16408:131;16534:4;16408:131;:::i;:::-;16400:139;;16127:419;;;:::o;16552:180::-;16692:32;16688:1;16680:6;16676:14;16669:56;16552:180;:::o;16738:366::-;16880:3;16901:67;16965:2;16960:3;16901:67;:::i;:::-;16894:74;;16977:93;17066:3;16977:93;:::i;:::-;17095:2;17090:3;17086:12;17079:19;;16738:366;;;:::o;17110:419::-;17276:4;17314:2;17303:9;17299:18;17291:26;;17363:9;17357:4;17353:20;17349:1;17338:9;17334:17;17327:47;17391:131;17517:4;17391:131;:::i;:::-;17383:139;;17110:419;;;:::o
Swarm Source
ipfs://026d2eb47c7bf3d85570b966c5c5cfefafa6303a30ea9941c7971e6cd0228884
[ 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.