ERC-20
Overview
Max Total Supply
100 CANYON
Holders
7
Total Transfers
-
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Canyon
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-03-05 */ /** *Submitted for verification at SonicScan.org on 2025-03-04 */ /** *Submitted for verification at SonicScan.org on 2025-03-01 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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); } // 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); } // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // OpenZeppelin Contracts (last updated v4.9.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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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 {} } // 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); } } // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath8 { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint8 a, uint8 b) internal pure returns (uint8) { uint8 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint8 a, uint8 b) internal pure returns (uint8) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint8 a, uint8 b, string memory errorMessage ) internal pure returns (uint8) { require(b <= a, errorMessage); uint8 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint8 a, uint8 b) internal pure returns (uint8) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint8 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint8 a, uint8 b) internal pure returns (uint8) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint8 a, uint8 b, string memory errorMessage ) internal pure returns (uint8) { require(b > 0, errorMessage); uint8 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint8 a, uint8 b) internal pure returns (uint8) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint8 a, uint8 b, string memory errorMessage ) internal pure returns (uint8) { require(b != 0, errorMessage); return a % b; } } // OpenZeppelin Contracts (last updated v4.9.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. 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); } } pragma solidity ^0.8.0; contract Operator is Context, Ownable { address private _operator; event OperatorTransferred( address indexed previousOperator, address indexed newOperator ); constructor() { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require( _operator == msg.sender, "operator: caller is not the operator" ); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require( newOperator_ != address(0), "operator: zero address given for new operator" ); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } function _renounceOperator() public onlyOwner { emit OperatorTransferred(_operator, address(0)); _operator = address(0); } } pragma solidity ^0.8.0; interface IOracle { function update() external; function consult( address _token, uint256 _amountIn ) external view returns (uint256 amountOut); function twap( address _token, uint256 _amountIn ) external view returns (uint256 _amountOut); } pragma solidity ^0.8.0; contract Canyon is ERC20Burnable, Operator { using SafeMath8 for uint8; using SafeMath for uint256; // Initial distribution for the first 3 days genesis pools uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 14000 ether; // Distribution for DAO FUND uint256 public constant INITIAL_DAO_FUND_DISTRIBUTION = 1600 ether; // Have the rewards been distributed to the pools bool public rewardPoolDistributed = false; // Address of the Oracle address public canyonOracle; // Sales tax rate (default is 0.2%) uint256 public salesTaxRate = 2; // 0.2% in basis points (1 basis point = 0.01%) uint256 public constant DEFAULT_SALES_TAX_RATE = 2; // 0.2% in basis points // Last update timestamp for TWAP uint256 public lastUpdateTimestamp; // TWAP update interval (6 hours) uint256 public constant TWAP_UPDATE_INTERVAL = 6 hours; // Mapping to store DEX pool addresses mapping(address => bool) public isDexPool; // Tax address to receive tax address public taxAddress; event SalesTaxRateUpdated(uint256 newRate); event DexPoolAdded(address indexed dexPool); event DexPoolRemoved(address indexed dexPool); event TaxAddressUpdated(address indexed newTax); /** * @notice Constructs the CANYON ERC-20 contract. */ constructor(address _taxAddress) ERC20("Valley Finance", "CANYON") { require(_taxAddress != address(0), "Canyon: invalid tax address"); taxAddress = _taxAddress; // Mints 100 CANYON to contract creator for initial pool setup _mint(msg.sender, 100 ether); lastUpdateTimestamp = block.timestamp; } /** * @notice Add a DEX pool address to the whitelist. * @param _dexPool The address of the DEX pool. */ function addDexPool(address _dexPool) public onlyOperator { require(_dexPool != address(0), "Canyon: invalid DEX pool address"); isDexPool[_dexPool] = true; emit DexPoolAdded(_dexPool); } /** * @notice Remove a DEX pool address from the whitelist. * @param _dexPool The address of the DEX pool. */ function removeDexPool(address _dexPool) public onlyOperator { require(isDexPool[_dexPool], "Canyon: DEX pool not found"); isDexPool[_dexPool] = false; emit DexPoolRemoved(_dexPool); } /** * @notice Check if an address is a DEX pool. * @param _address The address to check. */ function isDexPoolAddress(address _address) public view returns (bool) { return isDexPool[_address]; } /** * @notice Update the tax address. * @param _taxAddress The new tax address. */ function updateTaxAddress(address _taxAddress) public onlyOperator { require(_taxAddress != address(0), "Canyon: invalid tax address"); taxAddress = _taxAddress; emit TaxAddressUpdated(_taxAddress); } function _getCanyonPrice() internal view returns (uint256 _canyonPrice) { try IOracle(canyonOracle).consult(address(this), 1e18) returns ( uint256 _price ) { return uint256(_price); } catch { revert("Canyon: failed to fetch CANYON price from Oracle"); } } function setCanyonOracle(address _canyonOracle) public onlyOperator { require( _canyonOracle != address(0), "Canyon: oracle address cannot be 0 address" ); canyonOracle = _canyonOracle; } function mint( address recipient_, uint256 amount_ ) public onlyOperator returns (bool) { uint256 balanceBefore = balanceOf(recipient_); _mint(recipient_, amount_); uint256 balanceAfter = balanceOf(recipient_); return balanceAfter > balanceBefore; } function burn(uint256 amount) public override { super.burn(amount); } function burnFrom( address account, uint256 amount ) public override onlyOperator { super.burnFrom(account, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transferWithTax(sender, recipient, amount); _approve( sender, _msgSender(), allowance(sender, _msgSender()).sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function transfer( address recipient, uint256 amount ) public override returns (bool) { _transferWithTax(_msgSender(), recipient, amount); return true; } function _transferWithTax( address sender, address recipient, uint256 amount ) internal { // Update tax rate if necessary if (block.timestamp >= lastUpdateTimestamp + TWAP_UPDATE_INTERVAL) { updateSalesTaxRate(); } // Check if the recipient is a DEX pool if (isDexPool[recipient]) { // Apply sales tax for DEX transactions uint256 taxAmount = amount.mul(salesTaxRate).div(10000); // Calculate tax amount uint256 transferAmount = amount.sub(taxAmount); // Calculate transfer amount after tax _transfer(sender, recipient, transferAmount); // Send remaining amount to recipient if (taxAmount > 0) { _transfer(sender, taxAddress, taxAmount); // Send tax to the taxaddress } } else { // No tax for regular transfers _transfer(sender, recipient, amount); } } function manualUpdateTwap() public onlyOperator { updateSalesTaxRate(); } function updateSalesTaxRate() internal { require( block.timestamp >= lastUpdateTimestamp + TWAP_UPDATE_INTERVAL, "Canyon: TWAP update interval not reached" ); uint256 twapPrice = _getCanyonPrice(); if (twapPrice >= 1.5 ether) { salesTaxRate = 500; // 5% } else if (twapPrice >= 1.4 ether) { salesTaxRate = 800; // 8% } else if (twapPrice >= 1.3 ether) { salesTaxRate = 1000; // 10% } else if (twapPrice >= 1.2 ether) { salesTaxRate = 1500; // 15% } else if (twapPrice >= 1.1 ether) { salesTaxRate = 2000; // 20% } else { salesTaxRate = 3500; // 35% } lastUpdateTimestamp = block.timestamp; emit SalesTaxRateUpdated(salesTaxRate); } function distributeReward( address _genesisPool, address _daoFund ) external onlyOperator { require(!rewardPoolDistributed, "Canyon: only can distribute once"); require( _genesisPool != address(0), "Canyon: invalid genesis pool address" ); require(_daoFund != address(0), "Canyon: invalid DAO fund address"); rewardPoolDistributed = true; _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION); _mint(_daoFund, INITIAL_DAO_FUND_DISTRIBUTION); } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { _token.transfer(_to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_taxAddress","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":true,"internalType":"address","name":"dexPool","type":"address"}],"name":"DexPoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dexPool","type":"address"}],"name":"DexPoolRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"newRate","type":"uint256"}],"name":"SalesTaxRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newTax","type":"address"}],"name":"TaxAddressUpdated","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":[],"name":"DEFAULT_SALES_TAX_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_DAO_FUND_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_GENESIS_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TWAP_UPDATE_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dexPool","type":"address"}],"name":"addDexPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"canyonOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisPool","type":"address"},{"internalType":"address","name":"_daoFund","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isDexPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isDexPoolAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualUpdateTwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","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":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_dexPool","type":"address"}],"name":"removeDexPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salesTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_canyonOracle","type":"address"}],"name":"setCanyonOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"}],"name":"updateTaxAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526006805460ff60a01b191690556002600855348015610021575f80fd5b50604051611f27380380611f27833981016040819052610040916102a4565b6040518060400160405280600e81526020016d56616c6c65792046696e616e636560901b8152506040518060400160405280600681526020016521a0a72ca7a760d11b81525081600390816100959190610368565b5060046100a28282610368565b5050506100bb6100b661018d60201b60201c565b610191565b600680546001600160a01b031916339081179091556040515f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36001600160a01b0381166101555760405162461bcd60e51b815260206004820152601b60248201527f43616e796f6e3a20696e76616c6964207461782061646472657373000000000060448201526064015b60405180910390fd5b600b80546001600160a01b0319166001600160a01b0383161790556101833368056bc75e2d631000006101e2565b5042600955610447565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166102385760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161014c565b8060025f8282546102499190610422565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b5f602082840312156102b4575f80fd5b81516001600160a01b03811681146102ca575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806102f957607f821691505b60208210810361031757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561029f57805f5260205f20601f840160051c810160208510156103425750805b601f840160051c820191505b81811015610361575f815560010161034e565b5050505050565b81516001600160401b03811115610381576103816102d1565b6103958161038f84546102e5565b8461031d565b6020601f8211600181146103c7575f83156103b05750848201515b5f19600385901b1c1916600184901b178455610361565b5f84815260208120601f198516915b828110156103f657878501518255602094850194600190920191016103d6565b508482101561041357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561044157634e487b7160e01b5f52601160045260245ffd5b92915050565b611ad3806104545f395ff3fe608060405234801561000f575f80fd5b5060043610610234575f3560e01c806370a0823111610135578063acc1ff5e116100b4578063dd62ed3e11610079578063dd62ed3e146104e6578063df67caf0146104f9578063f2fde38b14610502578063f4fd47cf14610515578063fc437e1714610528575f80fd5b8063acc1ff5e14610484578063b49cf838146104af578063b7bda68f146104c2578063cc03b9a9146104d5578063daca4754146104dd575f80fd5b806395d89b41116100fa57806395d89b411461042f5780639662676c146104375780639bc033bc1461044b578063a457c2d71461045e578063a9059cbb14610471575f80fd5b806370a08231146103d3578063715018a6146103fb57806379cc6790146104035780638a27f103146104165780638da5cb5b1461041e575f80fd5b8063313ce567116101c15780634e20a02c116101865780634e20a02c146103605780635346f3141461037157806354575af41461039c578063570ca735146103af5780635adf655a146103c0575f80fd5b8063313ce56714610305578063395093511461031457806340c10f191461032757806342966c681461033a5780634456eda21461034d575f80fd5b80631c6f19ea116102075780631c6f19ea146102985780631f5a5ab8146102a85780632357edb3146102bd57806323b872dd146102df57806329605e77146102f2575f80fd5b806306fdde0314610238578063095ea7b31461025657806314bcec9f1461027957806318160ddd14610290575b5f80fd5b610240610530565b60405161024d91906117fa565b60405180910390f35b610269610264366004611843565b6105c0565b604051901515815260200161024d565b61028260095481565b60405190815260200161024d565b600254610282565b6102826856bc75e2d63100000081565b6102bb6102b636600461186d565b6105d9565b005b6102696102cb36600461186d565b600a6020525f908152604090205460ff1681565b6102696102ed366004611888565b6106bb565b6102bb61030036600461186d565b610709565b6040516012815260200161024d565b610269610322366004611843565b61071d565b610269610335366004611843565b610739565b6102bb6103483660046118c6565b6107ab565b6006546001600160a01b03163314610269565b6102826902f6f10780d22cc0000081565b600754610384906001600160a01b031681565b6040516001600160a01b03909116815260200161024d565b6102bb6103aa3660046118dd565b6107b4565b6006546001600160a01b0316610384565b6102bb6103ce36600461186d565b610854565b6102826103e136600461186d565b6001600160a01b03165f9081526020819052604090205490565b6102bb61091d565b6102bb610411366004611843565b610930565b6102bb610968565b6005546001600160a01b0316610384565b6102406109b9565b60065461026990600160a01b900460ff1681565b6102bb61045936600461186d565b6109c8565b61026961046c366004611843565b610a93565b61026961047f366004611843565b610b18565b61026961049236600461186d565b6001600160a01b03165f908152600a602052604090205460ff1690565b6102bb6104bd36600461186d565b610b2d565b600b54610384906001600160a01b031681565b6102bb610be2565b61028261546081565b6102826104f436600461191c565b610c14565b61028260085481565b6102bb61051036600461186d565b610c3e565b6102bb61052336600461191c565b610cb4565b610282600281565b60606003805461053f90611953565b80601f016020809104026020016040519081016040528092919081815260200182805461056b90611953565b80156105b65780601f1061058d576101008083540402835291602001916105b6565b820191905f5260205f20905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b5f336105cd818585610e2a565b60019150505b92915050565b6006546001600160a01b0316331461060c5760405162461bcd60e51b81526004016106039061198b565b60405180910390fd5b6001600160a01b0381165f908152600a602052604090205460ff166106735760405162461bcd60e51b815260206004820152601a60248201527f43616e796f6e3a2044455820706f6f6c206e6f7420666f756e640000000000006044820152606401610603565b6001600160a01b0381165f818152600a6020526040808220805460ff19169055517ffcaf268af25e1103f62974fc8b750e4cc5e952268dc0bbf172fbcf0757839c849190a250565b5f6106c7848484610f4d565b6106ff84336106fa85604051806060016040528060288152602001611a76602891396106f38a33610c14565b9190610ffc565b610e2a565b5060019392505050565b610711611027565b61071a81611081565b50565b5f336105cd81858561072f8383610c14565b6106fa91906119e3565b6006545f906001600160a01b031633146107655760405162461bcd60e51b81526004016106039061198b565b6001600160a01b0383165f908152602081905260409020546107878484611144565b6001600160a01b0384165f9081526020819052604081205491909111949350505050565b61071a81611201565b6006546001600160a01b031633146107de5760405162461bcd60e51b81526004016106039061198b565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af115801561082a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061084e91906119f6565b50505050565b6006546001600160a01b0316331461087e5760405162461bcd60e51b81526004016106039061198b565b6001600160a01b0381166108d45760405162461bcd60e51b815260206004820152601b60248201527f43616e796f6e3a20696e76616c696420746178206164647265737300000000006044820152606401610603565b600b80546001600160a01b0319166001600160a01b0383169081179091556040517ffa575a2937f4d8860715335c80a51e975f276f15a8717f4ad9d5ad153d3011ce905f90a250565b610925611027565b61092e5f61120b565b565b6006546001600160a01b0316331461095a5760405162461bcd60e51b81526004016106039061198b565b610964828261125c565b5050565b610970611027565b6006546040515f916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680546001600160a01b0319169055565b60606004805461053f90611953565b6006546001600160a01b031633146109f25760405162461bcd60e51b81526004016106039061198b565b6001600160a01b038116610a485760405162461bcd60e51b815260206004820181905260248201527f43616e796f6e3a20696e76616c69642044455820706f6f6c20616464726573736044820152606401610603565b6001600160a01b0381165f818152600a6020526040808220805460ff19166001179055517f22d83b8b5e311ae4fe9838941063fe79b9f2290dac60b8a2c21a99bd16b62b6f9190a250565b5f3381610aa08286610c14565b905083811015610b005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610603565b610b0d8286868403610e2a565b506001949350505050565b5f610b24338484610f4d565b50600192915050565b6006546001600160a01b03163314610b575760405162461bcd60e51b81526004016106039061198b565b6001600160a01b038116610bc05760405162461bcd60e51b815260206004820152602a60248201527f43616e796f6e3a206f7261636c6520616464726573732063616e6e6f742062656044820152692030206164647265737360b01b6064820152608401610603565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610c0c5760405162461bcd60e51b81526004016106039061198b565b61092e611271565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610c46611027565b6001600160a01b038116610cab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610603565b61071a8161120b565b6006546001600160a01b03163314610cde5760405162461bcd60e51b81526004016106039061198b565b600654600160a01b900460ff1615610d385760405162461bcd60e51b815260206004820181905260248201527f43616e796f6e3a206f6e6c792063616e2064697374726962757465206f6e63656044820152606401610603565b6001600160a01b038216610d9a5760405162461bcd60e51b8152602060048201526024808201527f43616e796f6e3a20696e76616c69642067656e6573697320706f6f6c206164646044820152637265737360e01b6064820152608401610603565b6001600160a01b038116610df05760405162461bcd60e51b815260206004820181905260248201527f43616e796f6e3a20696e76616c69642044414f2066756e6420616464726573736044820152606401610603565b6006805460ff60a01b1916600160a01b179055610e17826902f6f10780d22cc00000611144565b610964816856bc75e2d631000000611144565b6001600160a01b038316610e8c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610603565b6001600160a01b038216610eed5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610603565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b615460600954610f5d91906119e3565b4210610f6b57610f6b611271565b6001600160a01b0382165f908152600a602052604090205460ff1615610fec575f610fad612710610fa7600854856113b290919063ffffffff16565b906113c4565b90505f610fba83836113cf565b9050610fc78585836113da565b8115610fe557600b54610fe59086906001600160a01b0316846113da565b5050505050565b610ff78383836113da565b505050565b5f818484111561101f5760405162461bcd60e51b815260040161060391906117fa565b505050900390565b6005546001600160a01b0316331461092e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610603565b6001600160a01b0381166110ed5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b6064820152608401610603565b6040516001600160a01b038216905f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661119a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610603565b8060025f8282546111ab91906119e3565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b61071a338261157c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6112678233836116ac565b610964828261157c565b61546060095461128191906119e3565b4210156112e15760405162461bcd60e51b815260206004820152602860248201527f43616e796f6e3a20545741502075706461746520696e74657276616c206e6f74604482015267081c995858da195960c21b6064820152608401610603565b5f6112ea61171e565b90506714d1120d7b1600008110611306576101f4600855611375565b67136dcc951d8c0000811061132057610320600855611375565b67120a871cc0020000811061133a576103e8600855611375565b6710a741a4627800008110611354576105dc600855611375565b670f43fc2c04ee0000811061136e576107d0600855611375565b610dac6008555b426009556008546040519081527f9aaebc8ec54916178b5e54a88904bb51ec537499d5229072961c3cd94483b9439060200160405180910390a150565b5f6113bd8284611a15565b9392505050565b5f6113bd8284611a2c565b5f6113bd8284611a4b565b6001600160a01b03831661143e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610603565b6001600160a01b0382166114a05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610603565b6001600160a01b0383165f90815260208190526040902054818110156115175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610603565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361084e565b6001600160a01b0382166115dc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610603565b6001600160a01b0382165f908152602081905260409020548181101561164f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610603565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f6116b78484610c14565b90505f19811461084e57818110156117115760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610603565b61084e8484848403610e2a565b600754604051633ddac95360e01b8152306004820152670de0b6b3a764000060248201525f916001600160a01b031690633ddac95390604401602060405180830381865afa925050508015611790575060408051601f3d908101601f1916820190925261178d91810190611a5e565b60015b6117f55760405162461bcd60e51b815260206004820152603060248201527f43616e796f6e3a206661696c656420746f2066657463682043414e594f4e207060448201526f726963652066726f6d204f7261636c6560801b6064820152608401610603565b919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461071a575f80fd5b5f8060408385031215611854575f80fd5b823561185f8161182f565b946020939093013593505050565b5f6020828403121561187d575f80fd5b81356113bd8161182f565b5f805f6060848603121561189a575f80fd5b83356118a58161182f565b925060208401356118b58161182f565b929592945050506040919091013590565b5f602082840312156118d6575f80fd5b5035919050565b5f805f606084860312156118ef575f80fd5b83356118fa8161182f565b92506020840135915060408401356119118161182f565b809150509250925092565b5f806040838503121561192d575f80fd5b82356119388161182f565b915060208301356119488161182f565b809150509250929050565b600181811c9082168061196757607f821691505b60208210810361198557634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105d3576105d36119cf565b5f60208284031215611a06575f80fd5b815180151581146113bd575f80fd5b80820281158282048414176105d3576105d36119cf565b5f82611a4657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156105d3576105d36119cf565b5f60208284031215611a6e575f80fd5b505191905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220973fa9630c03ca80de2cf1e817b660217e5cd5ffca60e8f38e7741c1134eb98d64736f6c634300081a0033000000000000000000000000e846702c98f41c3e48cd8c9fa779a0300cf43841
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610234575f3560e01c806370a0823111610135578063acc1ff5e116100b4578063dd62ed3e11610079578063dd62ed3e146104e6578063df67caf0146104f9578063f2fde38b14610502578063f4fd47cf14610515578063fc437e1714610528575f80fd5b8063acc1ff5e14610484578063b49cf838146104af578063b7bda68f146104c2578063cc03b9a9146104d5578063daca4754146104dd575f80fd5b806395d89b41116100fa57806395d89b411461042f5780639662676c146104375780639bc033bc1461044b578063a457c2d71461045e578063a9059cbb14610471575f80fd5b806370a08231146103d3578063715018a6146103fb57806379cc6790146104035780638a27f103146104165780638da5cb5b1461041e575f80fd5b8063313ce567116101c15780634e20a02c116101865780634e20a02c146103605780635346f3141461037157806354575af41461039c578063570ca735146103af5780635adf655a146103c0575f80fd5b8063313ce56714610305578063395093511461031457806340c10f191461032757806342966c681461033a5780634456eda21461034d575f80fd5b80631c6f19ea116102075780631c6f19ea146102985780631f5a5ab8146102a85780632357edb3146102bd57806323b872dd146102df57806329605e77146102f2575f80fd5b806306fdde0314610238578063095ea7b31461025657806314bcec9f1461027957806318160ddd14610290575b5f80fd5b610240610530565b60405161024d91906117fa565b60405180910390f35b610269610264366004611843565b6105c0565b604051901515815260200161024d565b61028260095481565b60405190815260200161024d565b600254610282565b6102826856bc75e2d63100000081565b6102bb6102b636600461186d565b6105d9565b005b6102696102cb36600461186d565b600a6020525f908152604090205460ff1681565b6102696102ed366004611888565b6106bb565b6102bb61030036600461186d565b610709565b6040516012815260200161024d565b610269610322366004611843565b61071d565b610269610335366004611843565b610739565b6102bb6103483660046118c6565b6107ab565b6006546001600160a01b03163314610269565b6102826902f6f10780d22cc0000081565b600754610384906001600160a01b031681565b6040516001600160a01b03909116815260200161024d565b6102bb6103aa3660046118dd565b6107b4565b6006546001600160a01b0316610384565b6102bb6103ce36600461186d565b610854565b6102826103e136600461186d565b6001600160a01b03165f9081526020819052604090205490565b6102bb61091d565b6102bb610411366004611843565b610930565b6102bb610968565b6005546001600160a01b0316610384565b6102406109b9565b60065461026990600160a01b900460ff1681565b6102bb61045936600461186d565b6109c8565b61026961046c366004611843565b610a93565b61026961047f366004611843565b610b18565b61026961049236600461186d565b6001600160a01b03165f908152600a602052604090205460ff1690565b6102bb6104bd36600461186d565b610b2d565b600b54610384906001600160a01b031681565b6102bb610be2565b61028261546081565b6102826104f436600461191c565b610c14565b61028260085481565b6102bb61051036600461186d565b610c3e565b6102bb61052336600461191c565b610cb4565b610282600281565b60606003805461053f90611953565b80601f016020809104026020016040519081016040528092919081815260200182805461056b90611953565b80156105b65780601f1061058d576101008083540402835291602001916105b6565b820191905f5260205f20905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b5f336105cd818585610e2a565b60019150505b92915050565b6006546001600160a01b0316331461060c5760405162461bcd60e51b81526004016106039061198b565b60405180910390fd5b6001600160a01b0381165f908152600a602052604090205460ff166106735760405162461bcd60e51b815260206004820152601a60248201527f43616e796f6e3a2044455820706f6f6c206e6f7420666f756e640000000000006044820152606401610603565b6001600160a01b0381165f818152600a6020526040808220805460ff19169055517ffcaf268af25e1103f62974fc8b750e4cc5e952268dc0bbf172fbcf0757839c849190a250565b5f6106c7848484610f4d565b6106ff84336106fa85604051806060016040528060288152602001611a76602891396106f38a33610c14565b9190610ffc565b610e2a565b5060019392505050565b610711611027565b61071a81611081565b50565b5f336105cd81858561072f8383610c14565b6106fa91906119e3565b6006545f906001600160a01b031633146107655760405162461bcd60e51b81526004016106039061198b565b6001600160a01b0383165f908152602081905260409020546107878484611144565b6001600160a01b0384165f9081526020819052604081205491909111949350505050565b61071a81611201565b6006546001600160a01b031633146107de5760405162461bcd60e51b81526004016106039061198b565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af115801561082a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061084e91906119f6565b50505050565b6006546001600160a01b0316331461087e5760405162461bcd60e51b81526004016106039061198b565b6001600160a01b0381166108d45760405162461bcd60e51b815260206004820152601b60248201527f43616e796f6e3a20696e76616c696420746178206164647265737300000000006044820152606401610603565b600b80546001600160a01b0319166001600160a01b0383169081179091556040517ffa575a2937f4d8860715335c80a51e975f276f15a8717f4ad9d5ad153d3011ce905f90a250565b610925611027565b61092e5f61120b565b565b6006546001600160a01b0316331461095a5760405162461bcd60e51b81526004016106039061198b565b610964828261125c565b5050565b610970611027565b6006546040515f916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680546001600160a01b0319169055565b60606004805461053f90611953565b6006546001600160a01b031633146109f25760405162461bcd60e51b81526004016106039061198b565b6001600160a01b038116610a485760405162461bcd60e51b815260206004820181905260248201527f43616e796f6e3a20696e76616c69642044455820706f6f6c20616464726573736044820152606401610603565b6001600160a01b0381165f818152600a6020526040808220805460ff19166001179055517f22d83b8b5e311ae4fe9838941063fe79b9f2290dac60b8a2c21a99bd16b62b6f9190a250565b5f3381610aa08286610c14565b905083811015610b005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610603565b610b0d8286868403610e2a565b506001949350505050565b5f610b24338484610f4d565b50600192915050565b6006546001600160a01b03163314610b575760405162461bcd60e51b81526004016106039061198b565b6001600160a01b038116610bc05760405162461bcd60e51b815260206004820152602a60248201527f43616e796f6e3a206f7261636c6520616464726573732063616e6e6f742062656044820152692030206164647265737360b01b6064820152608401610603565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610c0c5760405162461bcd60e51b81526004016106039061198b565b61092e611271565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610c46611027565b6001600160a01b038116610cab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610603565b61071a8161120b565b6006546001600160a01b03163314610cde5760405162461bcd60e51b81526004016106039061198b565b600654600160a01b900460ff1615610d385760405162461bcd60e51b815260206004820181905260248201527f43616e796f6e3a206f6e6c792063616e2064697374726962757465206f6e63656044820152606401610603565b6001600160a01b038216610d9a5760405162461bcd60e51b8152602060048201526024808201527f43616e796f6e3a20696e76616c69642067656e6573697320706f6f6c206164646044820152637265737360e01b6064820152608401610603565b6001600160a01b038116610df05760405162461bcd60e51b815260206004820181905260248201527f43616e796f6e3a20696e76616c69642044414f2066756e6420616464726573736044820152606401610603565b6006805460ff60a01b1916600160a01b179055610e17826902f6f10780d22cc00000611144565b610964816856bc75e2d631000000611144565b6001600160a01b038316610e8c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610603565b6001600160a01b038216610eed5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610603565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b615460600954610f5d91906119e3565b4210610f6b57610f6b611271565b6001600160a01b0382165f908152600a602052604090205460ff1615610fec575f610fad612710610fa7600854856113b290919063ffffffff16565b906113c4565b90505f610fba83836113cf565b9050610fc78585836113da565b8115610fe557600b54610fe59086906001600160a01b0316846113da565b5050505050565b610ff78383836113da565b505050565b5f818484111561101f5760405162461bcd60e51b815260040161060391906117fa565b505050900390565b6005546001600160a01b0316331461092e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610603565b6001600160a01b0381166110ed5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b6064820152608401610603565b6040516001600160a01b038216905f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661119a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610603565b8060025f8282546111ab91906119e3565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b61071a338261157c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6112678233836116ac565b610964828261157c565b61546060095461128191906119e3565b4210156112e15760405162461bcd60e51b815260206004820152602860248201527f43616e796f6e3a20545741502075706461746520696e74657276616c206e6f74604482015267081c995858da195960c21b6064820152608401610603565b5f6112ea61171e565b90506714d1120d7b1600008110611306576101f4600855611375565b67136dcc951d8c0000811061132057610320600855611375565b67120a871cc0020000811061133a576103e8600855611375565b6710a741a4627800008110611354576105dc600855611375565b670f43fc2c04ee0000811061136e576107d0600855611375565b610dac6008555b426009556008546040519081527f9aaebc8ec54916178b5e54a88904bb51ec537499d5229072961c3cd94483b9439060200160405180910390a150565b5f6113bd8284611a15565b9392505050565b5f6113bd8284611a2c565b5f6113bd8284611a4b565b6001600160a01b03831661143e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610603565b6001600160a01b0382166114a05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610603565b6001600160a01b0383165f90815260208190526040902054818110156115175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610603565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361084e565b6001600160a01b0382166115dc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610603565b6001600160a01b0382165f908152602081905260409020548181101561164f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610603565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f6116b78484610c14565b90505f19811461084e57818110156117115760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610603565b61084e8484848403610e2a565b600754604051633ddac95360e01b8152306004820152670de0b6b3a764000060248201525f916001600160a01b031690633ddac95390604401602060405180830381865afa925050508015611790575060408051601f3d908101601f1916820190925261178d91810190611a5e565b60015b6117f55760405162461bcd60e51b815260206004820152603060248201527f43616e796f6e3a206661696c656420746f2066657463682043414e594f4e207060448201526f726963652066726f6d204f7261636c6560801b6064820152608401610603565b919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461071a575f80fd5b5f8060408385031215611854575f80fd5b823561185f8161182f565b946020939093013593505050565b5f6020828403121561187d575f80fd5b81356113bd8161182f565b5f805f6060848603121561189a575f80fd5b83356118a58161182f565b925060208401356118b58161182f565b929592945050506040919091013590565b5f602082840312156118d6575f80fd5b5035919050565b5f805f606084860312156118ef575f80fd5b83356118fa8161182f565b92506020840135915060408401356119118161182f565b809150509250925092565b5f806040838503121561192d575f80fd5b82356119388161182f565b915060208301356119488161182f565b809150509250929050565b600181811c9082168061196757607f821691505b60208210810361198557634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105d3576105d36119cf565b5f60208284031215611a06575f80fd5b815180151581146113bd575f80fd5b80820281158282048414176105d3576105d36119cf565b5f82611a4657634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156105d3576105d36119cf565b5f60208284031215611a6e575f80fd5b505191905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220973fa9630c03ca80de2cf1e817b660217e5cd5ffca60e8f38e7741c1134eb98d64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e846702c98f41c3e48cd8c9fa779a0300cf43841
-----Decoded View---------------
Arg [0] : _taxAddress (address): 0xe846702c98F41C3E48cd8c9fa779a0300CF43841
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e846702c98f41c3e48cd8c9fa779a0300cf43841
Deployed Bytecode Sourcemap
36134:7585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6752:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9178:226;;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;9178:226:0;945:187:1;36922:34:0;;;;;;;;;1283:25:1;;;1271:2;1256:18;36922:34:0;1137:177:1;7881:108:0;7969:12;;7881:108;;36427:66;;36483:10;36427:66;;38353:216;;;;;;:::i;:::-;;:::i;:::-;;37111:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;40341:451;;;;;;:::i;:::-;;:::i;35192:115::-;;;;;;:::i;:::-;;:::i;7723:93::-;;;7806:2;2226:36:1;;2214:2;2199:18;7723:93:0;2084:184:1;10688:263:0;;;;;;:::i;:::-;;:::i;39766:313::-;;;;;;:::i;:::-;;:::i;40087:83::-;;;;;;:::i;:::-;;:::i;35084:100::-;35167:9;;-1:-1:-1;;;;;35167:9:0;4429:10;35151:25;35084:100;;36315:71;;36375:11;36315:71;;36637:27;;;;;-1:-1:-1;;;;;36637:27:0;;;;;;-1:-1:-1;;;;;2668:32:1;;;2650:51;;2638:2;2623:18;36637:27:0;2504:203:1;43529:187:0;;;;;;:::i;:::-;;:::i;34819:85::-;34887:9;;-1:-1:-1;;;;;34887:9:0;34819:85;;38930:232;;;;;;:::i;:::-;;:::i;8052:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8169:18:0;8142:7;8169:18;;;;;;;;;;;;8052:143;33614:103;;;:::i;40178:155::-;;;;;;:::i;:::-;;:::i;35617:145::-;;;:::i;32973:87::-;33046:6;;-1:-1:-1;;;;;33046:6:0;32973:87;;6971:104;;;:::i;36557:41::-;;;;;-1:-1:-1;;;36557:41:0;;;;;;37993:219;;;;;;:::i;:::-;;:::i;11454:498::-;;;;;;:::i;:::-;;:::i;40800:199::-;;;;;;:::i;:::-;;:::i;38700:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;38789:19:0;38765:4;38789:19;;;:9;:19;;;;;;;;;38700:116;39513:245;;;;;;:::i;:::-;;:::i;37196:25::-;;;;;-1:-1:-1;;;;;37196:25:0;;;42005:87;;;:::i;37004:54::-;;37051:7;37004:54;;8682:176;;;;;;:::i;:::-;;:::i;36714:31::-;;;;;;33872:238;;;;;;:::i;:::-;;:::i;42960:561::-;;;;;;:::i;:::-;;:::i;36800:50::-;;36849:1;36800:50;;6752:100;6806:13;6839:5;6832:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6752:100;:::o;9178:226::-;9286:4;4429:10;9342:32;4429:10;9358:7;9367:6;9342:8;:32::i;:::-;9392:4;9385:11;;;9178:226;;;;;:::o;38353:216::-;34969:9;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;38433:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;::::1;;38425:58;;;::::0;-1:-1:-1;;;38425:58:0;;4623:2:1;38425:58:0::1;::::0;::::1;4605:21:1::0;4662:2;4642:18;;;4635:30;4701:28;4681:18;;;4674:56;4747:18;;38425:58:0::1;4421:350:1::0;38425:58:0::1;-1:-1:-1::0;;;;;38494:19:0;::::1;38516:5;38494:19:::0;;;:9:::1;:19;::::0;;;;;:27;;-1:-1:-1;;38494:27:0::1;::::0;;38537:24;::::1;::::0;38516:5;38537:24:::1;38353:216:::0;:::o;40341:451::-;40473:4;40490:43;40507:6;40515:9;40526:6;40490:16;:43::i;:::-;40544:218;40567:6;4429:10;40615:136;40669:6;40615:136;;;;;;;;;;;;;;;;;:31;40625:6;4429:10;8682:176;:::i;40615:31::-;:35;:136;:35;:136::i;:::-;40544:8;:218::i;:::-;-1:-1:-1;40780:4:0;40341:451;;;;;:::o;35192:115::-;32859:13;:11;:13::i;:::-;35268:31:::1;35286:12;35268:17;:31::i;:::-;35192:115:::0;:::o;10688:263::-;10801:4;4429:10;10857:64;4429:10;10873:7;10910:10;10882:25;4429:10;10873:7;10882:9;:25::i;:::-;:38;;;;:::i;39766:313::-;34969:9;;39871:4;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8169:18:0;;39888:21:::1;8169:18:::0;;;;;;;;;;;39944:26:::1;8169:18:::0;39962:7;39944:5:::1;:26::i;:::-;-1:-1:-1::0;;;;;8169:18:0;;39981:20:::1;8169:18:::0;;;;;;;;;;;40043:28;;;::::1;::::0;39766:313;-1:-1:-1;;;;39766:313:0:o;40087:83::-;40144:18;40155:6;40144:10;:18::i;43529:187::-;34969:9;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;43679:29:::1;::::0;-1:-1:-1;;;43679:29:0;;-1:-1:-1;;;;;5230:32:1;;;43679:29:0::1;::::0;::::1;5212:51:1::0;5279:18;;;5272:34;;;43679:15:0;::::1;::::0;::::1;::::0;5185:18:1;;43679:29:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43529:187:::0;;;:::o;38930:232::-;34969:9;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39016:25:0;::::1;39008:65;;;::::0;-1:-1:-1;;;39008:65:0;;5801:2:1;39008:65:0::1;::::0;::::1;5783:21:1::0;5840:2;5820:18;;;5813:30;5879:29;5859:18;;;5852:57;5926:18;;39008:65:0::1;5599:351:1::0;39008:65:0::1;39084:10;:24:::0;;-1:-1:-1;;;;;;39084:24:0::1;-1:-1:-1::0;;;;;39084:24:0;::::1;::::0;;::::1;::::0;;;39124:30:::1;::::0;::::1;::::0;-1:-1:-1;;39124:30:0::1;38930:232:::0;:::o;33614:103::-;32859:13;:11;:13::i;:::-;33679:30:::1;33706:1;33679:18;:30::i;:::-;33614:103::o:0;40178:155::-;34969:9;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;40294:31:::1;40309:7;40318:6;40294:14;:31::i;:::-;40178:155:::0;;:::o;35617:145::-;32859:13;:11;:13::i;:::-;35699:9:::1;::::0;35679:42:::1;::::0;35718:1:::1;::::0;-1:-1:-1;;;;;35699:9:0::1;::::0;35679:42:::1;::::0;35718:1;;35679:42:::1;35732:9;:22:::0;;-1:-1:-1;;;;;;35732:22:0::1;::::0;;35617:145::o;6971:104::-;7027:13;7060:7;7053:14;;;;;:::i;37993:219::-;34969:9;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38070:22:0;::::1;38062:67;;;::::0;-1:-1:-1;;;38062:67:0;;6157:2:1;38062:67:0::1;::::0;::::1;6139:21:1::0;;;6176:18;;;6169:30;6235:34;6215:18;;;6208:62;6287:18;;38062:67:0::1;5955:356:1::0;38062:67:0::1;-1:-1:-1::0;;;;;38140:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;:26;;-1:-1:-1;;38140:26:0::1;38162:4;38140:26;::::0;;38182:22;::::1;::::0;38140:19;38182:22:::1;37993:219:::0;:::o;11454:498::-;11572:4;4429:10;11572:4;11655:25;4429:10;11672:7;11655:9;:25::i;:::-;11628:52;;11733:15;11713:16;:35;;11691:122;;;;-1:-1:-1;;;11691:122:0;;6518:2:1;11691:122:0;;;6500:21:1;6557:2;6537:18;;;6530:30;6596:34;6576:18;;;6569:62;-1:-1:-1;;;6647:18:1;;;6640:35;6692:19;;11691:122:0;6316:401:1;11691:122:0;11849:60;11858:5;11865:7;11893:15;11874:16;:34;11849:8;:60::i;:::-;-1:-1:-1;11940:4:0;;11454:498;-1:-1:-1;;;;11454:498:0:o;40800:199::-;40903:4;40920:49;4429:10;40951:9;40962:6;40920:16;:49::i;:::-;-1:-1:-1;40987:4:0;40800:199;;;;:::o;39513:245::-;34969:9;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39614:27:0;::::1;39592:119;;;::::0;-1:-1:-1;;;39592:119:0;;6924:2:1;39592:119:0::1;::::0;::::1;6906:21:1::0;6963:2;6943:18;;;6936:30;7002:34;6982:18;;;6975:62;-1:-1:-1;;;7053:18:1;;;7046:40;7103:19;;39592:119:0::1;6722:406:1::0;39592:119:0::1;39722:12;:28:::0;;-1:-1:-1;;;;;;39722:28:0::1;-1:-1:-1::0;;;;;39722:28:0;;;::::1;::::0;;;::::1;::::0;;39513:245::o;42005:87::-;34969:9;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;42064:20:::1;:18;:20::i;8682:176::-:0;-1:-1:-1;;;;;8823:18:0;;;8796:7;8823:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8682:176::o;33872:238::-;32859:13;:11;:13::i;:::-;-1:-1:-1;;;;;33975:22:0;::::1;33953:110;;;::::0;-1:-1:-1;;;33953:110:0;;7335:2:1;33953:110:0::1;::::0;::::1;7317:21:1::0;7374:2;7354:18;;;7347:30;7413:34;7393:18;;;7386:62;-1:-1:-1;;;7464:18:1;;;7457:36;7510:19;;33953:110:0::1;7133:402:1::0;33953:110:0::1;34074:28;34093:8;34074:18;:28::i;42960:561::-:0;34969:9;;-1:-1:-1;;;;;34969:9:0;34982:10;34969:23;34947:109;;;;-1:-1:-1;;;34947:109:0;;;;;;;:::i;:::-;43093:21:::1;::::0;-1:-1:-1;;;43093:21:0;::::1;;;43092:22;43084:67;;;::::0;-1:-1:-1;;;43084:67:0;;7742:2:1;43084:67:0::1;::::0;::::1;7724:21:1::0;;;7761:18;;;7754:30;7820:34;7800:18;;;7793:62;7872:18;;43084:67:0::1;7540:356:1::0;43084:67:0::1;-1:-1:-1::0;;;;;43184:26:0;::::1;43162:112;;;::::0;-1:-1:-1;;;43162:112:0;;8103:2:1;43162:112:0::1;::::0;::::1;8085:21:1::0;8142:2;8122:18;;;8115:30;8181:34;8161:18;;;8154:62;-1:-1:-1;;;8232:18:1;;;8225:34;8276:19;;43162:112:0::1;7901:400:1::0;43162:112:0::1;-1:-1:-1::0;;;;;43293:22:0;::::1;43285:67;;;::::0;-1:-1:-1;;;43285:67:0;;8508:2:1;43285:67:0::1;::::0;::::1;8490:21:1::0;;;8527:18;;;8520:30;8586:34;8566:18;;;8559:62;8638:18;;43285:67:0::1;8306:356:1::0;43285:67:0::1;43363:21;:28:::0;;-1:-1:-1;;;;43363:28:0::1;-1:-1:-1::0;;;43363:28:0::1;::::0;;43402:54:::1;43408:12:::0;36375:11:::1;43402:5;:54::i;:::-;43467:46;43473:8;36483:10;43467:5;:46::i;15580:380::-:0;-1:-1:-1;;;;;15716:19:0;;15708:68;;;;-1:-1:-1;;;15708:68:0;;8869:2:1;15708:68:0;;;8851:21:1;8908:2;8888:18;;;8881:30;8947:34;8927:18;;;8920:62;-1:-1:-1;;;8998:18:1;;;8991:34;9042:19;;15708:68:0;8667:400:1;15708:68:0;-1:-1:-1;;;;;15795:21:0;;15787:68;;;;-1:-1:-1;;;15787:68:0;;9274:2:1;15787:68:0;;;9256:21:1;9313:2;9293:18;;;9286:30;9352:34;9332:18;;;9325:62;-1:-1:-1;;;9403:18:1;;;9396:32;9445:19;;15787:68:0;9072:398:1;15787:68:0;-1:-1:-1;;;;;15868:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15920:32;;1283:25:1;;;15920:32:0;;1256:18:1;15920:32:0;;;;;;;15580:380;;;:::o;41007:990::-;37051:7;41202:19;;:42;;;;:::i;:::-;41183:15;:61;41179:114;;41261:20;:18;:20::i;:::-;-1:-1:-1;;;;;41358:20:0;;;;;;:9;:20;;;;;;;;41354:636;;;41448:17;41468:35;41497:5;41468:24;41479:12;;41468:6;:10;;:24;;;;:::i;:::-;:28;;:35::i;:::-;41448:55;-1:-1:-1;41542:22:0;41567:21;:6;41448:55;41567:10;:21::i;:::-;41542:46;;41644:44;41654:6;41662:9;41673:14;41644:9;:44::i;:::-;41745:13;;41741:124;;41797:10;;41779:40;;41789:6;;-1:-1:-1;;;;;41797:10:0;41809:9;41779;:40::i;:::-;41380:496;;41007:990;;;:::o;41354:636::-;41942:36;41952:6;41960:9;41971:6;41942:9;:36::i;:::-;41007:990;;;:::o;24512:240::-;24632:7;24693:12;24685:6;;;;24677:29;;;;-1:-1:-1;;;24677:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;24728:5:0;;;24512:240::o;33138:132::-;33046:6;;-1:-1:-1;;;;;33046:6:0;4429:10;33202:23;33194:68;;;;-1:-1:-1;;;33194:68:0;;9677:2:1;33194:68:0;;;9659:21:1;;;9696:18;;;9689:30;9755:34;9735:18;;;9728:62;9807:18;;33194:68:0;9475:356:1;35315:294:0;-1:-1:-1;;;;;35406:26:0;;35384:121;;;;-1:-1:-1;;;35384:121:0;;10038:2:1;35384:121:0;;;10020:21:1;10077:2;10057:18;;;10050:30;10116:34;10096:18;;;10089:62;-1:-1:-1;;;10167:18:1;;;10160:43;10220:19;;35384:121:0;9836:409:1;35384:121:0;35521:45;;-1:-1:-1;;;;;35521:45:0;;;35549:1;;35521:45;;35549:1;;35521:45;35577:9;:24;;-1:-1:-1;;;;;;35577:24:0;-1:-1:-1;;;;;35577:24:0;;;;;;;;;;35315:294::o;13586:548::-;-1:-1:-1;;;;;13670:21:0;;13662:65;;;;-1:-1:-1;;;13662:65:0;;10452:2:1;13662:65:0;;;10434:21:1;10491:2;10471:18;;;10464:30;10530:33;10510:18;;;10503:61;10581:18;;13662:65:0;10250:355:1;13662:65:0;13818:6;13802:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13973:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;14028:37;1283:25:1;;;14028:37:0;;1256:18:1;14028:37:0;;;;;;;40178:155;;:::o;18713:91::-;18769:27;4429:10;18789:6;18769:5;:27::i;34270:191::-;34363:6;;;-1:-1:-1;;;;;34380:17:0;;;-1:-1:-1;;;;;;34380:17:0;;;;;;;34413:40;;34363:6;;;34380:17;34363:6;;34413:40;;34344:16;;34413:40;34333:128;34270:191;:::o;19123:164::-;19200:46;19216:7;4429:10;19239:6;19200:15;:46::i;:::-;19257:22;19263:7;19272:6;19257:5;:22::i;42100:852::-;37051:7;42191:19;;:42;;;;:::i;:::-;42172:15;:61;;42150:151;;;;-1:-1:-1;;;42150:151:0;;10812:2:1;42150:151:0;;;10794:21:1;10851:2;10831:18;;;10824:30;10890:34;10870:18;;;10863:62;-1:-1:-1;;;10941:18:1;;;10934:38;10989:19;;42150:151:0;10610:404:1;42150:151:0;42314:17;42334;:15;:17::i;:::-;42314:37;;42379:9;42366;:22;42362:484;;42420:3;42405:12;:18;42362:484;;;42464:9;42451;:22;42447:399;;42505:3;42490:12;:18;42447:399;;;42549:9;42536;:22;42532:314;;42590:4;42575:12;:19;42532:314;;;42636:9;42623;:22;42619:227;;42677:4;42662:12;:19;42619:227;;;42723:9;42710;:22;42706:140;;42764:4;42749:12;:19;42706:140;;;42823:4;42808:12;:19;42706:140;42880:15;42858:19;:37;42931:12;;42911:33;;1283:25:1;;;42911:33:0;;1271:2:1;1256:18;42911:33:0;;;;;;;42139:813;42100:852::o;22971:98::-;23029:7;23056:5;23060:1;23056;:5;:::i;:::-;23049:12;22971:98;-1:-1:-1;;;22971:98:0:o;23370:::-;23428:7;23455:5;23459:1;23455;:5;:::i;22614:98::-;22672:7;22699:5;22703:1;22699;:5;:::i;12422:877::-;-1:-1:-1;;;;;12553:18:0;;12545:68;;;;-1:-1:-1;;;12545:68:0;;11749:2:1;12545:68:0;;;11731:21:1;11788:2;11768:18;;;11761:30;11827:34;11807:18;;;11800:62;-1:-1:-1;;;11878:18:1;;;11871:35;11923:19;;12545:68:0;11547:401:1;12545:68:0;-1:-1:-1;;;;;12632:16:0;;12624:64;;;;-1:-1:-1;;;12624:64:0;;12155:2:1;12624:64:0;;;12137:21:1;12194:2;12174:18;;;12167:30;12233:34;12213:18;;;12206:62;-1:-1:-1;;;12284:18:1;;;12277:33;12327:19;;12624:64:0;11953:399:1;12624:64:0;-1:-1:-1;;;;;12774:15:0;;12752:19;12774:15;;;;;;;;;;;12822:21;;;;12800:109;;;;-1:-1:-1;;;12800:109:0;;12559:2:1;12800:109:0;;;12541:21:1;12598:2;12578:18;;;12571:30;12637:34;12617:18;;;12610:62;-1:-1:-1;;;12688:18:1;;;12681:36;12734:19;;12800:109:0;12357:402:1;12800:109:0;-1:-1:-1;;;;;12945:15:0;;;:9;:15;;;;;;;;;;;12963:20;;;12945:38;;13163:13;;;;;;;;;;:23;;;;;;13215:26;;1283:25:1;;;13163:13:0;;13215:26;;1256:18:1;13215:26:0;;;;;;;13254:37;41007:990;14467:675;-1:-1:-1;;;;;14551:21:0;;14543:67;;;;-1:-1:-1;;;14543:67:0;;12966:2:1;14543:67:0;;;12948:21:1;13005:2;12985:18;;;12978:30;13044:34;13024:18;;;13017:62;-1:-1:-1;;;13095:18:1;;;13088:31;13136:19;;14543:67:0;12764:397:1;14543:67:0;-1:-1:-1;;;;;14710:18:0;;14685:22;14710:18;;;;;;;;;;;14747:24;;;;14739:71;;;;-1:-1:-1;;;14739:71:0;;13368:2:1;14739:71:0;;;13350:21:1;13407:2;13387:18;;;13380:30;13446:34;13426:18;;;13419:62;-1:-1:-1;;;13497:18:1;;;13490:32;13539:19;;14739:71:0;13166:398:1;14739:71:0;-1:-1:-1;;;;;14846:18:0;;:9;:18;;;;;;;;;;;14867:23;;;14846:44;;14985:12;:22;;;;;;;15036:37;1283:25:1;;;14846:9:0;;:18;15036:37;;1256:18:1;15036:37:0;;;;;;;41007:990;;;:::o;16251:502::-;16386:24;16413:25;16423:5;16430:7;16413:9;:25::i;:::-;16386:52;;-1:-1:-1;;16453:16:0;:37;16449:297;;16553:6;16533:16;:26;;16507:117;;;;-1:-1:-1;;;16507:117:0;;13771:2:1;16507:117:0;;;13753:21:1;13810:2;13790:18;;;13783:30;13849:31;13829:18;;;13822:59;13898:18;;16507:117:0;13569:353:1;16507:117:0;16668:51;16677:5;16684:7;16712:6;16693:16;:25;16668:8;:51::i;39170:335::-;39265:12;;39257:50;;-1:-1:-1;;;39257:50:0;;39295:4;39257:50;;;5212:51:1;39302:4:0;5279:18:1;;;5272:34;39220:20:0;;-1:-1:-1;;;;;39265:12:0;;39257:29;;5185:18:1;;39257:50:0;;;;;;;;;;;;;;;;;;-1:-1:-1;39257:50:0;;;;;;;;-1:-1:-1;;39257:50:0;;;;;;;;;;;;:::i;:::-;;;39253:245;;39428:58;;-1:-1:-1;;;39428:58:0;;14623:2:1;39428:58:0;;;14605:21:1;14662:2;14642:18;;;14635:30;14701:34;14681:18;;;14674:62;-1:-1:-1;;;14752:18:1;;;14745:46;14808:19;;39428:58:0;14421:412:1;39253:245:0;39387:6;39170:335;-1:-1:-1;39170:335:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1319:247::-;1378:6;1431:2;1419:9;1410:7;1406:23;1402:32;1399:52;;;1447:1;1444;1437:12;1399:52;1486:9;1473:23;1505:31;1530:5;1505:31;:::i;1571:508::-;1648:6;1656;1664;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;1772:9;1759:23;1791:31;1816:5;1791:31;:::i;:::-;1841:5;-1:-1:-1;1898:2:1;1883:18;;1870:32;1911:33;1870:32;1911:33;:::i;:::-;1571:508;;1963:7;;-1:-1:-1;;;2043:2:1;2028:18;;;;2015:32;;1571:508::o;2273:226::-;2332:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:52;;;2401:1;2398;2391:12;2353:52;-1:-1:-1;2446:23:1;;2273:226;-1:-1:-1;2273:226:1:o;2712:521::-;2802:6;2810;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2926:9;2913:23;2945:31;2970:5;2945:31;:::i;:::-;2995:5;-1:-1:-1;3073:2:1;3058:18;;3045:32;;-1:-1:-1;3155:2:1;3140:18;;3127:32;3168:33;3127:32;3168:33;:::i;:::-;3220:7;3210:17;;;2712:521;;;;;:::o;3238:388::-;3306:6;3314;3367:2;3355:9;3346:7;3342:23;3338:32;3335:52;;;3383:1;3380;3373:12;3335:52;3422:9;3409:23;3441:31;3466:5;3441:31;:::i;:::-;3491:5;-1:-1:-1;3548:2:1;3533:18;;3520:32;3561:33;3520:32;3561:33;:::i;:::-;3613:7;3603:17;;;3238:388;;;;;:::o;3631:380::-;3710:1;3706:12;;;;3753;;;3774:61;;3828:4;3820:6;3816:17;3806:27;;3774:61;3881:2;3873:6;3870:14;3850:18;3847:38;3844:161;;3927:10;3922:3;3918:20;3915:1;3908:31;3962:4;3959:1;3952:15;3990:4;3987:1;3980:15;3844:161;;3631:380;;;:::o;4016:400::-;4218:2;4200:21;;;4257:2;4237:18;;;4230:30;4296:34;4291:2;4276:18;;4269:62;-1:-1:-1;;;4362:2:1;4347:18;;4340:34;4406:3;4391:19;;4016:400::o;4776:127::-;4837:10;4832:3;4828:20;4825:1;4818:31;4868:4;4865:1;4858:15;4892:4;4889:1;4882:15;4908:125;4973:9;;;4994:10;;;4991:36;;;5007:18;;:::i;5317:277::-;5384:6;5437:2;5425:9;5416:7;5412:23;5408:32;5405:52;;;5453:1;5450;5443:12;5405:52;5485:9;5479:16;5538:5;5531:13;5524:21;5517:5;5514:32;5504:60;;5560:1;5557;5550:12;11019:168;11092:9;;;11123;;11140:15;;;11134:22;;11120:37;11110:71;;11161:18;;:::i;11192:217::-;11232:1;11258;11248:132;;11302:10;11297:3;11293:20;11290:1;11283:31;11337:4;11334:1;11327:15;11365:4;11362:1;11355:15;11248:132;-1:-1:-1;11394:9:1;;11192:217::o;11414:128::-;11481:9;;;11502:11;;;11499:37;;;11516:18;;:::i;14232:184::-;14302:6;14355:2;14343:9;14334:7;14330:23;14326:32;14323:52;;;14371:1;14368;14361:12;14323:52;-1:-1:-1;14394:16:1;;14232:184;-1:-1:-1;14232:184:1:o
Swarm Source
ipfs://973fa9630c03ca80de2cf1e817b660217e5cd5ffca60e8f38e7741c1134eb98d
[ 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.