ERC-20
Overview
Max Total Supply
69,696,969 GAYG
Holders
58
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
812,284.439762516968866213 GAYGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GAYG
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-08 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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; } 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; } 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 before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: GAYG.sol pragma solidity ^0.8.9; /* -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. */ /* -.-.-.-.-.-. $GAYG GAY GENSLER MEME TOKEN -.-.-.-.-. */ /* -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. */ // We SUPPORT LGBTQ rights ~~ We do NOT SUPPORT Gary Gensler // 50% of tax raised will be sent to the LGBTQ Freedom Fund contract GAYG is Ownable, ERC20, ERC20Burnable{ address public devs; uint public tax; mapping(address => bool) public whitelistedAddress; event DevsAddressUpdated(address newDevs); event TaxUpdated(uint newTax); event WhitelistAddressUpdated(address newWhitelist); constructor( string memory _name, // Gay Gary Gensler string memory _symbol, // $GAYG address _devs, // tax multisig uint _tax, // 450 (4.5%) address[] memory _airdropAddresses ) ERC20(_name, _symbol) { _mint(msg.sender, (64_887_879) * 10 ** decimals()); // 93.1% of total supply uint length = _airdropAddresses.length; uint ADPerWallet = ((4_809_090) / length) * 10 ** decimals(); // 6.9% of total supply for (uint i; i < length; ) { _mint(_airdropAddresses[i], ADPerWallet); unchecked { ++i; } } tax = _tax; devs = _devs; whitelistedAddress[msg.sender] = true; whitelistedAddress[_devs] = true; } function setDevAddress(address _dev) external onlyOwner{ require(_dev != address(0), "ERROR: Cant be zero address"); devs = _dev; whitelistedAddress[_dev] = true; emit DevsAddressUpdated(_dev); } function setTax(uint _tax) external onlyOwner{ require(_tax != 0, "ERROR: Tax cannot be 0"); tax = _tax; emit TaxUpdated(_tax); } function setWhitelistAddress(address _whitelist) external onlyOwner{ require(_whitelist != address(0), "ERROR: Cant be zero address"); whitelistedAddress[_whitelist] = true; emit WhitelistAddressUpdated(_whitelist); } function _transfer( address _sender, address _recipient, uint256 _amount ) internal virtual override{ if(whitelistedAddress[_sender] || whitelistedAddress[_recipient]){ super._transfer(_sender, _recipient, _amount); }else{ uint256 devsAmount = (_amount * tax) / 10000; uint256 userAmount = _amount - devsAmount; super._transfer(_sender, devs, devsAmount); super._transfer(_sender, _recipient, userAmount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_devs","type":"address"},{"internalType":"uint256","name":"_tax","type":"uint256"},{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"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":false,"internalType":"address","name":"newDevs","type":"address"}],"name":"DevsAddressUpdated","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":false,"internalType":"uint256","name":"newTax","type":"uint256"}],"name":"TaxUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWhitelist","type":"address"}],"name":"WhitelistAddressUpdated","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"devs","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"}],"name":"setWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"","type":"address"}],"name":"whitelistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002ffb38038062002ffb8339818101604052810190620000379190620007ac565b8484620000596200004d6200025160201b60201c565b6200025960201b60201c565b81600490816200006a919062000ad2565b5080600590816200007c919062000ad2565b505050620000bf33620000946200031d60201b60201c565b600a620000a2919062000d49565b6303de1c47620000b3919062000d9a565b6200032660201b60201c565b6000815190506000620000d76200031d60201b60201c565b600a620000e5919062000d49565b8262496182620000f6919062000e14565b62000102919062000d9a565b905060005b828110156200014b576200013f8482815181106200012a576200012962000e4c565b5b6020026020010151836200032660201b60201c565b80600101905062000107565b508360078190555084600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050505062000f67565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000398576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038f9062000edc565b60405180910390fd5b620003ac600083836200049460201b60201c565b8060036000828254620003c0919062000efe565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000474919062000f4a565b60405180910390a362000490600083836200049960201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200050782620004bc565b810181811067ffffffffffffffff82111715620005295762000528620004cd565b5b80604052505050565b60006200053e6200049e565b90506200054c8282620004fc565b919050565b600067ffffffffffffffff8211156200056f576200056e620004cd565b5b6200057a82620004bc565b9050602081019050919050565b60005b83811015620005a75780820151818401526020810190506200058a565b60008484015250505050565b6000620005ca620005c48462000551565b62000532565b905082815260208101848484011115620005e957620005e8620004b7565b5b620005f684828562000587565b509392505050565b600082601f830112620006165762000615620004b2565b5b815162000628848260208601620005b3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200065e8262000631565b9050919050565b620006708162000651565b81146200067c57600080fd5b50565b600081519050620006908162000665565b92915050565b6000819050919050565b620006ab8162000696565b8114620006b757600080fd5b50565b600081519050620006cb81620006a0565b92915050565b600067ffffffffffffffff821115620006ef57620006ee620004cd565b5b602082029050602081019050919050565b600080fd5b60006200071c6200071684620006d1565b62000532565b9050808382526020820190506020840283018581111562000742576200074162000700565b5b835b818110156200076f57806200075a88826200067f565b84526020840193505060208101905062000744565b5050509392505050565b600082601f830112620007915762000790620004b2565b5b8151620007a384826020860162000705565b91505092915050565b600080600080600060a08688031215620007cb57620007ca620004a8565b5b600086015167ffffffffffffffff811115620007ec57620007eb620004ad565b5b620007fa88828901620005fe565b955050602086015167ffffffffffffffff8111156200081e576200081d620004ad565b5b6200082c88828901620005fe565b94505060406200083f888289016200067f565b93505060606200085288828901620006ba565b925050608086015167ffffffffffffffff811115620008765762000875620004ad565b5b620008848882890162000779565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008e457607f821691505b602082108103620008fa57620008f96200089c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000925565b62000970868362000925565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009b3620009ad620009a78462000696565b62000988565b62000696565b9050919050565b6000819050919050565b620009cf8362000992565b620009e7620009de82620009ba565b84845462000932565b825550505050565b600090565b620009fe620009ef565b62000a0b818484620009c4565b505050565b5b8181101562000a335762000a27600082620009f4565b60018101905062000a11565b5050565b601f82111562000a825762000a4c8162000900565b62000a578462000915565b8101602085101562000a67578190505b62000a7f62000a768562000915565b83018262000a10565b50505b505050565b600082821c905092915050565b600062000aa76000198460080262000a87565b1980831691505092915050565b600062000ac2838362000a94565b9150826002028217905092915050565b62000add8262000891565b67ffffffffffffffff81111562000af95762000af8620004cd565b5b62000b058254620008cb565b62000b1282828562000a37565b600060209050601f83116001811462000b4a576000841562000b35578287015190505b62000b41858262000ab4565b86555062000bb1565b601f19841662000b5a8662000900565b60005b8281101562000b845784890151825560018201915060208501945060208101905062000b5d565b8683101562000ba4578489015162000ba0601f89168262000a94565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000c475780860481111562000c1f5762000c1e62000bb9565b5b600185161562000c2f5780820291505b808102905062000c3f8562000be8565b945062000bff565b94509492505050565b60008262000c62576001905062000d35565b8162000c72576000905062000d35565b816001811462000c8b576002811462000c965762000ccc565b600191505062000d35565b60ff84111562000cab5762000caa62000bb9565b5b8360020a91508482111562000cc55762000cc462000bb9565b5b5062000d35565b5060208310610133831016604e8410600b841016171562000d065782820a90508381111562000d005762000cff62000bb9565b5b62000d35565b62000d15848484600162000bf5565b9250905081840481111562000d2f5762000d2e62000bb9565b5b81810290505b9392505050565b600060ff82169050919050565b600062000d568262000696565b915062000d638362000d3c565b925062000d927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c50565b905092915050565b600062000da78262000696565b915062000db48362000696565b925082820262000dc48162000696565b9150828204841483151762000dde5762000ddd62000bb9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e218262000696565b915062000e2e8362000696565b92508262000e415762000e4062000de5565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ec4601f8362000e7b565b915062000ed18262000e8c565b602082019050919050565b6000602082019050818103600083015262000ef78162000eb5565b9050919050565b600062000f0b8262000696565b915062000f188362000696565b925082820190508082111562000f335762000f3262000bb9565b5b92915050565b62000f448162000696565b82525050565b600060208201905062000f61600083018462000f39565b92915050565b6120848062000f776000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a457c2d71161007c578063a457c2d714610353578063a9059cbb14610383578063c30796ab146103b3578063d0d41fe1146103e3578063dd62ed3e146103ff578063f2fde38b1461042f57610142565b80638da5cb5b146102bf57806395d89b41146102dd57806399c8d556146102fb5780639a96f82914610319578063a224c7451461033757610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d57806342966c681461024d57806370a0823114610269578063715018a61461029957806379cc6790146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b35780632e5bb6ff146101e3575b600080fd5b61014f61044b565b60405161015c919061153a565b60405180910390f35b61017f600480360381019061017a91906115f5565b6104dd565b60405161018c9190611650565b60405180910390f35b61019d610500565b6040516101aa919061167a565b60405180910390f35b6101cd60048036038101906101c89190611695565b61050a565b6040516101da9190611650565b60405180910390f35b6101fd60048036038101906101f891906116e8565b610539565b005b6102076105c5565b6040516102149190611731565b60405180910390f35b610237600480360381019061023291906115f5565b6105ce565b6040516102449190611650565b60405180910390f35b610267600480360381019061026291906116e8565b610605565b005b610283600480360381019061027e919061174c565b610619565b604051610290919061167a565b60405180910390f35b6102a1610662565b005b6102bd60048036038101906102b891906115f5565b610676565b005b6102c7610696565b6040516102d49190611788565b60405180910390f35b6102e56106bf565b6040516102f2919061153a565b60405180910390f35b610303610751565b604051610310919061167a565b60405180910390f35b610321610757565b60405161032e9190611788565b60405180910390f35b610351600480360381019061034c919061174c565b61077d565b005b61036d600480360381019061036891906115f5565b610886565b60405161037a9190611650565b60405180910390f35b61039d600480360381019061039891906115f5565b6108fd565b6040516103aa9190611650565b60405180910390f35b6103cd60048036038101906103c8919061174c565b610920565b6040516103da9190611650565b60405180910390f35b6103fd60048036038101906103f8919061174c565b610940565b005b610419600480360381019061041491906117a3565b610a8a565b604051610426919061167a565b60405180910390f35b6104496004803603810190610444919061174c565b610b11565b005b60606004805461045a90611812565b80601f016020809104026020016040519081016040528092919081815260200182805461048690611812565b80156104d35780601f106104a8576101008083540402835291602001916104d3565b820191906000526020600020905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b6000806104e8610b94565b90506104f5818585610b9c565b600191505092915050565b6000600354905090565b600080610515610b94565b9050610522858285610d65565b61052d858585610df1565b60019150509392505050565b610541610f16565b60008103610584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057b9061188f565b60405180910390fd5b806007819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91816040516105ba919061167a565b60405180910390a150565b60006012905090565b6000806105d9610b94565b90506105fa8185856105eb8589610a8a565b6105f591906118de565b610b9c565b600191505092915050565b610616610610610b94565b82610f94565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066a610f16565b6106746000611163565b565b61068882610682610b94565b83610d65565b6106928282610f94565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106ce90611812565b80601f01602080910402602001604051908101604052809291908181526020018280546106fa90611812565b80156107475780601f1061071c57610100808354040283529160200191610747565b820191906000526020600020905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b60075481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610785610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb9061195e565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1b1006ab19e427d90199a09d3057a7aa2f54ef1bbd2a3cb6f712c18c8396c8ce8160405161087b9190611788565b60405180910390a150565b600080610891610b94565b9050600061089f8286610a8a565b9050838110156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db906119f0565b60405180910390fd5b6108f18286868403610b9c565b60019250505092915050565b600080610908610b94565b9050610915818585610df1565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b610948610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae9061195e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f7889ff952f5753dbffb756a4c9031c4b5f22d7b4f57c623d8b0478094df0953281604051610a7f9190611788565b60405180910390a150565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b19610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90611a82565b60405180910390fd5b610b9181611163565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290611b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190611ba6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d58919061167a565b60405180910390a3505050565b6000610d718484610a8a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610deb5781811015610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490611c12565b60405180910390fd5b610dea8484848403610b9c565b5b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e925750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ea757610ea2838383611227565b610f11565b600061271060075483610eba9190611c32565b610ec49190611ca3565b905060008183610ed49190611cd4565b9050610f0385600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611227565b610f0e858583611227565b50505b505050565b610f1e610b94565b73ffffffffffffffffffffffffffffffffffffffff16610f3c610696565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611d54565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611de6565b60405180910390fd5b61100f826000836114a0565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90611e78565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161114a919061167a565b60405180910390a361115e836000846114a5565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90611f0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90611f9c565b60405180910390fd5b6113108383836114a0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e9061202e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611487919061167a565b60405180910390a361149a8484846114a5565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114e45780820151818401526020810190506114c9565b60008484015250505050565b6000601f19601f8301169050919050565b600061150c826114aa565b61151681856114b5565b93506115268185602086016114c6565b61152f816114f0565b840191505092915050565b600060208201905081810360008301526115548184611501565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061158c82611561565b9050919050565b61159c81611581565b81146115a757600080fd5b50565b6000813590506115b981611593565b92915050565b6000819050919050565b6115d2816115bf565b81146115dd57600080fd5b50565b6000813590506115ef816115c9565b92915050565b6000806040838503121561160c5761160b61155c565b5b600061161a858286016115aa565b925050602061162b858286016115e0565b9150509250929050565b60008115159050919050565b61164a81611635565b82525050565b60006020820190506116656000830184611641565b92915050565b611674816115bf565b82525050565b600060208201905061168f600083018461166b565b92915050565b6000806000606084860312156116ae576116ad61155c565b5b60006116bc868287016115aa565b93505060206116cd868287016115aa565b92505060406116de868287016115e0565b9150509250925092565b6000602082840312156116fe576116fd61155c565b5b600061170c848285016115e0565b91505092915050565b600060ff82169050919050565b61172b81611715565b82525050565b60006020820190506117466000830184611722565b92915050565b6000602082840312156117625761176161155c565b5b6000611770848285016115aa565b91505092915050565b61178281611581565b82525050565b600060208201905061179d6000830184611779565b92915050565b600080604083850312156117ba576117b961155c565b5b60006117c8858286016115aa565b92505060206117d9858286016115aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182a57607f821691505b60208210810361183d5761183c6117e3565b5b50919050565b7f4552524f523a205461782063616e6e6f74206265203000000000000000000000600082015250565b60006118796016836114b5565b915061188482611843565b602082019050919050565b600060208201905081810360008301526118a88161186c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118e9826115bf565b91506118f4836115bf565b925082820190508082111561190c5761190b6118af565b5b92915050565b7f4552524f523a2043616e74206265207a65726f20616464726573730000000000600082015250565b6000611948601b836114b5565b915061195382611912565b602082019050919050565b600060208201905081810360008301526119778161193b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119da6025836114b5565b91506119e58261197e565b604082019050919050565b60006020820190508181036000830152611a09816119cd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a6c6026836114b5565b9150611a7782611a10565b604082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611afe6024836114b5565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b906022836114b5565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d836114b5565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b6000611c3d826115bf565b9150611c48836115bf565b9250828202611c56816115bf565b91508282048414831517611c6d57611c6c6118af565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611cae826115bf565b9150611cb9836115bf565b925082611cc957611cc8611c74565b5b828204905092915050565b6000611cdf826115bf565b9150611cea836115bf565b9250828203905081811115611d0257611d016118af565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d3e6020836114b5565b9150611d4982611d08565b602082019050919050565b60006020820190508181036000830152611d6d81611d31565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dd06021836114b5565b9150611ddb82611d74565b604082019050919050565b60006020820190508181036000830152611dff81611dc3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e626022836114b5565b9150611e6d82611e06565b604082019050919050565b60006020820190508181036000830152611e9181611e55565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ef46025836114b5565b9150611eff82611e98565b604082019050919050565b60006020820190508181036000830152611f2381611ee7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f866023836114b5565b9150611f9182611f2a565b604082019050919050565b60006020820190508181036000830152611fb581611f79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120186026836114b5565b915061202382611fbc565b604082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea2646970667358221220a589aa67816fe43632d2fbd566054b2eb2b2efe75196ec088b7620bc8064619064736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000afa0d99a38af438abdd5fda12f3a3a60cdb2d71b00000000000000000000000000000000000000000000000000000000000001c20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001047617920476172792047656e736c6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474159470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000003645ea6c6c47034c556c5a03bb61ede3123b40bd000000000000000000000000cff8339da421c465d4325268799300952b55fad00000000000000000000000000ccc6d80204809c0ae67ea74da087277300ad469000000000000000000000000f441ea0ce8bb80849216bb614137563be3f86248000000000000000000000000ef538a11fb3441eb9b5444654a8075cd63afddff
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a457c2d71161007c578063a457c2d714610353578063a9059cbb14610383578063c30796ab146103b3578063d0d41fe1146103e3578063dd62ed3e146103ff578063f2fde38b1461042f57610142565b80638da5cb5b146102bf57806395d89b41146102dd57806399c8d556146102fb5780639a96f82914610319578063a224c7451461033757610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d57806342966c681461024d57806370a0823114610269578063715018a61461029957806379cc6790146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b35780632e5bb6ff146101e3575b600080fd5b61014f61044b565b60405161015c919061153a565b60405180910390f35b61017f600480360381019061017a91906115f5565b6104dd565b60405161018c9190611650565b60405180910390f35b61019d610500565b6040516101aa919061167a565b60405180910390f35b6101cd60048036038101906101c89190611695565b61050a565b6040516101da9190611650565b60405180910390f35b6101fd60048036038101906101f891906116e8565b610539565b005b6102076105c5565b6040516102149190611731565b60405180910390f35b610237600480360381019061023291906115f5565b6105ce565b6040516102449190611650565b60405180910390f35b610267600480360381019061026291906116e8565b610605565b005b610283600480360381019061027e919061174c565b610619565b604051610290919061167a565b60405180910390f35b6102a1610662565b005b6102bd60048036038101906102b891906115f5565b610676565b005b6102c7610696565b6040516102d49190611788565b60405180910390f35b6102e56106bf565b6040516102f2919061153a565b60405180910390f35b610303610751565b604051610310919061167a565b60405180910390f35b610321610757565b60405161032e9190611788565b60405180910390f35b610351600480360381019061034c919061174c565b61077d565b005b61036d600480360381019061036891906115f5565b610886565b60405161037a9190611650565b60405180910390f35b61039d600480360381019061039891906115f5565b6108fd565b6040516103aa9190611650565b60405180910390f35b6103cd60048036038101906103c8919061174c565b610920565b6040516103da9190611650565b60405180910390f35b6103fd60048036038101906103f8919061174c565b610940565b005b610419600480360381019061041491906117a3565b610a8a565b604051610426919061167a565b60405180910390f35b6104496004803603810190610444919061174c565b610b11565b005b60606004805461045a90611812565b80601f016020809104026020016040519081016040528092919081815260200182805461048690611812565b80156104d35780601f106104a8576101008083540402835291602001916104d3565b820191906000526020600020905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b6000806104e8610b94565b90506104f5818585610b9c565b600191505092915050565b6000600354905090565b600080610515610b94565b9050610522858285610d65565b61052d858585610df1565b60019150509392505050565b610541610f16565b60008103610584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057b9061188f565b60405180910390fd5b806007819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91816040516105ba919061167a565b60405180910390a150565b60006012905090565b6000806105d9610b94565b90506105fa8185856105eb8589610a8a565b6105f591906118de565b610b9c565b600191505092915050565b610616610610610b94565b82610f94565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066a610f16565b6106746000611163565b565b61068882610682610b94565b83610d65565b6106928282610f94565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106ce90611812565b80601f01602080910402602001604051908101604052809291908181526020018280546106fa90611812565b80156107475780601f1061071c57610100808354040283529160200191610747565b820191906000526020600020905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b60075481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610785610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb9061195e565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1b1006ab19e427d90199a09d3057a7aa2f54ef1bbd2a3cb6f712c18c8396c8ce8160405161087b9190611788565b60405180910390a150565b600080610891610b94565b9050600061089f8286610a8a565b9050838110156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db906119f0565b60405180910390fd5b6108f18286868403610b9c565b60019250505092915050565b600080610908610b94565b9050610915818585610df1565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b610948610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae9061195e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f7889ff952f5753dbffb756a4c9031c4b5f22d7b4f57c623d8b0478094df0953281604051610a7f9190611788565b60405180910390a150565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b19610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90611a82565b60405180910390fd5b610b9181611163565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290611b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190611ba6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d58919061167a565b60405180910390a3505050565b6000610d718484610a8a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610deb5781811015610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490611c12565b60405180910390fd5b610dea8484848403610b9c565b5b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e925750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ea757610ea2838383611227565b610f11565b600061271060075483610eba9190611c32565b610ec49190611ca3565b905060008183610ed49190611cd4565b9050610f0385600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611227565b610f0e858583611227565b50505b505050565b610f1e610b94565b73ffffffffffffffffffffffffffffffffffffffff16610f3c610696565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611d54565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611de6565b60405180910390fd5b61100f826000836114a0565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90611e78565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161114a919061167a565b60405180910390a361115e836000846114a5565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90611f0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90611f9c565b60405180910390fd5b6113108383836114a0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e9061202e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611487919061167a565b60405180910390a361149a8484846114a5565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114e45780820151818401526020810190506114c9565b60008484015250505050565b6000601f19601f8301169050919050565b600061150c826114aa565b61151681856114b5565b93506115268185602086016114c6565b61152f816114f0565b840191505092915050565b600060208201905081810360008301526115548184611501565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061158c82611561565b9050919050565b61159c81611581565b81146115a757600080fd5b50565b6000813590506115b981611593565b92915050565b6000819050919050565b6115d2816115bf565b81146115dd57600080fd5b50565b6000813590506115ef816115c9565b92915050565b6000806040838503121561160c5761160b61155c565b5b600061161a858286016115aa565b925050602061162b858286016115e0565b9150509250929050565b60008115159050919050565b61164a81611635565b82525050565b60006020820190506116656000830184611641565b92915050565b611674816115bf565b82525050565b600060208201905061168f600083018461166b565b92915050565b6000806000606084860312156116ae576116ad61155c565b5b60006116bc868287016115aa565b93505060206116cd868287016115aa565b92505060406116de868287016115e0565b9150509250925092565b6000602082840312156116fe576116fd61155c565b5b600061170c848285016115e0565b91505092915050565b600060ff82169050919050565b61172b81611715565b82525050565b60006020820190506117466000830184611722565b92915050565b6000602082840312156117625761176161155c565b5b6000611770848285016115aa565b91505092915050565b61178281611581565b82525050565b600060208201905061179d6000830184611779565b92915050565b600080604083850312156117ba576117b961155c565b5b60006117c8858286016115aa565b92505060206117d9858286016115aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182a57607f821691505b60208210810361183d5761183c6117e3565b5b50919050565b7f4552524f523a205461782063616e6e6f74206265203000000000000000000000600082015250565b60006118796016836114b5565b915061188482611843565b602082019050919050565b600060208201905081810360008301526118a88161186c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118e9826115bf565b91506118f4836115bf565b925082820190508082111561190c5761190b6118af565b5b92915050565b7f4552524f523a2043616e74206265207a65726f20616464726573730000000000600082015250565b6000611948601b836114b5565b915061195382611912565b602082019050919050565b600060208201905081810360008301526119778161193b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119da6025836114b5565b91506119e58261197e565b604082019050919050565b60006020820190508181036000830152611a09816119cd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a6c6026836114b5565b9150611a7782611a10565b604082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611afe6024836114b5565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b906022836114b5565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d836114b5565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b6000611c3d826115bf565b9150611c48836115bf565b9250828202611c56816115bf565b91508282048414831517611c6d57611c6c6118af565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611cae826115bf565b9150611cb9836115bf565b925082611cc957611cc8611c74565b5b828204905092915050565b6000611cdf826115bf565b9150611cea836115bf565b9250828203905081811115611d0257611d016118af565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d3e6020836114b5565b9150611d4982611d08565b602082019050919050565b60006020820190508181036000830152611d6d81611d31565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dd06021836114b5565b9150611ddb82611d74565b604082019050919050565b60006020820190508181036000830152611dff81611dc3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e626022836114b5565b9150611e6d82611e06565b604082019050919050565b60006020820190508181036000830152611e9181611e55565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ef46025836114b5565b9150611eff82611e98565b604082019050919050565b60006020820190508181036000830152611f2381611ee7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f866023836114b5565b9150611f9182611f2a565b604082019050919050565b60006020820190508181036000830152611fb581611f79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120186026836114b5565b915061202382611fbc565b604082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea2646970667358221220a589aa67816fe43632d2fbd566054b2eb2b2efe75196ec088b7620bc8064619064736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000afa0d99a38af438abdd5fda12f3a3a60cdb2d71b00000000000000000000000000000000000000000000000000000000000001c20000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001047617920476172792047656e736c6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474159470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000003645ea6c6c47034c556c5a03bb61ede3123b40bd000000000000000000000000cff8339da421c465d4325268799300952b55fad00000000000000000000000000ccc6d80204809c0ae67ea74da087277300ad469000000000000000000000000f441ea0ce8bb80849216bb614137563be3f86248000000000000000000000000ef538a11fb3441eb9b5444654a8075cd63afddff
-----Decoded View---------------
Arg [0] : _name (string): Gay Gary Gensler
Arg [1] : _symbol (string): GAYG
Arg [2] : _devs (address): 0xafa0d99A38af438abDd5fdA12F3A3A60Cdb2D71b
Arg [3] : _tax (uint256): 450
Arg [4] : _airdropAddresses (address[]): 0x3645eA6c6C47034c556C5A03bB61Ede3123b40bD,0xCff8339DA421c465d4325268799300952B55FAd0,0x0cCC6d80204809C0AE67eA74dA087277300aD469,0xF441eA0cE8BB80849216bB614137563bE3f86248,0xEF538a11FB3441eB9b5444654a8075cd63afDdfF
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000afa0d99a38af438abdd5fda12f3a3a60cdb2d71b
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c2
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [6] : 47617920476172792047656e736c657200000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4741594700000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 0000000000000000000000003645ea6c6c47034c556c5a03bb61ede3123b40bd
Arg [11] : 000000000000000000000000cff8339da421c465d4325268799300952b55fad0
Arg [12] : 0000000000000000000000000ccc6d80204809c0ae67ea74da087277300ad469
Arg [13] : 000000000000000000000000f441ea0ce8bb80849216bb614137563be3f86248
Arg [14] : 000000000000000000000000ef538a11fb3441eb9b5444654a8075cd63afddff
Deployed Bytecode Sourcemap
22066:2401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7771:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9783:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23458:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7613:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18422:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7942:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20886:103;;;:::i;:::-;;18832:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20238:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6870:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22151:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22125:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23627:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11228:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8275:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22175:50;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23214:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8531:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21144:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6651:100;6705:13;6738:5;6731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;:::o;9002:201::-;9085:4;9102:13;9118:12;:10;:12::i;:::-;9102:28;;9141:32;9150:5;9157:7;9166:6;9141:8;:32::i;:::-;9191:4;9184:11;;;9002:201;;;;:::o;7771:108::-;7832:7;7859:12;;7852:19;;7771:108;:::o;9783:295::-;9914:4;9931:15;9949:12;:10;:12::i;:::-;9931:30;;9972:38;9988:4;9994:7;10003:6;9972:15;:38::i;:::-;10021:27;10031:4;10037:2;10041:6;10021:9;:27::i;:::-;10066:4;10059:11;;;9783:295;;;;;:::o;23458:161::-;20124:13;:11;:13::i;:::-;23530:1:::1;23522:4;:9:::0;23514:44:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23575:4;23569:3;:10;;;;23595:16;23606:4;23595:16;;;;;;:::i;:::-;;;;;;;;23458:161:::0;:::o;7613:93::-;7671:5;7696:2;7689:9;;7613:93;:::o;10487:238::-;10575:4;10592:13;10608:12;:10;:12::i;:::-;10592:28;;10631:64;10640:5;10647:7;10684:10;10656:25;10666:5;10673:7;10656:9;:25::i;:::-;:38;;;;:::i;:::-;10631:8;:64::i;:::-;10713:4;10706:11;;;10487:238;;;;:::o;18422:91::-;18478:27;18484:12;:10;:12::i;:::-;18498:6;18478:5;:27::i;:::-;18422:91;:::o;7942:127::-;8016:7;8043:9;:18;8053:7;8043:18;;;;;;;;;;;;;;;;8036:25;;7942:127;;;:::o;20886:103::-;20124:13;:11;:13::i;:::-;20951:30:::1;20978:1;20951:18;:30::i;:::-;20886:103::o:0;18832:164::-;18909:46;18925:7;18934:12;:10;:12::i;:::-;18948:6;18909:15;:46::i;:::-;18966:22;18972:7;18981:6;18966:5;:22::i;:::-;18832:164;;:::o;20238:87::-;20284:7;20311:6;;;;;;;;;;;20304:13;;20238:87;:::o;6870:104::-;6926:13;6959:7;6952:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6870:104;:::o;22151:15::-;;;;:::o;22125:19::-;;;;;;;;;;;;;:::o;23627:249::-;20124:13;:11;:13::i;:::-;23735:1:::1;23713:24;;:10;:24;;::::0;23705:64:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23813:4;23780:18;:30;23799:10;23780:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;23833:35;23857:10;23833:35;;;;;;:::i;:::-;;;;;;;;23627:249:::0;:::o;11228:436::-;11321:4;11338:13;11354:12;:10;:12::i;:::-;11338:28;;11377:24;11404:25;11414:5;11421:7;11404:9;:25::i;:::-;11377:52;;11468:15;11448:16;:35;;11440:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11561:60;11570:5;11577:7;11605:15;11586:16;:34;11561:8;:60::i;:::-;11652:4;11645:11;;;;11228:436;;;;:::o;8275:193::-;8354:4;8371:13;8387:12;:10;:12::i;:::-;8371:28;;8410;8420:5;8427:2;8431:6;8410:9;:28::i;:::-;8456:4;8449:11;;;8275:193;;;;:::o;22175:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;23214:236::-;20124:13;:11;:13::i;:::-;23304:1:::1;23288:18;;:4;:18;;::::0;23280:58:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23356:4;23349;;:11;;;;;;;;;;;;;;;;;;23398:4;23371:18;:24;23390:4;23371:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;23418:24;23437:4;23418:24;;;;;;:::i;:::-;;;;;;;;23214:236:::0;:::o;8531:151::-;8620:7;8647:11;:18;8659:5;8647:18;;;;;;;;;;;;;;;:27;8666:7;8647:27;;;;;;;;;;;;;;;;8640:34;;8531:151;;;;:::o;21144:201::-;20124:13;:11;:13::i;:::-;21253:1:::1;21233:22;;:8;:22;;::::0;21225:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21309:28;21328:8;21309:18;:28::i;:::-;21144:201:::0;:::o;4293:98::-;4346:7;4373:10;4366:17;;4293:98;:::o;15255:380::-;15408:1;15391:19;;:5;:19;;;15383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15489:1;15470:21;;:7;:21;;;15462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15573:6;15543:11;:18;15555:5;15543:18;;;;;;;;;;;;;;;:27;15562:7;15543:27;;;;;;;;;;;;;;;:36;;;;15611:7;15595:32;;15604:5;15595:32;;;15620:6;15595:32;;;;;;:::i;:::-;;;;;;;;15255:380;;;:::o;15926:453::-;16061:24;16088:25;16098:5;16105:7;16088:9;:25::i;:::-;16061:52;;16148:17;16128:16;:37;16124:248;;16210:6;16190:16;:26;;16182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16294:51;16303:5;16310:7;16338:6;16319:16;:25;16294:8;:51::i;:::-;16124:248;16050:329;15926:453;;;:::o;23884:580::-;24044:18;:27;24063:7;24044:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;24075:18;:30;24094:10;24075:30;;;;;;;;;;;;;;;;;;;;;;;;;24044:61;24041:416;;;24125:45;24141:7;24150:10;24162:7;24125:15;:45::i;:::-;24041:416;;;24209:18;24248:5;24241:3;;24231:7;:13;;;;:::i;:::-;24230:23;;;;:::i;:::-;24209:44;;24272:18;24303:10;24293:7;:20;;;;:::i;:::-;24272:41;;24332:42;24348:7;24357:4;;;;;;;;;;;24363:10;24332:15;:42::i;:::-;24393:48;24409:7;24418:10;24430;24393:15;:48::i;:::-;24190:267;;24041:416;23884:580;;;:::o;20403:132::-;20478:12;:10;:12::i;:::-;20467:23;;:7;:5;:7::i;:::-;:23;;;20459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20403:132::o;14142:675::-;14245:1;14226:21;;:7;:21;;;14218:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14298:49;14319:7;14336:1;14340:6;14298:20;:49::i;:::-;14360:22;14385:9;:18;14395:7;14385:18;;;;;;;;;;;;;;;;14360:43;;14440:6;14422:14;:24;;14414:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14559:6;14542:14;:23;14521:9;:18;14531:7;14521:18;;;;;;;;;;;;;;;:44;;;;14676:6;14660:12;;:22;;;;;;;;;;;14737:1;14711:37;;14720:7;14711:37;;;14741:6;14711:37;;;;;;:::i;:::-;;;;;;;;14761:48;14781:7;14798:1;14802:6;14761:19;:48::i;:::-;14207:610;14142:675;;:::o;21505:191::-;21579:16;21598:6;;;;;;;;;;;21579:25;;21624:8;21615:6;;:17;;;;;;;;;;;;;;;;;;21679:8;21648:40;;21669:8;21648:40;;;;;;;;;;;;21568:128;21505:191;:::o;12134:840::-;12281:1;12265:18;;:4;:18;;;12257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12358:1;12344:16;;:2;:16;;;12336:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12413:38;12434:4;12440:2;12444:6;12413:20;:38::i;:::-;12464:19;12486:9;:15;12496:4;12486:15;;;;;;;;;;;;;;;;12464:37;;12535:6;12520:11;:21;;12512:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12652:6;12638:11;:20;12620:9;:15;12630:4;12620:15;;;;;;;;;;;;;;;:38;;;;12855:6;12838:9;:13;12848:2;12838:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12905:2;12890:26;;12899:4;12890:26;;;12909:6;12890:26;;;;;;:::i;:::-;;;;;;;;12929:37;12949:4;12955:2;12959:6;12929:19;:37::i;:::-;12246:728;12134:840;;;:::o;16979:125::-;;;;:::o;17708:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;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:172::-;7007:24;7003:1;6995:6;6991:14;6984:48;6867:172;:::o;7045:366::-;7187:3;7208:67;7272:2;7267:3;7208:67;:::i;:::-;7201:74;;7284:93;7373:3;7284:93;:::i;:::-;7402:2;7397:3;7393:12;7386:19;;7045:366;;;:::o;7417:419::-;7583:4;7621:2;7610:9;7606:18;7598:26;;7670:9;7664:4;7660:20;7656:1;7645:9;7641:17;7634:47;7698:131;7824:4;7698:131;:::i;:::-;7690:139;;7417:419;;;:::o;7842:180::-;7890:77;7887:1;7880:88;7987:4;7984:1;7977:15;8011:4;8008:1;8001:15;8028:191;8068:3;8087:20;8105:1;8087:20;:::i;:::-;8082:25;;8121:20;8139:1;8121:20;:::i;:::-;8116:25;;8164:1;8161;8157:9;8150:16;;8185:3;8182:1;8179:10;8176:36;;;8192:18;;:::i;:::-;8176:36;8028:191;;;;:::o;8225:177::-;8365:29;8361:1;8353:6;8349:14;8342:53;8225:177;:::o;8408:366::-;8550:3;8571:67;8635:2;8630:3;8571:67;:::i;:::-;8564:74;;8647:93;8736:3;8647:93;:::i;:::-;8765:2;8760:3;8756:12;8749:19;;8408:366;;;:::o;8780:419::-;8946:4;8984:2;8973:9;8969:18;8961:26;;9033:9;9027:4;9023:20;9019:1;9008:9;9004:17;8997:47;9061:131;9187:4;9061:131;:::i;:::-;9053:139;;8780:419;;;:::o;9205:224::-;9345:34;9341:1;9333:6;9329:14;9322:58;9414:7;9409:2;9401:6;9397:15;9390:32;9205:224;:::o;9435:366::-;9577:3;9598:67;9662:2;9657:3;9598:67;:::i;:::-;9591:74;;9674:93;9763:3;9674:93;:::i;:::-;9792:2;9787:3;9783:12;9776:19;;9435:366;;;:::o;9807:419::-;9973:4;10011:2;10000:9;9996:18;9988:26;;10060:9;10054:4;10050:20;10046:1;10035:9;10031:17;10024:47;10088:131;10214:4;10088:131;:::i;:::-;10080:139;;9807:419;;;:::o;10232:225::-;10372:34;10368:1;10360:6;10356:14;10349:58;10441:8;10436:2;10428:6;10424:15;10417:33;10232:225;:::o;10463:366::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:419::-;11001:4;11039:2;11028:9;11024:18;11016:26;;11088:9;11082:4;11078:20;11074:1;11063:9;11059:17;11052:47;11116:131;11242:4;11116:131;:::i;:::-;11108:139;;10835:419;;;:::o;11260:223::-;11400:34;11396:1;11388:6;11384:14;11377:58;11469:6;11464:2;11456:6;11452:15;11445:31;11260:223;:::o;11489:366::-;11631:3;11652:67;11716:2;11711:3;11652:67;:::i;:::-;11645:74;;11728:93;11817:3;11728:93;:::i;:::-;11846:2;11841:3;11837:12;11830:19;;11489:366;;;:::o;11861:419::-;12027:4;12065:2;12054:9;12050:18;12042:26;;12114:9;12108:4;12104:20;12100:1;12089:9;12085:17;12078:47;12142:131;12268:4;12142:131;:::i;:::-;12134:139;;11861:419;;;:::o;12286:221::-;12426:34;12422:1;12414:6;12410:14;12403:58;12495:4;12490:2;12482:6;12478:15;12471:29;12286:221;:::o;12513:366::-;12655:3;12676:67;12740:2;12735:3;12676:67;:::i;:::-;12669:74;;12752:93;12841:3;12752:93;:::i;:::-;12870:2;12865:3;12861:12;12854:19;;12513:366;;;:::o;12885:419::-;13051:4;13089:2;13078:9;13074:18;13066:26;;13138:9;13132:4;13128:20;13124:1;13113:9;13109:17;13102:47;13166:131;13292:4;13166:131;:::i;:::-;13158:139;;12885:419;;;:::o;13310:179::-;13450:31;13446:1;13438:6;13434:14;13427:55;13310:179;:::o;13495:366::-;13637:3;13658:67;13722:2;13717:3;13658:67;:::i;:::-;13651:74;;13734:93;13823:3;13734:93;:::i;:::-;13852:2;13847:3;13843:12;13836:19;;13495:366;;;:::o;13867:419::-;14033:4;14071:2;14060:9;14056:18;14048:26;;14120:9;14114:4;14110:20;14106:1;14095:9;14091:17;14084:47;14148:131;14274:4;14148:131;:::i;:::-;14140:139;;13867:419;;;:::o;14292:410::-;14332:7;14355:20;14373:1;14355:20;:::i;:::-;14350:25;;14389:20;14407:1;14389:20;:::i;:::-;14384:25;;14444:1;14441;14437:9;14466:30;14484:11;14466:30;:::i;:::-;14455:41;;14645:1;14636:7;14632:15;14629:1;14626:22;14606:1;14599:9;14579:83;14556:139;;14675:18;;:::i;:::-;14556:139;14340:362;14292:410;;;;:::o;14708:180::-;14756:77;14753:1;14746:88;14853:4;14850:1;14843:15;14877:4;14874:1;14867:15;14894:185;14934:1;14951:20;14969:1;14951:20;:::i;:::-;14946:25;;14985:20;15003:1;14985:20;:::i;:::-;14980:25;;15024:1;15014:35;;15029:18;;:::i;:::-;15014:35;15071:1;15068;15064:9;15059:14;;14894:185;;;;:::o;15085:194::-;15125:4;15145:20;15163:1;15145:20;:::i;:::-;15140:25;;15179:20;15197:1;15179:20;:::i;:::-;15174:25;;15223:1;15220;15216:9;15208:17;;15247:1;15241:4;15238:11;15235:37;;;15252:18;;:::i;:::-;15235:37;15085:194;;;;:::o;15285:182::-;15425:34;15421:1;15413:6;15409:14;15402:58;15285:182;:::o;15473:366::-;15615:3;15636:67;15700:2;15695:3;15636:67;:::i;:::-;15629:74;;15712:93;15801:3;15712:93;:::i;:::-;15830:2;15825:3;15821:12;15814:19;;15473:366;;;:::o;15845:419::-;16011:4;16049:2;16038:9;16034:18;16026:26;;16098:9;16092:4;16088:20;16084:1;16073:9;16069:17;16062:47;16126:131;16252:4;16126:131;:::i;:::-;16118:139;;15845:419;;;:::o;16270:220::-;16410:34;16406:1;16398:6;16394:14;16387:58;16479:3;16474:2;16466:6;16462:15;16455:28;16270:220;:::o;16496:366::-;16638:3;16659:67;16723:2;16718:3;16659:67;:::i;:::-;16652:74;;16735:93;16824:3;16735:93;:::i;:::-;16853:2;16848:3;16844:12;16837:19;;16496:366;;;:::o;16868:419::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:221::-;17433:34;17429:1;17421:6;17417:14;17410:58;17502:4;17497:2;17489:6;17485:15;17478:29;17293:221;:::o;17520:366::-;17662:3;17683:67;17747:2;17742:3;17683:67;:::i;:::-;17676:74;;17759:93;17848:3;17759:93;:::i;:::-;17877:2;17872:3;17868:12;17861:19;;17520:366;;;:::o;17892:419::-;18058:4;18096:2;18085:9;18081:18;18073:26;;18145:9;18139:4;18135:20;18131:1;18120:9;18116:17;18109:47;18173:131;18299:4;18173:131;:::i;:::-;18165:139;;17892:419;;;:::o;18317:224::-;18457:34;18453:1;18445:6;18441:14;18434:58;18526:7;18521:2;18513:6;18509:15;18502:32;18317:224;:::o;18547:366::-;18689:3;18710:67;18774:2;18769:3;18710:67;:::i;:::-;18703:74;;18786:93;18875:3;18786:93;:::i;:::-;18904:2;18899:3;18895:12;18888:19;;18547:366;;;:::o;18919:419::-;19085:4;19123:2;19112:9;19108:18;19100:26;;19172:9;19166:4;19162:20;19158:1;19147:9;19143:17;19136:47;19200:131;19326:4;19200:131;:::i;:::-;19192:139;;18919:419;;;:::o;19344:222::-;19484:34;19480:1;19472:6;19468:14;19461:58;19553:5;19548:2;19540:6;19536:15;19529:30;19344:222;:::o;19572:366::-;19714:3;19735:67;19799:2;19794:3;19735:67;:::i;:::-;19728:74;;19811:93;19900:3;19811:93;:::i;:::-;19929:2;19924:3;19920:12;19913:19;;19572:366;;;:::o;19944:419::-;20110:4;20148:2;20137:9;20133:18;20125:26;;20197:9;20191:4;20187:20;20183:1;20172:9;20168:17;20161:47;20225:131;20351:4;20225:131;:::i;:::-;20217:139;;19944:419;;;:::o;20369:225::-;20509:34;20505:1;20497:6;20493:14;20486:58;20578:8;20573:2;20565:6;20561:15;20554:33;20369:225;:::o;20600:366::-;20742:3;20763:67;20827:2;20822:3;20763:67;:::i;:::-;20756:74;;20839:93;20928:3;20839:93;:::i;:::-;20957:2;20952:3;20948:12;20941:19;;20600:366;;;:::o;20972:419::-;21138:4;21176:2;21165:9;21161:18;21153:26;;21225:9;21219:4;21215:20;21211:1;21200:9;21196:17;21189:47;21253:131;21379:4;21253:131;:::i;:::-;21245:139;;20972:419;;;:::o
Swarm Source
ipfs://a589aa67816fe43632d2fbd566054b2eb2b2efe75196ec088b7620bc80646190
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.