ETH Price: $3,418.53 (-0.76%)
Gas: 2 Gwei

Token

LANDWOLF (LANDWOLF)
 

Overview

Max Total Supply

420,000,000,000,000 LANDWOLF

Holders

991

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
MEV Bot: 0x8a3...008
Balance
0.000000000000000001 LANDWOLF

Value
$0.00
0x8A3C015E80567Ba1e6eE5DbEea775e40EF90C008
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:
Landwolf

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-06
*/

/**
t.me/LandWolfMeme
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev 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/[email protected]


// OpenZeppelin Contracts v4.4.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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 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/LandWolfToken.sol



pragma solidity ^0.8.0;


contract Landwolf is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("LANDWOLF", "LANDWOLF") {
        _mint(msg.sender, _totalSupply);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801561000f575f80fd5b50604051612eb0380380612eb0833981810160405281019061003191906106b2565b6040518060400160405280600881526020017f4c414e44574f4c460000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4c414e44574f4c460000000000000000000000000000000000000000000000008152506100b96100ae6100f160201b60201c565b6100f860201b60201c565b81600490816100c8919061090e565b5080600590816100d8919061090e565b5050506100eb33826101b960201b60201c565b50610c15565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021e90610a37565b60405180910390fd5b6102385f838361031d60201b60201c565b8060035f8282546102499190610a82565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461029c9190610a82565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103009190610ac4565b60405180910390a36103195f838361060960201b60201c565b5050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156103bb5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6103fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f190610b27565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105115761045c61060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806104cd575061049e61060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61050c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050390610b8f565b60405180910390fd5b610604565b60065f9054906101000a900460ff168015610578575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561060357600754816105908461063560201b60201c565b61059a9190610a82565b111580156105c35750600854816105b68461063560201b60201c565b6105c09190610a82565b10155b610602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f990610bf7565b60405180910390fd5b5b5b505050565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80fd5b5f819050919050565b6106918161067f565b811461069b575f80fd5b50565b5f815190506106ac81610688565b92915050565b5f602082840312156106c7576106c661067b565b5b5f6106d48482850161069e565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061075857607f821691505b60208210810361076b5761076a610714565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610792565b6107d78683610792565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61081261080d6108088461067f565b6107ef565b61067f565b9050919050565b5f819050919050565b61082b836107f8565b61083f61083782610819565b84845461079e565b825550505050565b5f90565b610853610847565b61085e818484610822565b505050565b5b81811015610881576108765f8261084b565b600181019050610864565b5050565b601f8211156108c65761089781610771565b6108a084610783565b810160208510156108af578190505b6108c36108bb85610783565b830182610863565b50505b505050565b5f82821c905092915050565b5f6108e65f19846008026108cb565b1980831691505092915050565b5f6108fe83836108d7565b9150826002028217905092915050565b610917826106dd565b67ffffffffffffffff8111156109305761092f6106e7565b5b61093a8254610741565b610945828285610885565b5f60209050601f831160018114610976575f8415610964578287015190505b61096e85826108f3565b8655506109d5565b601f19841661098486610771565b5f5b828110156109ab57848901518255600182019150602085019450602081019050610986565b868310156109c857848901516109c4601f8916826108d7565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610a21601f836109dd565b9150610a2c826109ed565b602082019050919050565b5f6020820190508181035f830152610a4e81610a15565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610a8c8261067f565b9150610a978361067f565b9250828201905080821115610aaf57610aae610a55565b5b92915050565b610abe8161067f565b82525050565b5f602082019050610ad75f830184610ab5565b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f610b11600b836109dd565b9150610b1c82610add565b602082019050919050565b5f6020820190508181035f830152610b3e81610b05565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f610b796016836109dd565b9150610b8482610b45565b602082019050919050565b5f6020820190508181035f830152610ba681610b6d565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f610be16006836109dd565b9150610bec82610bad565b602082019050919050565b5f6020820190508181035f830152610c0e81610bd5565b9050919050565b61228e80610c225f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c806349bd5a5e116100b65780638da5cb5b1161007a5780638da5cb5b1461036457806395d89b4114610382578063a457c2d7146103a0578063a9059cbb146103d0578063dd62ed3e14610400578063f2fde38b1461043057610140565b806349bd5a5e146102d057806370a08231146102ee578063715018a61461031e578063860a32ec1461032857806389f9a1d31461034657610140565b806323b872dd1161010857806323b872dd146101fe578063313ce5671461022e578063395093511461024c5780633aa633aa1461027c578063404e51291461029857806342966c68146102b457610140565b806306fdde0314610144578063095ea7b31461016257806316c021291461019257806318160ddd146101c25780631ab99e12146101e0575b5f80fd5b61014c61044c565b60405161015991906116e6565b60405180910390f35b61017c60048036038101906101779190611797565b6104dc565b60405161018991906117ef565b60405180910390f35b6101ac60048036038101906101a79190611808565b6104f9565b6040516101b991906117ef565b60405180910390f35b6101ca610516565b6040516101d79190611842565b60405180910390f35b6101e861051f565b6040516101f59190611842565b60405180910390f35b6102186004803603810190610213919061185b565b610525565b60405161022591906117ef565b60405180910390f35b610236610617565b60405161024391906118c6565b60405180910390f35b61026660048036038101906102619190611797565b61061f565b60405161027391906117ef565b60405180910390f35b61029660048036038101906102919190611909565b6106c6565b005b6102b260048036038101906102ad919061196d565b6107af565b005b6102ce60048036038101906102c991906119ab565b610883565b005b6102d8610890565b6040516102e591906119e5565b60405180910390f35b61030860048036038101906103039190611808565b6108b5565b6040516103159190611842565b60405180910390f35b6103266108fb565b005b610330610982565b60405161033d91906117ef565b60405180910390f35b61034e610994565b60405161035b9190611842565b60405180910390f35b61036c61099a565b60405161037991906119e5565b60405180910390f35b61038a6109c1565b60405161039791906116e6565b60405180910390f35b6103ba60048036038101906103b59190611797565b610a51565b6040516103c791906117ef565b60405180910390f35b6103ea60048036038101906103e59190611797565b610b37565b6040516103f791906117ef565b60405180910390f35b61041a600480360381019061041591906119fe565b610b54565b6040516104279190611842565b60405180910390f35b61044a60048036038101906104459190611808565b610bd6565b005b60606004805461045b90611a69565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611a69565b80156104d25780601f106104a9576101008083540402835291602001916104d2565b820191905f5260205f20905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b5f6104ef6104e8610ccc565b8484610cd3565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f610531848484610e96565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610578610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611b09565b60405180910390fd5b61060b85610603610ccc565b858403610cd3565b60019150509392505050565b5f6012905090565b5f6106bc61062b610ccc565b848460025f610638610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106b79190611b54565b610cd3565b6001905092915050565b6106ce610ccc565b73ffffffffffffffffffffffffffffffffffffffff166106ec61099a565b73ffffffffffffffffffffffffffffffffffffffff1614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990611bd1565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107b7610ccc565b73ffffffffffffffffffffffffffffffffffffffff166107d561099a565b73ffffffffffffffffffffffffffffffffffffffff161461082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290611bd1565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61088d338261110e565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610903610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661092161099a565b73ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90611bd1565b60405180910390fd5b6109805f6112dc565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109d090611a69565b80601f01602080910402602001604051908101604052809291908181526020018280546109fc90611a69565b8015610a475780601f10610a1e57610100808354040283529160200191610a47565b820191905f5260205f20905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b5f8060025f610a5e610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611c5f565b60405180910390fd5b610b2c610b23610ccc565b85858403610cd3565b600191505092915050565b5f610b4a610b43610ccc565b8484610e96565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610bde610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610bfc61099a565b73ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611bd1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611ced565b60405180910390fd5b610cc9816112dc565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890611d7b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690611e09565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e899190611842565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611e97565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611f25565b60405180910390fd5b610f7d83838361139d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890611fb3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110919190611b54565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f59190611842565b60405180910390a3611108848484611671565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612041565b60405180910390fd5b611187825f8361139d565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906120cf565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461126091906120ed565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c49190611842565b60405180910390a36112d7835f84611671565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561143b5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061216a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611585576114d661099a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611541575061151261099a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906121d2565b60405180910390fd5b61166c565b60065f9054906101000a900460ff1680156115ec575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561166b57600754816115fe846108b5565b6116089190611b54565b1115801561162b57506008548161161e846108b5565b6116289190611b54565b10155b61166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061223a565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6116b882611676565b6116c28185611680565b93506116d2818560208601611690565b6116db8161169e565b840191505092915050565b5f6020820190508181035f8301526116fe81846116ae565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117338261170a565b9050919050565b61174381611729565b811461174d575f80fd5b50565b5f8135905061175e8161173a565b92915050565b5f819050919050565b61177681611764565b8114611780575f80fd5b50565b5f813590506117918161176d565b92915050565b5f80604083850312156117ad576117ac611706565b5b5f6117ba85828601611750565b92505060206117cb85828601611783565b9150509250929050565b5f8115159050919050565b6117e9816117d5565b82525050565b5f6020820190506118025f8301846117e0565b92915050565b5f6020828403121561181d5761181c611706565b5b5f61182a84828501611750565b91505092915050565b61183c81611764565b82525050565b5f6020820190506118555f830184611833565b92915050565b5f805f6060848603121561187257611871611706565b5b5f61187f86828701611750565b935050602061189086828701611750565b92505060406118a186828701611783565b9150509250925092565b5f60ff82169050919050565b6118c0816118ab565b82525050565b5f6020820190506118d95f8301846118b7565b92915050565b6118e8816117d5565b81146118f2575f80fd5b50565b5f81359050611903816118df565b92915050565b5f805f806080858703121561192157611920611706565b5b5f61192e878288016118f5565b945050602061193f87828801611750565b935050604061195087828801611783565b925050606061196187828801611783565b91505092959194509250565b5f806040838503121561198357611982611706565b5b5f61199085828601611750565b92505060206119a1858286016118f5565b9150509250929050565b5f602082840312156119c0576119bf611706565b5b5f6119cd84828501611783565b91505092915050565b6119df81611729565b82525050565b5f6020820190506119f85f8301846119d6565b92915050565b5f8060408385031215611a1457611a13611706565b5b5f611a2185828601611750565b9250506020611a3285828601611750565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a8057607f821691505b602082108103611a9357611a92611a3c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611af3602883611680565b9150611afe82611a99565b604082019050919050565b5f6020820190508181035f830152611b2081611ae7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b5e82611764565b9150611b6983611764565b9250828201905080821115611b8157611b80611b27565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bbb602083611680565b9150611bc682611b87565b602082019050919050565b5f6020820190508181035f830152611be881611baf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c49602583611680565b9150611c5482611bef565b604082019050919050565b5f6020820190508181035f830152611c7681611c3d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611cd7602683611680565b9150611ce282611c7d565b604082019050919050565b5f6020820190508181035f830152611d0481611ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d65602483611680565b9150611d7082611d0b565b604082019050919050565b5f6020820190508181035f830152611d9281611d59565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611df3602283611680565b9150611dfe82611d99565b604082019050919050565b5f6020820190508181035f830152611e2081611de7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e81602583611680565b9150611e8c82611e27565b604082019050919050565b5f6020820190508181035f830152611eae81611e75565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f0f602383611680565b9150611f1a82611eb5565b604082019050919050565b5f6020820190508181035f830152611f3c81611f03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f9d602683611680565b9150611fa882611f43565b604082019050919050565b5f6020820190508181035f830152611fca81611f91565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61202b602183611680565b915061203682611fd1565b604082019050919050565b5f6020820190508181035f8301526120588161201f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120b9602283611680565b91506120c48261205f565b604082019050919050565b5f6020820190508181035f8301526120e6816120ad565b9050919050565b5f6120f782611764565b915061210283611764565b925082820390508181111561211a57612119611b27565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612154600b83611680565b915061215f82612120565b602082019050919050565b5f6020820190508181035f83015261218181612148565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6121bc601683611680565b91506121c782612188565b602082019050919050565b5f6020820190508181035f8301526121e9816121b0565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f612224600683611680565b915061222f826121f0565b602082019050919050565b5f6020820190508181035f83015261225181612218565b905091905056fea26469706673582212204c98e2c73f4a3585e64eb665ab78419469a672553e297e40623a9b55a1199ded64736f6c6343000819003300000000000000000000000000000000000014b5253145b397d6545100000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c806349bd5a5e116100b65780638da5cb5b1161007a5780638da5cb5b1461036457806395d89b4114610382578063a457c2d7146103a0578063a9059cbb146103d0578063dd62ed3e14610400578063f2fde38b1461043057610140565b806349bd5a5e146102d057806370a08231146102ee578063715018a61461031e578063860a32ec1461032857806389f9a1d31461034657610140565b806323b872dd1161010857806323b872dd146101fe578063313ce5671461022e578063395093511461024c5780633aa633aa1461027c578063404e51291461029857806342966c68146102b457610140565b806306fdde0314610144578063095ea7b31461016257806316c021291461019257806318160ddd146101c25780631ab99e12146101e0575b5f80fd5b61014c61044c565b60405161015991906116e6565b60405180910390f35b61017c60048036038101906101779190611797565b6104dc565b60405161018991906117ef565b60405180910390f35b6101ac60048036038101906101a79190611808565b6104f9565b6040516101b991906117ef565b60405180910390f35b6101ca610516565b6040516101d79190611842565b60405180910390f35b6101e861051f565b6040516101f59190611842565b60405180910390f35b6102186004803603810190610213919061185b565b610525565b60405161022591906117ef565b60405180910390f35b610236610617565b60405161024391906118c6565b60405180910390f35b61026660048036038101906102619190611797565b61061f565b60405161027391906117ef565b60405180910390f35b61029660048036038101906102919190611909565b6106c6565b005b6102b260048036038101906102ad919061196d565b6107af565b005b6102ce60048036038101906102c991906119ab565b610883565b005b6102d8610890565b6040516102e591906119e5565b60405180910390f35b61030860048036038101906103039190611808565b6108b5565b6040516103159190611842565b60405180910390f35b6103266108fb565b005b610330610982565b60405161033d91906117ef565b60405180910390f35b61034e610994565b60405161035b9190611842565b60405180910390f35b61036c61099a565b60405161037991906119e5565b60405180910390f35b61038a6109c1565b60405161039791906116e6565b60405180910390f35b6103ba60048036038101906103b59190611797565b610a51565b6040516103c791906117ef565b60405180910390f35b6103ea60048036038101906103e59190611797565b610b37565b6040516103f791906117ef565b60405180910390f35b61041a600480360381019061041591906119fe565b610b54565b6040516104279190611842565b60405180910390f35b61044a60048036038101906104459190611808565b610bd6565b005b60606004805461045b90611a69565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611a69565b80156104d25780601f106104a9576101008083540402835291602001916104d2565b820191905f5260205f20905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b5f6104ef6104e8610ccc565b8484610cd3565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f610531848484610e96565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610578610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611b09565b60405180910390fd5b61060b85610603610ccc565b858403610cd3565b60019150509392505050565b5f6012905090565b5f6106bc61062b610ccc565b848460025f610638610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106b79190611b54565b610cd3565b6001905092915050565b6106ce610ccc565b73ffffffffffffffffffffffffffffffffffffffff166106ec61099a565b73ffffffffffffffffffffffffffffffffffffffff1614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990611bd1565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107b7610ccc565b73ffffffffffffffffffffffffffffffffffffffff166107d561099a565b73ffffffffffffffffffffffffffffffffffffffff161461082b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082290611bd1565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61088d338261110e565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610903610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661092161099a565b73ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90611bd1565b60405180910390fd5b6109805f6112dc565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109d090611a69565b80601f01602080910402602001604051908101604052809291908181526020018280546109fc90611a69565b8015610a475780601f10610a1e57610100808354040283529160200191610a47565b820191905f5260205f20905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b5f8060025f610a5e610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611c5f565b60405180910390fd5b610b2c610b23610ccc565b85858403610cd3565b600191505092915050565b5f610b4a610b43610ccc565b8484610e96565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610bde610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610bfc61099a565b73ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611bd1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611ced565b60405180910390fd5b610cc9816112dc565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890611d7b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690611e09565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e899190611842565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611e97565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611f25565b60405180910390fd5b610f7d83838361139d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890611fb3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110919190611b54565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f59190611842565b60405180910390a3611108848484611671565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612041565b60405180910390fd5b611187825f8361139d565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906120cf565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461126091906120ed565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c49190611842565b60405180910390a36112d7835f84611671565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561143b5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061216a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611585576114d661099a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611541575061151261099a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906121d2565b60405180910390fd5b61166c565b60065f9054906101000a900460ff1680156115ec575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561166b57600754816115fe846108b5565b6116089190611b54565b1115801561162b57506008548161161e846108b5565b6116289190611b54565b10155b61166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061223a565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6116b882611676565b6116c28185611680565b93506116d2818560208601611690565b6116db8161169e565b840191505092915050565b5f6020820190508181035f8301526116fe81846116ae565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117338261170a565b9050919050565b61174381611729565b811461174d575f80fd5b50565b5f8135905061175e8161173a565b92915050565b5f819050919050565b61177681611764565b8114611780575f80fd5b50565b5f813590506117918161176d565b92915050565b5f80604083850312156117ad576117ac611706565b5b5f6117ba85828601611750565b92505060206117cb85828601611783565b9150509250929050565b5f8115159050919050565b6117e9816117d5565b82525050565b5f6020820190506118025f8301846117e0565b92915050565b5f6020828403121561181d5761181c611706565b5b5f61182a84828501611750565b91505092915050565b61183c81611764565b82525050565b5f6020820190506118555f830184611833565b92915050565b5f805f6060848603121561187257611871611706565b5b5f61187f86828701611750565b935050602061189086828701611750565b92505060406118a186828701611783565b9150509250925092565b5f60ff82169050919050565b6118c0816118ab565b82525050565b5f6020820190506118d95f8301846118b7565b92915050565b6118e8816117d5565b81146118f2575f80fd5b50565b5f81359050611903816118df565b92915050565b5f805f806080858703121561192157611920611706565b5b5f61192e878288016118f5565b945050602061193f87828801611750565b935050604061195087828801611783565b925050606061196187828801611783565b91505092959194509250565b5f806040838503121561198357611982611706565b5b5f61199085828601611750565b92505060206119a1858286016118f5565b9150509250929050565b5f602082840312156119c0576119bf611706565b5b5f6119cd84828501611783565b91505092915050565b6119df81611729565b82525050565b5f6020820190506119f85f8301846119d6565b92915050565b5f8060408385031215611a1457611a13611706565b5b5f611a2185828601611750565b9250506020611a3285828601611750565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a8057607f821691505b602082108103611a9357611a92611a3c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611af3602883611680565b9150611afe82611a99565b604082019050919050565b5f6020820190508181035f830152611b2081611ae7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b5e82611764565b9150611b6983611764565b9250828201905080821115611b8157611b80611b27565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bbb602083611680565b9150611bc682611b87565b602082019050919050565b5f6020820190508181035f830152611be881611baf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c49602583611680565b9150611c5482611bef565b604082019050919050565b5f6020820190508181035f830152611c7681611c3d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611cd7602683611680565b9150611ce282611c7d565b604082019050919050565b5f6020820190508181035f830152611d0481611ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d65602483611680565b9150611d7082611d0b565b604082019050919050565b5f6020820190508181035f830152611d9281611d59565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611df3602283611680565b9150611dfe82611d99565b604082019050919050565b5f6020820190508181035f830152611e2081611de7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e81602583611680565b9150611e8c82611e27565b604082019050919050565b5f6020820190508181035f830152611eae81611e75565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f0f602383611680565b9150611f1a82611eb5565b604082019050919050565b5f6020820190508181035f830152611f3c81611f03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f9d602683611680565b9150611fa882611f43565b604082019050919050565b5f6020820190508181035f830152611fca81611f91565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61202b602183611680565b915061203682611fd1565b604082019050919050565b5f6020820190508181035f8301526120588161201f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120b9602283611680565b91506120c48261205f565b604082019050919050565b5f6020820190508181035f8301526120e6816120ad565b9050919050565b5f6120f782611764565b915061210283611764565b925082820390508181111561211a57612119611b27565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612154600b83611680565b915061215f82612120565b602082019050919050565b5f6020820190508181035f83015261218181612148565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6121bc601683611680565b91506121c782612188565b602082019050919050565b5f6020820190508181035f8301526121e9816121b0565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f612224600683611680565b915061222f826121f0565b602082019050919050565b5f6020820190508181035f83015261225181612218565b905091905056fea26469706673582212204c98e2c73f4a3585e64eb665ab78419469a672553e297e40623a9b55a1199ded64736f6c63430008190033

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

00000000000000000000000000000000000014b5253145b397d6545100000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420000000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014b5253145b397d6545100000000


Deployed Bytecode Sourcemap

19377:1464:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9342:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11509:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19557:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10462:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19484:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12160:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10304:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13061:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19873:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19730:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20757:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19522:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10633:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2743:103;;;:::i;:::-;;19420:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19446:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2092:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9561:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13779:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10973:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11211:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3001:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9342:100;9396:13;9429:5;9422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9342:100;:::o;11509:169::-;11592:4;11609:39;11618:12;:10;:12::i;:::-;11632:7;11641:6;11609:8;:39::i;:::-;11666:4;11659:11;;11509:169;;;;:::o;19557:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10462:108::-;10523:7;10550:12;;10543:19;;10462:108;:::o;19484:31::-;;;;:::o;12160:492::-;12300:4;12317:36;12327:6;12335:9;12346:6;12317:9;:36::i;:::-;12366:24;12393:11;:19;12405:6;12393:19;;;;;;;;;;;;;;;:33;12413:12;:10;:12::i;:::-;12393:33;;;;;;;;;;;;;;;;12366:60;;12465:6;12445:16;:26;;12437:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12552:57;12561:6;12569:12;:10;:12::i;:::-;12602:6;12583:16;:25;12552:8;:57::i;:::-;12640:4;12633:11;;;12160:492;;;;;:::o;10304:93::-;10362:5;10387:2;10380:9;;10304:93;:::o;13061:215::-;13149:4;13166:80;13175:12;:10;:12::i;:::-;13189:7;13235:10;13198:11;:25;13210:12;:10;:12::i;:::-;13198:25;;;;;;;;;;;;;;;:34;13224:7;13198:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13166:8;:80::i;:::-;13264:4;13257:11;;13061:215;;;;:::o;19873:301::-;2323:12;:10;:12::i;:::-;2312:23;;:7;:5;:7::i;:::-;:23;;;2304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20023:8:::1;20013:7;;:18;;;;;;;;;;;;;;;;;;20058:14;20042:13;;:30;;;;;;;;;;;;;;;;;;20102:17;20083:16;:36;;;;20149:17;20130:16;:36;;;;19873:301:::0;;;;:::o;19730:135::-;2323:12;:10;:12::i;:::-;2312:23;;:7;:5;:7::i;:::-;:23;;;2304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19842:15:::1;19819:10;:20;19830:8;19819:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;19730:135:::0;;:::o;20757:81::-;20806:24;20812:10;20824:5;20806;:24::i;:::-;20757:81;:::o;19522:28::-;;;;;;;;;;;;;:::o;10633:127::-;10707:7;10734:9;:18;10744:7;10734:18;;;;;;;;;;;;;;;;10727:25;;10633:127;;;:::o;2743:103::-;2323:12;:10;:12::i;:::-;2312:23;;:7;:5;:7::i;:::-;:23;;;2304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2808:30:::1;2835:1;2808:18;:30::i;:::-;2743:103::o:0;19420:19::-;;;;;;;;;;;;;:::o;19446:31::-;;;;:::o;2092:87::-;2138:7;2165:6;;;;;;;;;;;2158:13;;2092:87;:::o;9561:104::-;9617:13;9650:7;9643:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9561:104;:::o;13779:413::-;13872:4;13889:24;13916:11;:25;13928:12;:10;:12::i;:::-;13916:25;;;;;;;;;;;;;;;:34;13942:7;13916:34;;;;;;;;;;;;;;;;13889:61;;13989:15;13969:16;:35;;13961:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14082:67;14091:12;:10;:12::i;:::-;14105:7;14133:15;14114:16;:34;14082:8;:67::i;:::-;14180:4;14173:11;;;13779:413;;;;:::o;10973:175::-;11059:4;11076:42;11086:12;:10;:12::i;:::-;11100:9;11111:6;11076:9;:42::i;:::-;11136:4;11129:11;;10973:175;;;;:::o;11211:151::-;11300:7;11327:11;:18;11339:5;11327:18;;;;;;;;;;;;;;;:27;11346:7;11327:27;;;;;;;;;;;;;;;;11320:34;;11211:151;;;;:::o;3001:201::-;2323:12;:10;:12::i;:::-;2312:23;;:7;:5;:7::i;:::-;:23;;;2304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3110:1:::1;3090:22;;:8;:22;;::::0;3082:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3166:28;3185:8;3166:18;:28::i;:::-;3001:201:::0;:::o;810:98::-;863:7;890:10;883:17;;810:98;:::o;17463:380::-;17616:1;17599:19;;:5;:19;;;17591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17697:1;17678:21;;:7;:21;;;17670:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17781:6;17751:11;:18;17763:5;17751:18;;;;;;;;;;;;;;;:27;17770:7;17751:27;;;;;;;;;;;;;;;:36;;;;17819:7;17803:32;;17812:5;17803:32;;;17828:6;17803:32;;;;;;:::i;:::-;;;;;;;;17463:380;;;:::o;14682:733::-;14840:1;14822:20;;:6;:20;;;14814:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14924:1;14903:23;;:9;:23;;;14895:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14979:47;15000:6;15008:9;15019:6;14979:20;:47::i;:::-;15039:21;15063:9;:17;15073:6;15063:17;;;;;;;;;;;;;;;;15039:41;;15116:6;15099:13;:23;;15091:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15237:6;15221:13;:22;15201:9;:17;15211:6;15201:17;;;;;;;;;;;;;;;:42;;;;15289:6;15265:9;:20;15275:9;15265:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15330:9;15313:35;;15322:6;15313:35;;;15341:6;15313:35;;;;;;:::i;:::-;;;;;;;;15361:46;15381:6;15389:9;15400:6;15361:19;:46::i;:::-;14803:612;14682:733;;;:::o;16434:591::-;16537:1;16518:21;;:7;:21;;;16510:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16590:49;16611:7;16628:1;16632:6;16590:20;:49::i;:::-;16652:22;16677:9;:18;16687:7;16677:18;;;;;;;;;;;;;;;;16652:43;;16732:6;16714:14;:24;;16706:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16851:6;16834:14;:23;16813:9;:18;16823:7;16813:18;;;;;;;;;;;;;;;:44;;;;16895:6;16879:12;;:22;;;;;;;:::i;:::-;;;;;;;;16945:1;16919:37;;16928:7;16919:37;;;16949:6;16919:37;;;;;;:::i;:::-;;;;;;;;16969:48;16989:7;17006:1;17010:6;16969:19;:48::i;:::-;16499:526;16434:591;;:::o;3362:191::-;3436:16;3455:6;;;;;;;;;;;3436:25;;3481:8;3472:6;;:17;;;;;;;;;;;;;;;;;;3536:8;3505:40;;3526:8;3505:40;;;;;;;;;;;;3425:128;3362:191;:::o;20182:567::-;20334:10;:14;20345:2;20334:14;;;;;;;;;;;;;;;;;;;;;;;;;20333:15;:36;;;;;20353:10;:16;20364:4;20353:16;;;;;;;;;;;;;;;;;;;;;;;;;20352:17;20333:36;20325:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20427:1;20402:27;;:13;;;;;;;;;;;:27;;;20398:148;;20462:7;:5;:7::i;:::-;20454:15;;:4;:15;;;:32;;;;20479:7;:5;:7::i;:::-;20473:13;;:2;:13;;;20454:32;20446:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20528:7;;20398:148;20562:7;;;;;;;;;;;:32;;;;;20581:13;;;;;;;;;;;20573:21;;:4;:21;;;20562:32;20558:184;;;20651:16;;20641:6;20619:19;20635:2;20619:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20703:16;;20693:6;20671:19;20687:2;20671:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20619:100;20611:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20558:184;20182:567;;;;:::o;19172:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:116::-;5151:21;5166:5;5151:21;:::i;:::-;5144:5;5141:32;5131:60;;5187:1;5184;5177:12;5131:60;5081:116;:::o;5203:133::-;5246:5;5284:6;5271:20;5262:29;;5300:30;5324:5;5300:30;:::i;:::-;5203:133;;;;:::o;5342:759::-;5425:6;5433;5441;5449;5498:3;5486:9;5477:7;5473:23;5469:33;5466:120;;;5505:79;;:::i;:::-;5466:120;5625:1;5650:50;5692:7;5683:6;5672:9;5668:22;5650:50;:::i;:::-;5640:60;;5596:114;5749:2;5775:53;5820:7;5811:6;5800:9;5796:22;5775:53;:::i;:::-;5765:63;;5720:118;5877:2;5903:53;5948:7;5939:6;5928:9;5924:22;5903:53;:::i;:::-;5893:63;;5848:118;6005:2;6031:53;6076:7;6067:6;6056:9;6052:22;6031:53;:::i;:::-;6021:63;;5976:118;5342:759;;;;;;;:::o;6107:468::-;6172:6;6180;6229:2;6217:9;6208:7;6204:23;6200:32;6197:119;;;6235:79;;:::i;:::-;6197:119;6355:1;6380:53;6425:7;6416:6;6405:9;6401:22;6380:53;:::i;:::-;6370:63;;6326:117;6482:2;6508:50;6550:7;6541:6;6530:9;6526:22;6508:50;:::i;:::-;6498:60;;6453:115;6107:468;;;;;:::o;6581:329::-;6640:6;6689:2;6677:9;6668:7;6664:23;6660:32;6657:119;;;6695:79;;:::i;:::-;6657:119;6815:1;6840:53;6885:7;6876:6;6865:9;6861:22;6840:53;:::i;:::-;6830:63;;6786:117;6581:329;;;;:::o;6916:118::-;7003:24;7021:5;7003:24;:::i;:::-;6998:3;6991:37;6916:118;;:::o;7040:222::-;7133:4;7171:2;7160:9;7156:18;7148:26;;7184:71;7252:1;7241:9;7237:17;7228:6;7184:71;:::i;:::-;7040:222;;;;:::o;7268:474::-;7336:6;7344;7393:2;7381:9;7372:7;7368:23;7364:32;7361:119;;;7399:79;;:::i;:::-;7361:119;7519:1;7544:53;7589:7;7580:6;7569:9;7565:22;7544:53;:::i;:::-;7534:63;;7490:117;7646:2;7672:53;7717:7;7708:6;7697:9;7693:22;7672:53;:::i;:::-;7662:63;;7617:118;7268:474;;;;;:::o;7748:180::-;7796:77;7793:1;7786:88;7893:4;7890:1;7883:15;7917:4;7914:1;7907:15;7934:320;7978:6;8015:1;8009:4;8005:12;7995:22;;8062:1;8056:4;8052:12;8083:18;8073:81;;8139:4;8131:6;8127:17;8117:27;;8073:81;8201:2;8193:6;8190:14;8170:18;8167:38;8164:84;;8220:18;;:::i;:::-;8164:84;7985:269;7934:320;;;:::o;8260:227::-;8400:34;8396:1;8388:6;8384:14;8377:58;8469:10;8464:2;8456:6;8452:15;8445:35;8260:227;:::o;8493:366::-;8635:3;8656:67;8720:2;8715:3;8656:67;:::i;:::-;8649:74;;8732:93;8821:3;8732:93;:::i;:::-;8850:2;8845:3;8841:12;8834:19;;8493:366;;;:::o;8865:419::-;9031:4;9069:2;9058:9;9054:18;9046:26;;9118:9;9112:4;9108:20;9104:1;9093:9;9089:17;9082:47;9146:131;9272:4;9146:131;:::i;:::-;9138:139;;8865:419;;;:::o;9290:180::-;9338:77;9335:1;9328:88;9435:4;9432:1;9425:15;9459:4;9456:1;9449:15;9476:191;9516:3;9535:20;9553:1;9535:20;:::i;:::-;9530:25;;9569:20;9587:1;9569:20;:::i;:::-;9564:25;;9612:1;9609;9605:9;9598:16;;9633:3;9630:1;9627:10;9624:36;;;9640:18;;:::i;:::-;9624:36;9476:191;;;;:::o;9673:182::-;9813:34;9809:1;9801:6;9797:14;9790:58;9673:182;:::o;9861:366::-;10003:3;10024:67;10088:2;10083:3;10024:67;:::i;:::-;10017:74;;10100:93;10189:3;10100:93;:::i;:::-;10218:2;10213:3;10209:12;10202:19;;9861:366;;;:::o;10233:419::-;10399:4;10437:2;10426:9;10422:18;10414:26;;10486:9;10480:4;10476:20;10472:1;10461:9;10457:17;10450:47;10514:131;10640:4;10514:131;:::i;:::-;10506:139;;10233:419;;;:::o;10658:224::-;10798:34;10794:1;10786:6;10782:14;10775:58;10867:7;10862:2;10854:6;10850:15;10843:32;10658:224;:::o;10888:366::-;11030:3;11051:67;11115:2;11110:3;11051:67;:::i;:::-;11044:74;;11127:93;11216:3;11127:93;:::i;:::-;11245:2;11240:3;11236:12;11229:19;;10888:366;;;:::o;11260:419::-;11426:4;11464:2;11453:9;11449:18;11441:26;;11513:9;11507:4;11503:20;11499:1;11488:9;11484:17;11477:47;11541:131;11667:4;11541:131;:::i;:::-;11533:139;;11260:419;;;:::o;11685:225::-;11825:34;11821:1;11813:6;11809:14;11802:58;11894:8;11889:2;11881:6;11877:15;11870:33;11685:225;:::o;11916:366::-;12058:3;12079:67;12143:2;12138:3;12079:67;:::i;:::-;12072:74;;12155:93;12244:3;12155:93;:::i;:::-;12273:2;12268:3;12264:12;12257:19;;11916:366;;;:::o;12288:419::-;12454:4;12492:2;12481:9;12477:18;12469:26;;12541:9;12535:4;12531:20;12527:1;12516:9;12512:17;12505:47;12569:131;12695:4;12569:131;:::i;:::-;12561:139;;12288:419;;;:::o;12713:223::-;12853:34;12849:1;12841:6;12837:14;12830:58;12922:6;12917:2;12909:6;12905:15;12898:31;12713:223;:::o;12942:366::-;13084:3;13105:67;13169:2;13164:3;13105:67;:::i;:::-;13098:74;;13181:93;13270:3;13181:93;:::i;:::-;13299:2;13294:3;13290:12;13283:19;;12942:366;;;:::o;13314:419::-;13480:4;13518:2;13507:9;13503:18;13495:26;;13567:9;13561:4;13557:20;13553:1;13542:9;13538:17;13531:47;13595:131;13721:4;13595:131;:::i;:::-;13587:139;;13314:419;;;:::o;13739:221::-;13879:34;13875:1;13867:6;13863:14;13856:58;13948:4;13943:2;13935:6;13931:15;13924:29;13739:221;:::o;13966:366::-;14108:3;14129:67;14193:2;14188:3;14129:67;:::i;:::-;14122:74;;14205:93;14294:3;14205:93;:::i;:::-;14323:2;14318:3;14314:12;14307:19;;13966:366;;;:::o;14338:419::-;14504:4;14542:2;14531:9;14527:18;14519:26;;14591:9;14585:4;14581:20;14577:1;14566:9;14562:17;14555:47;14619:131;14745:4;14619:131;:::i;:::-;14611:139;;14338:419;;;:::o;14763:224::-;14903:34;14899:1;14891:6;14887:14;14880:58;14972:7;14967:2;14959:6;14955:15;14948:32;14763:224;:::o;14993:366::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:419::-;15531:4;15569:2;15558:9;15554:18;15546:26;;15618:9;15612:4;15608:20;15604:1;15593:9;15589:17;15582:47;15646:131;15772:4;15646:131;:::i;:::-;15638:139;;15365:419;;;:::o;15790:222::-;15930:34;15926:1;15918:6;15914:14;15907:58;15999:5;15994:2;15986:6;15982:15;15975:30;15790:222;:::o;16018:366::-;16160:3;16181:67;16245:2;16240:3;16181:67;:::i;:::-;16174:74;;16257:93;16346:3;16257:93;:::i;:::-;16375:2;16370:3;16366:12;16359:19;;16018:366;;;:::o;16390:419::-;16556:4;16594:2;16583:9;16579:18;16571:26;;16643:9;16637:4;16633:20;16629:1;16618:9;16614:17;16607:47;16671:131;16797:4;16671:131;:::i;:::-;16663:139;;16390:419;;;:::o;16815:225::-;16955:34;16951:1;16943:6;16939:14;16932:58;17024:8;17019:2;17011:6;17007:15;17000:33;16815:225;:::o;17046:366::-;17188:3;17209:67;17273:2;17268:3;17209:67;:::i;:::-;17202:74;;17285:93;17374:3;17285:93;:::i;:::-;17403:2;17398:3;17394:12;17387:19;;17046:366;;;:::o;17418:419::-;17584:4;17622:2;17611:9;17607:18;17599:26;;17671:9;17665:4;17661:20;17657:1;17646:9;17642:17;17635:47;17699:131;17825:4;17699:131;:::i;:::-;17691:139;;17418:419;;;:::o;17843:220::-;17983:34;17979:1;17971:6;17967:14;17960:58;18052:3;18047:2;18039:6;18035:15;18028:28;17843:220;:::o;18069:366::-;18211:3;18232:67;18296:2;18291:3;18232:67;:::i;:::-;18225:74;;18308:93;18397:3;18308:93;:::i;:::-;18426:2;18421:3;18417:12;18410:19;;18069:366;;;:::o;18441:419::-;18607:4;18645:2;18634:9;18630:18;18622:26;;18694:9;18688:4;18684:20;18680:1;18669:9;18665:17;18658:47;18722:131;18848:4;18722:131;:::i;:::-;18714:139;;18441:419;;;:::o;18866:221::-;19006:34;19002:1;18994:6;18990:14;18983:58;19075:4;19070:2;19062:6;19058:15;19051:29;18866:221;:::o;19093:366::-;19235:3;19256:67;19320:2;19315:3;19256:67;:::i;:::-;19249:74;;19332:93;19421:3;19332:93;:::i;:::-;19450:2;19445:3;19441:12;19434:19;;19093:366;;;:::o;19465:419::-;19631:4;19669:2;19658:9;19654:18;19646:26;;19718:9;19712:4;19708:20;19704:1;19693:9;19689:17;19682:47;19746:131;19872:4;19746:131;:::i;:::-;19738:139;;19465:419;;;:::o;19890:194::-;19930:4;19950:20;19968:1;19950:20;:::i;:::-;19945:25;;19984:20;20002:1;19984:20;:::i;:::-;19979:25;;20028:1;20025;20021:9;20013:17;;20052:1;20046:4;20043:11;20040:37;;;20057:18;;:::i;:::-;20040:37;19890:194;;;;:::o;20090:161::-;20230:13;20226:1;20218:6;20214:14;20207:37;20090:161;:::o;20257:366::-;20399:3;20420:67;20484:2;20479:3;20420:67;:::i;:::-;20413:74;;20496:93;20585:3;20496:93;:::i;:::-;20614:2;20609:3;20605:12;20598:19;;20257:366;;;:::o;20629:419::-;20795:4;20833:2;20822:9;20818:18;20810:26;;20882:9;20876:4;20872:20;20868:1;20857:9;20853:17;20846:47;20910:131;21036:4;20910:131;:::i;:::-;20902:139;;20629:419;;;:::o;21054:172::-;21194:24;21190:1;21182:6;21178:14;21171:48;21054:172;:::o;21232:366::-;21374:3;21395:67;21459:2;21454:3;21395:67;:::i;:::-;21388:74;;21471:93;21560:3;21471:93;:::i;:::-;21589:2;21584:3;21580:12;21573:19;;21232:366;;;:::o;21604:419::-;21770:4;21808:2;21797:9;21793:18;21785:26;;21857:9;21851:4;21847:20;21843:1;21832:9;21828:17;21821:47;21885:131;22011:4;21885:131;:::i;:::-;21877:139;;21604:419;;;:::o;22029:156::-;22169:8;22165:1;22157:6;22153:14;22146:32;22029:156;:::o;22191:365::-;22333:3;22354:66;22418:1;22413:3;22354:66;:::i;:::-;22347:73;;22429:93;22518:3;22429:93;:::i;:::-;22547:2;22542:3;22538:12;22531:19;;22191:365;;;:::o;22562:419::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o

Swarm Source

ipfs://4c98e2c73f4a3585e64eb665ab78419469a672553e297e40623a9b55a1199ded
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.