ETH Price: $3,954.00 (+1.47%)

Token

ERC-20: SHABUCKS (SHABUCKS)
 

Overview

Max Total Supply

319,550 SHABUCKS

Holders

68

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Filtered by Token Holder
tamagini.eth
Balance
50 SHABUCKS

Value
$0.00
0x8b0660e7586ce473054306ea791dc11e704c16ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SHABUCKSToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-20
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (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 substraction 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;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/SHABUCKS/SHABUCKSToken.sol



pragma solidity ^0.8.0;





contract SHABUCKSToken is ERC20, Ownable {
    

    //address public upgradedAddress;
    bool public canMint = true;
    uint256 public MaxSupply = 1000000;
    // address of Associated Contracts
    mapping(address => bool) public AssociatedContracts;
    address public WithdrawAddress;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    //Insurance counter
    uint8 private BlockMintCalledCount = 0;


    //  The contract can be initialized with a number of tokens
    //  All the tokens are deposited to the owner address
    //
    // @param _balance Initial supply of the contract
    // @param _name Token Name
    // @param _symbol Token symbol
    // @param _decimals Token decimals
    constructor(string memory __name, string memory __symbol) ERC20(__name, __symbol) payable{
        _name = __name;
        _symbol = __symbol;
        _decimals = 2;
    }

    /**
     * @return the name of the token.
     */
    function name() public view override returns (string memory) {
      return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view override returns (string memory) {
      return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view override returns (uint8) {
      return _decimals;
    }

    // Issue a new amount of tokens
    // these tokens are deposited into the owner address
    //
    // @param _amount Number of tokens to be issued
    function mint(address _to, uint256 amount) public {

        if (msg.sender != owner()) {
          require(AssociatedContracts[msg.sender] == true, "Function is just for contract owner...");
        }

        require(canMint == true, "Mint Function is Disabled!");
        require(totalSupply() + amount > totalSupply());
        require(totalSupply() + amount < (MaxSupply * (10 ** _decimals)));
        require(balanceOf(msg.sender)  + amount > balanceOf(msg.sender));
        

        _mint(_to, amount);
        emit Minted(_to, amount);
    }

    // Redeem tokens.
    // These tokens are withdrawn from the owner address
    // if the balance must be enough to cover the redeem
    // or the call will fail.
    // @param _amount Number of tokens to be issued
    function redeem(uint amount) public {

      if (msg.sender != owner()) {
          require(AssociatedContracts[msg.sender] == true, "Function is just for contract owner...");
        }
        require(totalSupply() >= amount);
        require(balanceOf(msg.sender) >= amount);

        _burn(msg.sender, amount);
        emit Redeem(amount);
    }

    // Called when new token are issued
    event Minted(address _to, uint amount);

    // Called when tokens are redeemed
    event Redeem(uint amount);

    // Called when set new MaxSupply value
    event MaxSupplySet(uint256 value);

    function setMaxSupply(uint256 _MaxSupply) external {

      if (msg.sender != owner()) {
          require(AssociatedContracts[msg.sender] == true, "Function is just for contract owner...");
      }

      MaxSupply = _MaxSupply;
      emit MaxSupplySet(MaxSupply);
    }


    // Only Owner
    function BlockMintFunction() external onlyOwner {

        if(BlockMintCalledCount >= 3){
            canMint = false;
        }
        else
            BlockMintCalledCount ++;
      
    }

    function RefreshBlockMintCalledCount() external onlyOwner {
        BlockMintCalledCount = 0;
    }

    function  setDecimals(uint8 __decimals) external onlyOwner {
      _decimals = __decimals;
    }

    function AddAssociatedContracts(address Contract) public onlyOwner{
      require(msg.sender == owner());
      AssociatedContracts[Contract] = true;
    }

    function removeAssociatedContracts(address Contract) public onlyOwner{
      require(msg.sender == owner());
      AssociatedContracts[Contract] = false;
    }

    function setWithdrawAddress(address _WithdrawAddress) public {
      
      if (msg.sender != owner()) {
          require(AssociatedContracts[msg.sender] == true, "Function is just for contract owner...");
      }

      WithdrawAddress= _WithdrawAddress;
    }

    function withdraw() public
    {

      if (msg.sender != owner()) {
          require(AssociatedContracts[msg.sender] == true, "Function is just for contract owner...");
      }

        require(payable(WithdrawAddress).send(address(this).balance));        
    }

    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"__name","type":"string"},{"internalType":"string","name":"__symbol","type":"string"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"MaxSupplySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"Contract","type":"address"}],"name":"AddAssociatedContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AssociatedContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BlockMintFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RefreshBlockMintCalledCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WithdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"Contract","type":"address"}],"name":"removeAssociatedContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"__decimals","type":"uint8"}],"name":"setDecimals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_WithdrawAddress","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600560146101000a81548160ff021916908315150217905550620f42406006556000600b60016101000a81548160ff021916908360ff160217905550604051620032cc380380620032cc83398181016040528101906200006791906200030f565b8181816003908051906020019062000081929190620001e1565b5080600490805190602001906200009a929190620001e1565b505050620000bd620000b16200011360201b60201c565b6200011b60201b60201c565b8160099080519060200190620000d5929190620001e1565b5080600a9080519060200190620000ee929190620001e1565b506002600b60006101000a81548160ff021916908360ff160217905550505062000518565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ef9062000429565b90600052602060002090601f0160209004810192826200021357600085556200025f565b82601f106200022e57805160ff19168380011785556200025f565b828001600101855582156200025f579182015b828111156200025e57825182559160200191906001019062000241565b5b5090506200026e919062000272565b5090565b5b808211156200028d57600081600090555060010162000273565b5090565b6000620002a8620002a284620003bd565b62000394565b905082815260208101848484011115620002c757620002c6620004f8565b5b620002d4848285620003f3565b509392505050565b600082601f830112620002f457620002f3620004f3565b5b81516200030684826020860162000291565b91505092915050565b6000806040838503121562000329576200032862000502565b5b600083015167ffffffffffffffff8111156200034a5762000349620004fd565b5b6200035885828601620002dc565b925050602083015167ffffffffffffffff8111156200037c576200037b620004fd565b5b6200038a85828601620002dc565b9150509250929050565b6000620003a0620003b3565b9050620003ae82826200045f565b919050565b6000604051905090565b600067ffffffffffffffff821115620003db57620003da620004c4565b5b620003e68262000507565b9050602081019050919050565b60005b8381101562000413578082015181840152602081019050620003f6565b8381111562000423576000848401525b50505050565b600060028204905060018216806200044257607f821691505b6020821081141562000459576200045862000495565b5b50919050565b6200046a8262000507565b810181811067ffffffffffffffff821117156200048c576200048b620004c4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612da480620005286000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063736d878e116100f9578063a457c2d711610097578063beb9716d11610071578063beb9716d146104bb578063db006a75146104d9578063dd62ed3e146104f5578063f2fde38b14610525576101c4565b8063a457c2d71461043d578063a9059cbb1461046d578063b36c12841461049d576101c4565b806389b772e8116100d357806389b772e8146103d95780638be6c6bf146103e35780638da5cb5b1461040157806395d89b411461041f576101c4565b8063736d878e146103715780637a1395aa1461038d57806384f1bfa3146103a9576101c4565b80633ab1a494116101665780635961b4d2116101405780635961b4d2146103115780636f8b44b01461031b57806370a0823114610337578063715018a614610367576101c4565b80633ab1a494146102cf5780633ccfd60b146102eb57806340c10f19146102f5576101c4565b806323b872dd116101a257806323b872dd146102355780632d93c4ef14610265578063313ce56714610281578063395093511461029f576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd14610217575b600080fd5b6101d1610541565b6040516101de9190612381565b60405180910390f35b61020160048036038101906101fc9190612029565b6105d3565b60405161020e9190612366565b60405180910390f35b61021f6105f6565b60405161022c9190612563565b60405180910390f35b61024f600480360381019061024a9190611fd6565b610600565b60405161025c9190612366565b60405180910390f35b61027f600480360381019061027a9190611f69565b61062f565b005b610289610745565b604051610296919061257e565b60405180910390f35b6102b960048036038101906102b49190612029565b61075c565b6040516102c69190612366565b60405180910390f35b6102e960048036038101906102e49190611f69565b610806565b005b6102f3610918565b005b61030f600480360381019061030a9190612029565b610a48565b005b610319610c45565b005b61033560048036038101906103309190612069565b610d36565b005b610351600480360381019061034c9190611f69565b610e47565b60405161035e9190612563565b60405180910390f35b61036f610e8f565b005b61038b60048036038101906103869190611f69565b610f17565b005b6103a760048036038101906103a29190612096565b61102d565b005b6103c360048036038101906103be9190611f69565b6110c7565b6040516103d09190612366565b60405180910390f35b6103e16110e7565b005b6103eb611181565b6040516103f89190612322565b60405180910390f35b6104096111a7565b6040516104169190612322565b60405180910390f35b6104276111d1565b6040516104349190612381565b60405180910390f35b61045760048036038101906104529190612029565b611263565b6040516104649190612366565b60405180910390f35b61048760048036038101906104829190612029565b61134d565b6040516104949190612366565b60405180910390f35b6104a5611370565b6040516104b29190612563565b60405180910390f35b6104c3611376565b6040516104d09190612366565b60405180910390f35b6104f360048036038101906104ee9190612069565b611389565b005b61050f600480360381019061050a9190611f96565b6114c4565b60405161051c9190612563565b60405180910390f35b61053f600480360381019061053a9190611f69565b61154b565b005b60606009805461055090612892565b80601f016020809104026020016040519081016040528092919081815260200182805461057c90612892565b80156105c95780601f1061059e576101008083540402835291602001916105c9565b820191906000526020600020905b8154815290600101906020018083116105ac57829003601f168201915b5050505050905090565b6000806105de611643565b90506105eb81858561164b565b600191505092915050565b6000600254905090565b60008061060b611643565b9050610618858285611816565b6106238585856118a2565b60019150509392505050565b610637611643565b73ffffffffffffffffffffffffffffffffffffffff166106556111a7565b73ffffffffffffffffffffffffffffffffffffffff16146106ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a290612483565b60405180910390fd5b6106b36111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106ea57600080fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b60009054906101000a900460ff16905090565b600080610767611643565b90506107fb818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107f691906125b5565b61164b565b600191505092915050565b61080e6111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108d45760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612463565b60405180910390fd5b5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6109206111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109e65760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90612463565b60405180910390fd5b5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610a4657600080fd5b565b610a506111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b165760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90612463565b60405180910390fd5b5b60011515600560149054906101000a900460ff16151514610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390612503565b60405180910390fd5b610b746105f6565b81610b7d6105f6565b610b8791906125b5565b11610b9157600080fd5b600b60009054906101000a900460ff16600a610bad919061265e565b600654610bba919061277c565b81610bc36105f6565b610bcd91906125b5565b10610bd757600080fd5b610be033610e47565b81610bea33610e47565b610bf491906125b5565b11610bfe57600080fd5b610c088282611b23565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8282604051610c3992919061233d565b60405180910390a15050565b610c4d611643565b73ffffffffffffffffffffffffffffffffffffffff16610c6b6111a7565b73ffffffffffffffffffffffffffffffffffffffff1614610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890612483565b60405180910390fd5b6003600b60019054906101000a900460ff1660ff1610610cfb576000600560146101000a81548160ff021916908315150217905550610d34565b600b600181819054906101000a900460ff1680929190610d1a906128c4565b91906101000a81548160ff021916908360ff160217905550505b565b610d3e6111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e045760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90612463565b60405180910390fd5b5b806006819055507facc639f1ff310faf48650d02a82bd24c924e45a5050fc931245096ac57c309d9600654604051610e3c9190612563565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e97611643565b73ffffffffffffffffffffffffffffffffffffffff16610eb56111a7565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290612483565b60405180910390fd5b610f156000611c83565b565b610f1f611643565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6111a7565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90612483565b60405180910390fd5b610f9b6111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fd257600080fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611035611643565b73ffffffffffffffffffffffffffffffffffffffff166110536111a7565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090612483565b60405180910390fd5b80600b60006101000a81548160ff021916908360ff16021790555050565b60076020528060005260406000206000915054906101000a900460ff1681565b6110ef611643565b73ffffffffffffffffffffffffffffffffffffffff1661110d6111a7565b73ffffffffffffffffffffffffffffffffffffffff1614611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90612483565b60405180910390fd5b6000600b60016101000a81548160ff021916908360ff160217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a80546111e090612892565b80601f016020809104026020016040519081016040528092919081815260200182805461120c90612892565b80156112595780601f1061122e57610100808354040283529160200191611259565b820191906000526020600020905b81548152906001019060200180831161123c57829003601f168201915b5050505050905090565b60008061126e611643565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90612523565b60405180910390fd5b611341828686840361164b565b60019250505092915050565b600080611358611643565b90506113658185856118a2565b600191505092915050565b60065481565b600560149054906101000a900460ff1681565b6113916111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114575760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90612463565b60405180910390fd5b5b806114606105f6565b101561146b57600080fd5b8061147533610e47565b101561148057600080fd5b61148a3382611d49565b7f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a44816040516114b99190612563565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611553611643565b73ffffffffffffffffffffffffffffffffffffffff166115716111a7565b73ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90612483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906123e3565b60405180910390fd5b61164081611c83565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906124e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290612403565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118099190612563565b60405180910390a3505050565b600061182284846114c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461189c578181101561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590612423565b60405180910390fd5b61189b848484840361164b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611909906124c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611979906123a3565b60405180910390fd5b61198d838383611f20565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612443565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa691906125b5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b0a9190612563565b60405180910390a3611b1d848484611f25565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90612543565b60405180910390fd5b611b9f60008383611f20565b8060026000828254611bb191906125b5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c0691906125b5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c6b9190612563565b60405180910390a3611c7f60008383611f25565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db0906124a3565b60405180910390fd5b611dc582600083611f20565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e42906123c3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611ea291906127d6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f079190612563565b60405180910390a3611f1b83600084611f25565b505050565b505050565b505050565b600081359050611f3981612d29565b92915050565b600081359050611f4e81612d40565b92915050565b600081359050611f6381612d57565b92915050565b600060208284031215611f7f57611f7e61294c565b5b6000611f8d84828501611f2a565b91505092915050565b60008060408385031215611fad57611fac61294c565b5b6000611fbb85828601611f2a565b9250506020611fcc85828601611f2a565b9150509250929050565b600080600060608486031215611fef57611fee61294c565b5b6000611ffd86828701611f2a565b935050602061200e86828701611f2a565b925050604061201f86828701611f3f565b9150509250925092565b600080604083850312156120405761203f61294c565b5b600061204e85828601611f2a565b925050602061205f85828601611f3f565b9150509250929050565b60006020828403121561207f5761207e61294c565b5b600061208d84828501611f3f565b91505092915050565b6000602082840312156120ac576120ab61294c565b5b60006120ba84828501611f54565b91505092915050565b6120cc8161280a565b82525050565b6120db8161281c565b82525050565b60006120ec82612599565b6120f681856125a4565b935061210681856020860161285f565b61210f81612951565b840191505092915050565b60006121276023836125a4565b91506121328261296f565b604082019050919050565b600061214a6022836125a4565b9150612155826129be565b604082019050919050565b600061216d6026836125a4565b915061217882612a0d565b604082019050919050565b60006121906022836125a4565b915061219b82612a5c565b604082019050919050565b60006121b3601d836125a4565b91506121be82612aab565b602082019050919050565b60006121d66026836125a4565b91506121e182612ad4565b604082019050919050565b60006121f96026836125a4565b915061220482612b23565b604082019050919050565b600061221c6020836125a4565b915061222782612b72565b602082019050919050565b600061223f6021836125a4565b915061224a82612b9b565b604082019050919050565b60006122626025836125a4565b915061226d82612bea565b604082019050919050565b60006122856024836125a4565b915061229082612c39565b604082019050919050565b60006122a8601a836125a4565b91506122b382612c88565b602082019050919050565b60006122cb6025836125a4565b91506122d682612cb1565b604082019050919050565b60006122ee601f836125a4565b91506122f982612d00565b602082019050919050565b61230d81612848565b82525050565b61231c81612852565b82525050565b600060208201905061233760008301846120c3565b92915050565b600060408201905061235260008301856120c3565b61235f6020830184612304565b9392505050565b600060208201905061237b60008301846120d2565b92915050565b6000602082019050818103600083015261239b81846120e1565b905092915050565b600060208201905081810360008301526123bc8161211a565b9050919050565b600060208201905081810360008301526123dc8161213d565b9050919050565b600060208201905081810360008301526123fc81612160565b9050919050565b6000602082019050818103600083015261241c81612183565b9050919050565b6000602082019050818103600083015261243c816121a6565b9050919050565b6000602082019050818103600083015261245c816121c9565b9050919050565b6000602082019050818103600083015261247c816121ec565b9050919050565b6000602082019050818103600083015261249c8161220f565b9050919050565b600060208201905081810360008301526124bc81612232565b9050919050565b600060208201905081810360008301526124dc81612255565b9050919050565b600060208201905081810360008301526124fc81612278565b9050919050565b6000602082019050818103600083015261251c8161229b565b9050919050565b6000602082019050818103600083015261253c816122be565b9050919050565b6000602082019050818103600083015261255c816122e1565b9050919050565b60006020820190506125786000830184612304565b92915050565b60006020820190506125936000830184612313565b92915050565b600081519050919050565b600082825260208201905092915050565b60006125c082612848565b91506125cb83612848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612600576125ff6128ee565b5b828201905092915050565b6000808291508390505b600185111561265557808604811115612631576126306128ee565b5b60018516156126405780820291505b808102905061264e85612962565b9450612615565b94509492505050565b600061266982612848565b915061267483612852565b92506126a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126a9565b905092915050565b6000826126b95760019050612775565b816126c75760009050612775565b81600181146126dd57600281146126e757612716565b6001915050612775565b60ff8411156126f9576126f86128ee565b5b8360020a9150848211156127105761270f6128ee565b5b50612775565b5060208310610133831016604e8410600b841016171561274b5782820a905083811115612746576127456128ee565b5b612775565b612758848484600161260b565b9250905081840481111561276f5761276e6128ee565b5b81810290505b9392505050565b600061278782612848565b915061279283612848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127cb576127ca6128ee565b5b828202905092915050565b60006127e182612848565b91506127ec83612848565b9250828210156127ff576127fe6128ee565b5b828203905092915050565b600061281582612828565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561287d578082015181840152602081019050612862565b8381111561288c576000848401525b50505050565b600060028204905060018216806128aa57607f821691505b602082108114156128be576128bd61291d565b5b50919050565b60006128cf82612852565b915060ff8214156128e3576128e26128ee565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e206973206a75737420666f7220636f6e7472616374206f7760008201527f6e65722e2e2e0000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742046756e6374696f6e2069732044697361626c656421000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612d328161280a565b8114612d3d57600080fd5b50565b612d4981612848565b8114612d5457600080fd5b50565b612d6081612852565b8114612d6b57600080fd5b5056fea26469706673582212202b5d8f42cab220cc1c8d68780a639dbee6b2816d27042453095708811205d0cd64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000085348414255434b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085348414255434b53000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063736d878e116100f9578063a457c2d711610097578063beb9716d11610071578063beb9716d146104bb578063db006a75146104d9578063dd62ed3e146104f5578063f2fde38b14610525576101c4565b8063a457c2d71461043d578063a9059cbb1461046d578063b36c12841461049d576101c4565b806389b772e8116100d357806389b772e8146103d95780638be6c6bf146103e35780638da5cb5b1461040157806395d89b411461041f576101c4565b8063736d878e146103715780637a1395aa1461038d57806384f1bfa3146103a9576101c4565b80633ab1a494116101665780635961b4d2116101405780635961b4d2146103115780636f8b44b01461031b57806370a0823114610337578063715018a614610367576101c4565b80633ab1a494146102cf5780633ccfd60b146102eb57806340c10f19146102f5576101c4565b806323b872dd116101a257806323b872dd146102355780632d93c4ef14610265578063313ce56714610281578063395093511461029f576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd14610217575b600080fd5b6101d1610541565b6040516101de9190612381565b60405180910390f35b61020160048036038101906101fc9190612029565b6105d3565b60405161020e9190612366565b60405180910390f35b61021f6105f6565b60405161022c9190612563565b60405180910390f35b61024f600480360381019061024a9190611fd6565b610600565b60405161025c9190612366565b60405180910390f35b61027f600480360381019061027a9190611f69565b61062f565b005b610289610745565b604051610296919061257e565b60405180910390f35b6102b960048036038101906102b49190612029565b61075c565b6040516102c69190612366565b60405180910390f35b6102e960048036038101906102e49190611f69565b610806565b005b6102f3610918565b005b61030f600480360381019061030a9190612029565b610a48565b005b610319610c45565b005b61033560048036038101906103309190612069565b610d36565b005b610351600480360381019061034c9190611f69565b610e47565b60405161035e9190612563565b60405180910390f35b61036f610e8f565b005b61038b60048036038101906103869190611f69565b610f17565b005b6103a760048036038101906103a29190612096565b61102d565b005b6103c360048036038101906103be9190611f69565b6110c7565b6040516103d09190612366565b60405180910390f35b6103e16110e7565b005b6103eb611181565b6040516103f89190612322565b60405180910390f35b6104096111a7565b6040516104169190612322565b60405180910390f35b6104276111d1565b6040516104349190612381565b60405180910390f35b61045760048036038101906104529190612029565b611263565b6040516104649190612366565b60405180910390f35b61048760048036038101906104829190612029565b61134d565b6040516104949190612366565b60405180910390f35b6104a5611370565b6040516104b29190612563565b60405180910390f35b6104c3611376565b6040516104d09190612366565b60405180910390f35b6104f360048036038101906104ee9190612069565b611389565b005b61050f600480360381019061050a9190611f96565b6114c4565b60405161051c9190612563565b60405180910390f35b61053f600480360381019061053a9190611f69565b61154b565b005b60606009805461055090612892565b80601f016020809104026020016040519081016040528092919081815260200182805461057c90612892565b80156105c95780601f1061059e576101008083540402835291602001916105c9565b820191906000526020600020905b8154815290600101906020018083116105ac57829003601f168201915b5050505050905090565b6000806105de611643565b90506105eb81858561164b565b600191505092915050565b6000600254905090565b60008061060b611643565b9050610618858285611816565b6106238585856118a2565b60019150509392505050565b610637611643565b73ffffffffffffffffffffffffffffffffffffffff166106556111a7565b73ffffffffffffffffffffffffffffffffffffffff16146106ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a290612483565b60405180910390fd5b6106b36111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106ea57600080fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b60009054906101000a900460ff16905090565b600080610767611643565b90506107fb818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107f691906125b5565b61164b565b600191505092915050565b61080e6111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108d45760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612463565b60405180910390fd5b5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6109206111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109e65760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90612463565b60405180910390fd5b5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610a4657600080fd5b565b610a506111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b165760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90612463565b60405180910390fd5b5b60011515600560149054906101000a900460ff16151514610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390612503565b60405180910390fd5b610b746105f6565b81610b7d6105f6565b610b8791906125b5565b11610b9157600080fd5b600b60009054906101000a900460ff16600a610bad919061265e565b600654610bba919061277c565b81610bc36105f6565b610bcd91906125b5565b10610bd757600080fd5b610be033610e47565b81610bea33610e47565b610bf491906125b5565b11610bfe57600080fd5b610c088282611b23565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8282604051610c3992919061233d565b60405180910390a15050565b610c4d611643565b73ffffffffffffffffffffffffffffffffffffffff16610c6b6111a7565b73ffffffffffffffffffffffffffffffffffffffff1614610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890612483565b60405180910390fd5b6003600b60019054906101000a900460ff1660ff1610610cfb576000600560146101000a81548160ff021916908315150217905550610d34565b600b600181819054906101000a900460ff1680929190610d1a906128c4565b91906101000a81548160ff021916908360ff160217905550505b565b610d3e6111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e045760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90612463565b60405180910390fd5b5b806006819055507facc639f1ff310faf48650d02a82bd24c924e45a5050fc931245096ac57c309d9600654604051610e3c9190612563565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e97611643565b73ffffffffffffffffffffffffffffffffffffffff16610eb56111a7565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290612483565b60405180910390fd5b610f156000611c83565b565b610f1f611643565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6111a7565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90612483565b60405180910390fd5b610f9b6111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fd257600080fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611035611643565b73ffffffffffffffffffffffffffffffffffffffff166110536111a7565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090612483565b60405180910390fd5b80600b60006101000a81548160ff021916908360ff16021790555050565b60076020528060005260406000206000915054906101000a900460ff1681565b6110ef611643565b73ffffffffffffffffffffffffffffffffffffffff1661110d6111a7565b73ffffffffffffffffffffffffffffffffffffffff1614611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90612483565b60405180910390fd5b6000600b60016101000a81548160ff021916908360ff160217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a80546111e090612892565b80601f016020809104026020016040519081016040528092919081815260200182805461120c90612892565b80156112595780601f1061122e57610100808354040283529160200191611259565b820191906000526020600020905b81548152906001019060200180831161123c57829003601f168201915b5050505050905090565b60008061126e611643565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90612523565b60405180910390fd5b611341828686840361164b565b60019250505092915050565b600080611358611643565b90506113658185856118a2565b600191505092915050565b60065481565b600560149054906101000a900460ff1681565b6113916111a7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114575760011515600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90612463565b60405180910390fd5b5b806114606105f6565b101561146b57600080fd5b8061147533610e47565b101561148057600080fd5b61148a3382611d49565b7f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a44816040516114b99190612563565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611553611643565b73ffffffffffffffffffffffffffffffffffffffff166115716111a7565b73ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90612483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906123e3565b60405180910390fd5b61164081611c83565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b2906124e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290612403565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118099190612563565b60405180910390a3505050565b600061182284846114c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461189c578181101561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590612423565b60405180910390fd5b61189b848484840361164b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611909906124c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611979906123a3565b60405180910390fd5b61198d838383611f20565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612443565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa691906125b5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b0a9190612563565b60405180910390a3611b1d848484611f25565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90612543565b60405180910390fd5b611b9f60008383611f20565b8060026000828254611bb191906125b5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c0691906125b5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c6b9190612563565b60405180910390a3611c7f60008383611f25565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db0906124a3565b60405180910390fd5b611dc582600083611f20565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e42906123c3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611ea291906127d6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f079190612563565b60405180910390a3611f1b83600084611f25565b505050565b505050565b505050565b600081359050611f3981612d29565b92915050565b600081359050611f4e81612d40565b92915050565b600081359050611f6381612d57565b92915050565b600060208284031215611f7f57611f7e61294c565b5b6000611f8d84828501611f2a565b91505092915050565b60008060408385031215611fad57611fac61294c565b5b6000611fbb85828601611f2a565b9250506020611fcc85828601611f2a565b9150509250929050565b600080600060608486031215611fef57611fee61294c565b5b6000611ffd86828701611f2a565b935050602061200e86828701611f2a565b925050604061201f86828701611f3f565b9150509250925092565b600080604083850312156120405761203f61294c565b5b600061204e85828601611f2a565b925050602061205f85828601611f3f565b9150509250929050565b60006020828403121561207f5761207e61294c565b5b600061208d84828501611f3f565b91505092915050565b6000602082840312156120ac576120ab61294c565b5b60006120ba84828501611f54565b91505092915050565b6120cc8161280a565b82525050565b6120db8161281c565b82525050565b60006120ec82612599565b6120f681856125a4565b935061210681856020860161285f565b61210f81612951565b840191505092915050565b60006121276023836125a4565b91506121328261296f565b604082019050919050565b600061214a6022836125a4565b9150612155826129be565b604082019050919050565b600061216d6026836125a4565b915061217882612a0d565b604082019050919050565b60006121906022836125a4565b915061219b82612a5c565b604082019050919050565b60006121b3601d836125a4565b91506121be82612aab565b602082019050919050565b60006121d66026836125a4565b91506121e182612ad4565b604082019050919050565b60006121f96026836125a4565b915061220482612b23565b604082019050919050565b600061221c6020836125a4565b915061222782612b72565b602082019050919050565b600061223f6021836125a4565b915061224a82612b9b565b604082019050919050565b60006122626025836125a4565b915061226d82612bea565b604082019050919050565b60006122856024836125a4565b915061229082612c39565b604082019050919050565b60006122a8601a836125a4565b91506122b382612c88565b602082019050919050565b60006122cb6025836125a4565b91506122d682612cb1565b604082019050919050565b60006122ee601f836125a4565b91506122f982612d00565b602082019050919050565b61230d81612848565b82525050565b61231c81612852565b82525050565b600060208201905061233760008301846120c3565b92915050565b600060408201905061235260008301856120c3565b61235f6020830184612304565b9392505050565b600060208201905061237b60008301846120d2565b92915050565b6000602082019050818103600083015261239b81846120e1565b905092915050565b600060208201905081810360008301526123bc8161211a565b9050919050565b600060208201905081810360008301526123dc8161213d565b9050919050565b600060208201905081810360008301526123fc81612160565b9050919050565b6000602082019050818103600083015261241c81612183565b9050919050565b6000602082019050818103600083015261243c816121a6565b9050919050565b6000602082019050818103600083015261245c816121c9565b9050919050565b6000602082019050818103600083015261247c816121ec565b9050919050565b6000602082019050818103600083015261249c8161220f565b9050919050565b600060208201905081810360008301526124bc81612232565b9050919050565b600060208201905081810360008301526124dc81612255565b9050919050565b600060208201905081810360008301526124fc81612278565b9050919050565b6000602082019050818103600083015261251c8161229b565b9050919050565b6000602082019050818103600083015261253c816122be565b9050919050565b6000602082019050818103600083015261255c816122e1565b9050919050565b60006020820190506125786000830184612304565b92915050565b60006020820190506125936000830184612313565b92915050565b600081519050919050565b600082825260208201905092915050565b60006125c082612848565b91506125cb83612848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612600576125ff6128ee565b5b828201905092915050565b6000808291508390505b600185111561265557808604811115612631576126306128ee565b5b60018516156126405780820291505b808102905061264e85612962565b9450612615565b94509492505050565b600061266982612848565b915061267483612852565b92506126a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126a9565b905092915050565b6000826126b95760019050612775565b816126c75760009050612775565b81600181146126dd57600281146126e757612716565b6001915050612775565b60ff8411156126f9576126f86128ee565b5b8360020a9150848211156127105761270f6128ee565b5b50612775565b5060208310610133831016604e8410600b841016171561274b5782820a905083811115612746576127456128ee565b5b612775565b612758848484600161260b565b9250905081840481111561276f5761276e6128ee565b5b81810290505b9392505050565b600061278782612848565b915061279283612848565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127cb576127ca6128ee565b5b828202905092915050565b60006127e182612848565b91506127ec83612848565b9250828210156127ff576127fe6128ee565b5b828203905092915050565b600061281582612828565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561287d578082015181840152602081019050612862565b8381111561288c576000848401525b50505050565b600060028204905060018216806128aa57607f821691505b602082108114156128be576128bd61291d565b5b50919050565b60006128cf82612852565b915060ff8214156128e3576128e26128ee565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f46756e6374696f6e206973206a75737420666f7220636f6e7472616374206f7760008201527f6e65722e2e2e0000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742046756e6374696f6e2069732044697361626c656421000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612d328161280a565b8114612d3d57600080fd5b50565b612d4981612848565b8114612d5457600080fd5b50565b612d6081612852565b8114612d6b57600080fd5b5056fea26469706673582212202b5d8f42cab220cc1c8d68780a639dbee6b2816d27042453095708811205d0cd64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000085348414255434b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085348414255434b53000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : __name (string): SHABUCKS
Arg [1] : __symbol (string): SHABUCKS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 5348414255434b53000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 5348414255434b53000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

27093:4622:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28094:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18561:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17330:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19342:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30983:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28424:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20046:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31153:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31430:272;;;:::i;:::-;;28678:564;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30395:199;;;:::i;:::-;;30087:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17501:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9633:103;;;:::i;:::-;;30817:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30711:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27302:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30602:101;;;:::i;:::-;;27360:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8982:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28251:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20789:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17834:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27221:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27188:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29473:358;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18090:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9891:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28094:90;28140:13;28171:5;28164:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28094:90;:::o;18561:201::-;18644:4;18661:13;18677:12;:10;:12::i;:::-;18661:28;;18700:32;18709:5;18716:7;18725:6;18700:8;:32::i;:::-;18750:4;18743:11;;;18561:201;;;;:::o;17330:108::-;17391:7;17418:12;;17411:19;;17330:108;:::o;19342:295::-;19473:4;19490:15;19508:12;:10;:12::i;:::-;19490:30;;19531:38;19547:4;19553:7;19562:6;19531:15;:38::i;:::-;19580:27;19590:4;19596:2;19600:6;19580:9;:27::i;:::-;19625:4;19618:11;;;19342:295;;;;;:::o;30983:162::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31083:7:::1;:5;:7::i;:::-;31069:21;;:10;:21;;;31061:30;;;::::0;::::1;;31132:5;31100:19;:29;31120:8;31100:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;30983:162:::0;:::o;28424:90::-;28474:5;28497:9;;;;;;;;;;;28490:16;;28424:90;:::o;20046:240::-;20134:4;20151:13;20167:12;:10;:12::i;:::-;20151:28;;20190:66;20199:5;20206:7;20245:10;20215:11;:18;20227:5;20215:18;;;;;;;;;;;;;;;:27;20234:7;20215:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;20190:8;:66::i;:::-;20274:4;20267:11;;;20046:240;;;;:::o;31153:269::-;31249:7;:5;:7::i;:::-;31235:21;;:10;:21;;;31231:140;;31314:4;31279:39;;:19;:31;31299:10;31279:31;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;31271:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;31231:140;31398:16;31381:15;;:33;;;;;;;;;;;;;;;;;;31153:269;:::o;31430:272::-;31491:7;:5;:7::i;:::-;31477:21;;:10;:21;;;31473:140;;31556:4;31521:39;;:19;:31;31541:10;31521:31;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;31513:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;31473:140;31641:15;;;;;;;;;;;31633:29;;:52;31663:21;31633:52;;;;;;;;;;;;;;;;;;;;;;;31625:61;;;;;;31430:272::o;28678:564::-;28759:7;:5;:7::i;:::-;28745:21;;:10;:21;;;28741:142;;28824:4;28789:39;;:19;:31;28809:10;28789:31;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;28781:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;28741:142;28914:4;28903:15;;:7;;;;;;;;;;;:15;;;28895:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;28993:13;:11;:13::i;:::-;28984:6;28968:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;28960:47;;;;;;29071:9;;;;;;;;;;;29065:2;:15;;;;:::i;:::-;29052:9;;:29;;;;:::i;:::-;29042:6;29026:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:56;29018:65;;;;;;29136:21;29146:10;29136:9;:21::i;:::-;29127:6;29102:21;29112:10;29102:9;:21::i;:::-;:31;;;;:::i;:::-;:55;29094:64;;;;;;29181:18;29187:3;29192:6;29181:5;:18::i;:::-;29215:19;29222:3;29227:6;29215:19;;;;;;;:::i;:::-;;;;;;;;28678:564;;:::o;30395:199::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30483:1:::1;30459:20;;;;;;;;;;;:25;;;30456:122;;30510:5;30500:7;;:15;;;;;;;;;;;;;;;;;;30456:122;;;30555:20;;:23;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;30456:122;30395:199::o:0;30087:279::-;30167:7;:5;:7::i;:::-;30153:21;;:10;:21;;;30149:140;;30232:4;30197:39;;:19;:31;30217:10;30197:31;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;30189:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;30149:140;30311:10;30299:9;:22;;;;30335:23;30348:9;;30335:23;;;;;;:::i;:::-;;;;;;;;30087:279;:::o;17501:127::-;17575:7;17602:9;:18;17612:7;17602:18;;;;;;;;;;;;;;;;17595:25;;17501:127;;;:::o;9633:103::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9698:30:::1;9725:1;9698:18;:30::i;:::-;9633:103::o:0;30817:158::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30914:7:::1;:5;:7::i;:::-;30900:21;;:10;:21;;;30892:30;;;::::0;::::1;;30963:4;30931:19;:29;30951:8;30931:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30817:158:::0;:::o;30711:98::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30791:10:::1;30779:9;;:22;;;;;;;;;;;;;;;;;;30711:98:::0;:::o;27302:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;30602:101::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30694:1:::1;30671:20;;:24;;;;;;;;;;;;;;;;;;30602:101::o:0;27360:30::-;;;;;;;;;;;;;:::o;8982:87::-;9028:7;9055:6;;;;;;;;;;;9048:13;;8982:87;:::o;28251:94::-;28299:13;28330:7;28323:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28251:94;:::o;20789:438::-;20882:4;20899:13;20915:12;:10;:12::i;:::-;20899:28;;20938:24;20965:11;:18;20977:5;20965:18;;;;;;;;;;;;;;;:27;20984:7;20965:27;;;;;;;;;;;;;;;;20938:54;;21031:15;21011:16;:35;;21003:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21124:60;21133:5;21140:7;21168:15;21149:16;:34;21124:8;:60::i;:::-;21215:4;21208:11;;;;20789:438;;;;:::o;17834:193::-;17913:4;17930:13;17946:12;:10;:12::i;:::-;17930:28;;17969;17979:5;17986:2;17990:6;17969:9;:28::i;:::-;18015:4;18008:11;;;17834:193;;;;:::o;27221:34::-;;;;:::o;27188:26::-;;;;;;;;;;;;;:::o;29473:358::-;29538:7;:5;:7::i;:::-;29524:21;;:10;:21;;;29520:142;;29603:4;29568:39;;:19;:31;29588:10;29568:31;;;;;;;;;;;;;;;;;;;;;;;;;:39;;;29560:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;29520:142;29697:6;29680:13;:11;:13::i;:::-;:23;;29672:32;;;;;;29748:6;29723:21;29733:10;29723:9;:21::i;:::-;:31;;29715:40;;;;;;29768:25;29774:10;29786:6;29768:5;:25::i;:::-;29809:14;29816:6;29809:14;;;;;;:::i;:::-;;;;;;;;29473:358;:::o;18090:151::-;18179:7;18206:11;:18;18218:5;18206:18;;;;;;;;;;;;;;;:27;18225:7;18206:27;;;;;;;;;;;;;;;;18199:34;;18090:151;;;;:::o;9891:201::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10000:1:::1;9980:22;;:8;:22;;;;9972:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10056:28;10075:8;10056:18;:28::i;:::-;9891:201:::0;:::o;7706:98::-;7759:7;7786:10;7779:17;;7706:98;:::o;24425:380::-;24578:1;24561:19;;:5;:19;;;;24553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24659:1;24640:21;;:7;:21;;;;24632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24743:6;24713:11;:18;24725:5;24713:18;;;;;;;;;;;;;;;:27;24732:7;24713:27;;;;;;;;;;;;;;;:36;;;;24781:7;24765:32;;24774:5;24765:32;;;24790:6;24765:32;;;;;;:::i;:::-;;;;;;;;24425:380;;;:::o;25092:453::-;25227:24;25254:25;25264:5;25271:7;25254:9;:25::i;:::-;25227:52;;25314:17;25294:16;:37;25290:248;;25376:6;25356:16;:26;;25348:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25460:51;25469:5;25476:7;25504:6;25485:16;:25;25460:8;:51::i;:::-;25290:248;25216:329;25092:453;;;:::o;21706:671::-;21853:1;21837:18;;:4;:18;;;;21829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21930:1;21916:16;;:2;:16;;;;21908:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21985:38;22006:4;22012:2;22016:6;21985:20;:38::i;:::-;22036:19;22058:9;:15;22068:4;22058:15;;;;;;;;;;;;;;;;22036:37;;22107:6;22092:11;:21;;22084:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22224:6;22210:11;:20;22192:9;:15;22202:4;22192:15;;;;;;;;;;;;;;;:38;;;;22269:6;22252:9;:13;22262:2;22252:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;22308:2;22293:26;;22302:4;22293:26;;;22312:6;22293:26;;;;;;:::i;:::-;;;;;;;;22332:37;22352:4;22358:2;22362:6;22332:19;:37::i;:::-;21818:559;21706:671;;;:::o;22664:399::-;22767:1;22748:21;;:7;:21;;;;22740:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;22818:49;22847:1;22851:7;22860:6;22818:20;:49::i;:::-;22896:6;22880:12;;:22;;;;;;;:::i;:::-;;;;;;;;22935:6;22913:9;:18;22923:7;22913:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;22978:7;22957:37;;22974:1;22957:37;;;22987:6;22957:37;;;;;;:::i;:::-;;;;;;;;23007:48;23035:1;23039:7;23048:6;23007:19;:48::i;:::-;22664:399;;:::o;10252:191::-;10326:16;10345:6;;;;;;;;;;;10326:25;;10371:8;10362:6;;:17;;;;;;;;;;;;;;;;;;10426:8;10395:40;;10416:8;10395:40;;;;;;;;;;;;10315:128;10252:191;:::o;23396:591::-;23499:1;23480:21;;:7;:21;;;;23472:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23552:49;23573:7;23590:1;23594:6;23552:20;:49::i;:::-;23614:22;23639:9;:18;23649:7;23639:18;;;;;;;;;;;;;;;;23614:43;;23694:6;23676:14;:24;;23668:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23813:6;23796:14;:23;23775:9;:18;23785:7;23775:18;;;;;;;;;;;;;;;:44;;;;23857:6;23841:12;;:22;;;;;;;:::i;:::-;;;;;;;;23907:1;23881:37;;23890:7;23881:37;;;23911:6;23881:37;;;;;;:::i;:::-;;;;;;;;23931:48;23951:7;23968:1;23972:6;23931:19;:48::i;:::-;23461:526;23396:591;;:::o;26145:125::-;;;;:::o;26874:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:135::-;341:5;379:6;366:20;357:29;;395:31;420:5;395:31;:::i;:::-;297:135;;;;:::o;438:329::-;497:6;546:2;534:9;525:7;521:23;517:32;514:119;;;552:79;;:::i;:::-;514:119;672:1;697:53;742:7;733:6;722:9;718:22;697:53;:::i;:::-;687:63;;643:117;438:329;;;;:::o;773:474::-;841:6;849;898:2;886:9;877:7;873:23;869:32;866:119;;;904:79;;:::i;:::-;866:119;1024:1;1049:53;1094:7;1085:6;1074:9;1070:22;1049:53;:::i;:::-;1039:63;;995:117;1151:2;1177:53;1222:7;1213:6;1202:9;1198:22;1177:53;:::i;:::-;1167:63;;1122:118;773:474;;;;;:::o;1253:619::-;1330:6;1338;1346;1395:2;1383:9;1374:7;1370:23;1366:32;1363:119;;;1401:79;;:::i;:::-;1363:119;1521:1;1546:53;1591:7;1582:6;1571:9;1567:22;1546:53;:::i;:::-;1536:63;;1492:117;1648:2;1674:53;1719:7;1710:6;1699:9;1695:22;1674:53;:::i;:::-;1664:63;;1619:118;1776:2;1802:53;1847:7;1838:6;1827:9;1823:22;1802:53;:::i;:::-;1792:63;;1747:118;1253:619;;;;;:::o;1878:474::-;1946:6;1954;2003:2;1991:9;1982:7;1978:23;1974:32;1971:119;;;2009:79;;:::i;:::-;1971:119;2129:1;2154:53;2199:7;2190:6;2179:9;2175:22;2154:53;:::i;:::-;2144:63;;2100:117;2256:2;2282:53;2327:7;2318:6;2307:9;2303:22;2282:53;:::i;:::-;2272:63;;2227:118;1878:474;;;;;:::o;2358:329::-;2417:6;2466:2;2454:9;2445:7;2441:23;2437:32;2434:119;;;2472:79;;:::i;:::-;2434:119;2592:1;2617:53;2662:7;2653:6;2642:9;2638:22;2617:53;:::i;:::-;2607:63;;2563:117;2358:329;;;;:::o;2693:325::-;2750:6;2799:2;2787:9;2778:7;2774:23;2770:32;2767:119;;;2805:79;;:::i;:::-;2767:119;2925:1;2950:51;2993:7;2984:6;2973:9;2969:22;2950:51;:::i;:::-;2940:61;;2896:115;2693:325;;;;:::o;3024:118::-;3111:24;3129:5;3111:24;:::i;:::-;3106:3;3099:37;3024:118;;:::o;3148:109::-;3229:21;3244:5;3229:21;:::i;:::-;3224:3;3217:34;3148:109;;:::o;3263:364::-;3351:3;3379:39;3412:5;3379:39;:::i;:::-;3434:71;3498:6;3493:3;3434:71;:::i;:::-;3427:78;;3514:52;3559:6;3554:3;3547:4;3540:5;3536:16;3514:52;:::i;:::-;3591:29;3613:6;3591:29;:::i;:::-;3586:3;3582:39;3575:46;;3355:272;3263:364;;;;:::o;3633:366::-;3775:3;3796:67;3860:2;3855:3;3796:67;:::i;:::-;3789:74;;3872:93;3961:3;3872:93;:::i;:::-;3990:2;3985:3;3981:12;3974:19;;3633:366;;;:::o;4005:::-;4147:3;4168:67;4232:2;4227:3;4168:67;:::i;:::-;4161:74;;4244:93;4333:3;4244:93;:::i;:::-;4362:2;4357:3;4353:12;4346:19;;4005:366;;;:::o;4377:::-;4519:3;4540:67;4604:2;4599:3;4540:67;:::i;:::-;4533:74;;4616:93;4705:3;4616:93;:::i;:::-;4734:2;4729:3;4725:12;4718:19;;4377:366;;;:::o;4749:::-;4891:3;4912:67;4976:2;4971:3;4912:67;:::i;:::-;4905:74;;4988:93;5077:3;4988:93;:::i;:::-;5106:2;5101:3;5097:12;5090:19;;4749:366;;;:::o;5121:::-;5263:3;5284:67;5348:2;5343:3;5284:67;:::i;:::-;5277:74;;5360:93;5449:3;5360:93;:::i;:::-;5478:2;5473:3;5469:12;5462:19;;5121:366;;;:::o;5493:::-;5635:3;5656:67;5720:2;5715:3;5656:67;:::i;:::-;5649:74;;5732:93;5821:3;5732:93;:::i;:::-;5850:2;5845:3;5841:12;5834:19;;5493:366;;;:::o;5865:::-;6007:3;6028:67;6092:2;6087:3;6028:67;:::i;:::-;6021:74;;6104:93;6193:3;6104:93;:::i;:::-;6222:2;6217:3;6213:12;6206:19;;5865:366;;;:::o;6237:::-;6379:3;6400:67;6464:2;6459:3;6400:67;:::i;:::-;6393:74;;6476:93;6565:3;6476:93;:::i;:::-;6594:2;6589:3;6585:12;6578:19;;6237:366;;;:::o;6609:::-;6751:3;6772:67;6836:2;6831:3;6772:67;:::i;:::-;6765:74;;6848:93;6937:3;6848:93;:::i;:::-;6966:2;6961:3;6957:12;6950:19;;6609:366;;;:::o;6981:::-;7123:3;7144:67;7208:2;7203:3;7144:67;:::i;:::-;7137:74;;7220:93;7309:3;7220:93;:::i;:::-;7338:2;7333:3;7329:12;7322:19;;6981:366;;;:::o;7353:::-;7495:3;7516:67;7580:2;7575:3;7516:67;:::i;:::-;7509:74;;7592:93;7681:3;7592:93;:::i;:::-;7710:2;7705:3;7701:12;7694:19;;7353:366;;;:::o;7725:::-;7867:3;7888:67;7952:2;7947:3;7888:67;:::i;:::-;7881:74;;7964:93;8053:3;7964:93;:::i;:::-;8082:2;8077:3;8073:12;8066:19;;7725:366;;;:::o;8097:::-;8239:3;8260:67;8324:2;8319:3;8260:67;:::i;:::-;8253:74;;8336:93;8425:3;8336:93;:::i;:::-;8454:2;8449:3;8445:12;8438:19;;8097:366;;;:::o;8469:::-;8611:3;8632:67;8696:2;8691:3;8632:67;:::i;:::-;8625:74;;8708:93;8797:3;8708:93;:::i;:::-;8826:2;8821:3;8817:12;8810:19;;8469:366;;;:::o;8841:118::-;8928:24;8946:5;8928:24;:::i;:::-;8923:3;8916:37;8841:118;;:::o;8965:112::-;9048:22;9064:5;9048:22;:::i;:::-;9043:3;9036:35;8965:112;;:::o;9083:222::-;9176:4;9214:2;9203:9;9199:18;9191:26;;9227:71;9295:1;9284:9;9280:17;9271:6;9227:71;:::i;:::-;9083:222;;;;:::o;9311:332::-;9432:4;9470:2;9459:9;9455:18;9447:26;;9483:71;9551:1;9540:9;9536:17;9527:6;9483:71;:::i;:::-;9564:72;9632:2;9621:9;9617:18;9608:6;9564:72;:::i;:::-;9311:332;;;;;:::o;9649:210::-;9736:4;9774:2;9763:9;9759:18;9751:26;;9787:65;9849:1;9838:9;9834:17;9825:6;9787:65;:::i;:::-;9649:210;;;;:::o;9865:313::-;9978:4;10016:2;10005:9;10001:18;9993:26;;10065:9;10059:4;10055:20;10051:1;10040:9;10036:17;10029:47;10093:78;10166:4;10157:6;10093:78;:::i;:::-;10085:86;;9865:313;;;;:::o;10184:419::-;10350:4;10388:2;10377:9;10373:18;10365:26;;10437:9;10431:4;10427:20;10423:1;10412:9;10408:17;10401:47;10465:131;10591:4;10465:131;:::i;:::-;10457:139;;10184:419;;;:::o;10609:::-;10775:4;10813:2;10802:9;10798:18;10790:26;;10862:9;10856:4;10852:20;10848:1;10837:9;10833:17;10826:47;10890:131;11016:4;10890:131;:::i;:::-;10882:139;;10609:419;;;:::o;11034:::-;11200:4;11238:2;11227:9;11223:18;11215:26;;11287:9;11281:4;11277:20;11273:1;11262:9;11258:17;11251:47;11315:131;11441:4;11315:131;:::i;:::-;11307:139;;11034:419;;;:::o;11459:::-;11625:4;11663:2;11652:9;11648:18;11640:26;;11712:9;11706:4;11702:20;11698:1;11687:9;11683:17;11676:47;11740:131;11866:4;11740:131;:::i;:::-;11732:139;;11459:419;;;:::o;11884:::-;12050:4;12088:2;12077:9;12073:18;12065:26;;12137:9;12131:4;12127:20;12123:1;12112:9;12108:17;12101:47;12165:131;12291:4;12165:131;:::i;:::-;12157:139;;11884:419;;;:::o;12309:::-;12475:4;12513:2;12502:9;12498:18;12490:26;;12562:9;12556:4;12552:20;12548:1;12537:9;12533:17;12526:47;12590:131;12716:4;12590:131;:::i;:::-;12582:139;;12309:419;;;:::o;12734:::-;12900:4;12938:2;12927:9;12923:18;12915:26;;12987:9;12981:4;12977:20;12973:1;12962:9;12958:17;12951:47;13015:131;13141:4;13015:131;:::i;:::-;13007:139;;12734:419;;;:::o;13159:::-;13325:4;13363:2;13352:9;13348:18;13340:26;;13412:9;13406:4;13402:20;13398:1;13387:9;13383:17;13376:47;13440:131;13566:4;13440:131;:::i;:::-;13432:139;;13159:419;;;:::o;13584:::-;13750:4;13788:2;13777:9;13773:18;13765:26;;13837:9;13831:4;13827:20;13823:1;13812:9;13808:17;13801:47;13865:131;13991:4;13865:131;:::i;:::-;13857:139;;13584:419;;;:::o;14009:::-;14175:4;14213:2;14202:9;14198:18;14190:26;;14262:9;14256:4;14252:20;14248:1;14237:9;14233:17;14226:47;14290:131;14416:4;14290:131;:::i;:::-;14282:139;;14009:419;;;:::o;14434:::-;14600:4;14638:2;14627:9;14623:18;14615:26;;14687:9;14681:4;14677:20;14673:1;14662:9;14658:17;14651:47;14715:131;14841:4;14715:131;:::i;:::-;14707:139;;14434:419;;;:::o;14859:::-;15025:4;15063:2;15052:9;15048:18;15040:26;;15112:9;15106:4;15102:20;15098:1;15087:9;15083:17;15076:47;15140:131;15266:4;15140:131;:::i;:::-;15132:139;;14859:419;;;:::o;15284:::-;15450:4;15488:2;15477:9;15473:18;15465:26;;15537:9;15531:4;15527:20;15523:1;15512:9;15508:17;15501:47;15565:131;15691:4;15565:131;:::i;:::-;15557:139;;15284:419;;;:::o;15709:::-;15875:4;15913:2;15902:9;15898:18;15890:26;;15962:9;15956:4;15952:20;15948:1;15937:9;15933:17;15926:47;15990:131;16116:4;15990:131;:::i;:::-;15982:139;;15709:419;;;:::o;16134:222::-;16227:4;16265:2;16254:9;16250:18;16242:26;;16278:71;16346:1;16335:9;16331:17;16322:6;16278:71;:::i;:::-;16134:222;;;;:::o;16362:214::-;16451:4;16489:2;16478:9;16474:18;16466:26;;16502:67;16566:1;16555:9;16551:17;16542:6;16502:67;:::i;:::-;16362:214;;;;:::o;16663:99::-;16715:6;16749:5;16743:12;16733:22;;16663:99;;;:::o;16768:169::-;16852:11;16886:6;16881:3;16874:19;16926:4;16921:3;16917:14;16902:29;;16768:169;;;;:::o;16943:305::-;16983:3;17002:20;17020:1;17002:20;:::i;:::-;16997:25;;17036:20;17054:1;17036:20;:::i;:::-;17031:25;;17190:1;17122:66;17118:74;17115:1;17112:81;17109:107;;;17196:18;;:::i;:::-;17109:107;17240:1;17237;17233:9;17226:16;;16943:305;;;;:::o;17254:848::-;17315:5;17322:4;17346:6;17337:15;;17370:5;17361:14;;17384:712;17405:1;17395:8;17392:15;17384:712;;;17500:4;17495:3;17491:14;17485:4;17482:24;17479:50;;;17509:18;;:::i;:::-;17479:50;17559:1;17549:8;17545:16;17542:451;;;17974:4;17967:5;17963:16;17954:25;;17542:451;18024:4;18018;18014:15;18006:23;;18054:32;18077:8;18054:32;:::i;:::-;18042:44;;17384:712;;;17254:848;;;;;;;:::o;18108:281::-;18166:5;18190:23;18208:4;18190:23;:::i;:::-;18182:31;;18234:25;18250:8;18234:25;:::i;:::-;18222:37;;18278:104;18315:66;18305:8;18299:4;18278:104;:::i;:::-;18269:113;;18108:281;;;;:::o;18395:1073::-;18449:5;18640:8;18630:40;;18661:1;18652:10;;18663:5;;18630:40;18689:4;18679:36;;18706:1;18697:10;;18708:5;;18679:36;18775:4;18823:1;18818:27;;;;18859:1;18854:191;;;;18768:277;;18818:27;18836:1;18827:10;;18838:5;;;18854:191;18899:3;18889:8;18886:17;18883:43;;;18906:18;;:::i;:::-;18883:43;18955:8;18952:1;18948:16;18939:25;;18990:3;18983:5;18980:14;18977:40;;;18997:18;;:::i;:::-;18977:40;19030:5;;;18768:277;;19154:2;19144:8;19141:16;19135:3;19129:4;19126:13;19122:36;19104:2;19094:8;19091:16;19086:2;19080:4;19077:12;19073:35;19057:111;19054:246;;;19210:8;19204:4;19200:19;19191:28;;19245:3;19238:5;19235:14;19232:40;;;19252:18;;:::i;:::-;19232:40;19285:5;;19054:246;19325:42;19363:3;19353:8;19347:4;19344:1;19325:42;:::i;:::-;19310:57;;;;19399:4;19394:3;19390:14;19383:5;19380:25;19377:51;;;19408:18;;:::i;:::-;19377:51;19457:4;19450:5;19446:16;19437:25;;18395:1073;;;;;;:::o;19474:348::-;19514:7;19537:20;19555:1;19537:20;:::i;:::-;19532:25;;19571:20;19589:1;19571:20;:::i;:::-;19566:25;;19759:1;19691:66;19687:74;19684:1;19681:81;19676:1;19669:9;19662:17;19658:105;19655:131;;;19766:18;;:::i;:::-;19655:131;19814:1;19811;19807:9;19796:20;;19474:348;;;;:::o;19828:191::-;19868:4;19888:20;19906:1;19888:20;:::i;:::-;19883:25;;19922:20;19940:1;19922:20;:::i;:::-;19917:25;;19961:1;19958;19955:8;19952:34;;;19966:18;;:::i;:::-;19952:34;20011:1;20008;20004:9;19996:17;;19828:191;;;;:::o;20025:96::-;20062:7;20091:24;20109:5;20091:24;:::i;:::-;20080:35;;20025:96;;;:::o;20127:90::-;20161:7;20204:5;20197:13;20190:21;20179:32;;20127:90;;;:::o;20223:126::-;20260:7;20300:42;20293:5;20289:54;20278:65;;20223:126;;;:::o;20355:77::-;20392:7;20421:5;20410:16;;20355:77;;;:::o;20438:86::-;20473:7;20513:4;20506:5;20502:16;20491:27;;20438:86;;;:::o;20530:307::-;20598:1;20608:113;20622:6;20619:1;20616:13;20608:113;;;20707:1;20702:3;20698:11;20692:18;20688:1;20683:3;20679:11;20672:39;20644:2;20641:1;20637:10;20632:15;;20608:113;;;20739:6;20736:1;20733:13;20730:101;;;20819:1;20810:6;20805:3;20801:16;20794:27;20730:101;20579:258;20530:307;;;:::o;20843:320::-;20887:6;20924:1;20918:4;20914:12;20904:22;;20971:1;20965:4;20961:12;20992:18;20982:81;;21048:4;21040:6;21036:17;21026:27;;20982:81;21110:2;21102:6;21099:14;21079:18;21076:38;21073:84;;;21129:18;;:::i;:::-;21073:84;20894:269;20843:320;;;:::o;21169:167::-;21206:3;21229:22;21245:5;21229:22;:::i;:::-;21220:31;;21273:4;21266:5;21263:15;21260:41;;;21281:18;;:::i;:::-;21260:41;21328:1;21321:5;21317:13;21310:20;;21169:167;;;:::o;21342:180::-;21390:77;21387:1;21380:88;21487:4;21484:1;21477:15;21511:4;21508:1;21501:15;21528:180;21576:77;21573:1;21566:88;21673:4;21670:1;21663:15;21697:4;21694:1;21687:15;21837:117;21946:1;21943;21936:12;21960:102;22001:6;22052:2;22048:7;22043:2;22036:5;22032:14;22028:28;22018:38;;21960:102;;;:::o;22068:::-;22110:8;22157:5;22154:1;22150:13;22129:34;;22068:102;;;:::o;22176:222::-;22316:34;22312:1;22304:6;22300:14;22293:58;22385:5;22380:2;22372:6;22368:15;22361:30;22176:222;:::o;22404:221::-;22544:34;22540:1;22532:6;22528:14;22521:58;22613:4;22608:2;22600:6;22596:15;22589:29;22404:221;:::o;22631:225::-;22771:34;22767:1;22759:6;22755:14;22748:58;22840:8;22835:2;22827:6;22823:15;22816:33;22631:225;:::o;22862:221::-;23002:34;22998:1;22990:6;22986:14;22979:58;23071:4;23066:2;23058:6;23054:15;23047:29;22862:221;:::o;23089:179::-;23229:31;23225:1;23217:6;23213:14;23206:55;23089:179;:::o;23274:225::-;23414:34;23410:1;23402:6;23398:14;23391:58;23483:8;23478:2;23470:6;23466:15;23459:33;23274:225;:::o;23505:::-;23645:34;23641:1;23633:6;23629:14;23622:58;23714:8;23709:2;23701:6;23697:15;23690:33;23505:225;:::o;23736:182::-;23876:34;23872:1;23864:6;23860:14;23853:58;23736:182;:::o;23924:220::-;24064:34;24060:1;24052:6;24048:14;24041:58;24133:3;24128:2;24120:6;24116:15;24109:28;23924:220;:::o;24150:224::-;24290:34;24286:1;24278:6;24274:14;24267:58;24359:7;24354:2;24346:6;24342:15;24335:32;24150:224;:::o;24380:223::-;24520:34;24516:1;24508:6;24504:14;24497:58;24589:6;24584:2;24576:6;24572:15;24565:31;24380:223;:::o;24609:176::-;24749:28;24745:1;24737:6;24733:14;24726:52;24609:176;:::o;24791:224::-;24931:34;24927:1;24919:6;24915:14;24908:58;25000:7;24995:2;24987:6;24983:15;24976:32;24791:224;:::o;25021:181::-;25161:33;25157:1;25149:6;25145:14;25138:57;25021:181;:::o;25208:122::-;25281:24;25299:5;25281:24;:::i;:::-;25274:5;25271:35;25261:63;;25320:1;25317;25310:12;25261:63;25208:122;:::o;25336:::-;25409:24;25427:5;25409:24;:::i;:::-;25402:5;25399:35;25389:63;;25448:1;25445;25438:12;25389:63;25336:122;:::o;25464:118::-;25535:22;25551:5;25535:22;:::i;:::-;25528:5;25525:33;25515:61;;25572:1;25569;25562:12;25515:61;25464:118;:::o

Swarm Source

ipfs://2b5d8f42cab220cc1c8d68780a639dbee6b2816d27042453095708811205d0cd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.