ETH Price: $2,861.35 (-9.61%)
Gas: 9 Gwei

Token

Wochang (WOCHANG)
 

Overview

Max Total Supply

10,000,000,000 WOCHANG

Holders

104

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
103,776,940.113616577912894781 WOCHANG

Value
$0.00
0x7625b2c97602acaa1070bd6096219e4c1a90fd65
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:
Wochang

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-18
*/

/**

http://t.me/Wochangportal

*/


// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// 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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @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);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// 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);


    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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the 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;
        }
    }
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract Wochang is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

	address public charityWallet;
    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
	uint256 public buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
	uint256 public sellCharityFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForCharity;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Wochang", "WOCHANG") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

		uint256 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 20;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 20;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 10000000000 * 1e18;

        maxTransactionAmount = 200000000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 200000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% swap wallet

		buyCharityFee = _buyCharityFee;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;

		sellCharityFee = _sellCharityFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;

		charityWallet = address(0x5050ab653fCB26C485CDb5227040A24C93Ff8950); 
        marketingWallet = address(0x5050ab653fCB26C485CDb5227040A24C93Ff8950); 
        devWallet = address(0xB6C2bD67B0c76Ea1c40458E77b9D22414c1bdE48); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 99, "Max SellFee 99% to trick bots");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCharity + tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

		uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
		tokensForCharity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");
        (success, ) = address(marketingWallet).call{value: ethForMarketing}("");


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(charityWallet).call{value: address(this).balance}("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b5060405180604001604052806007815260200166576f6368616e6760c81b81525060405180604001604052806007815260200166574f4348414e4760c81b815250816003908051906020019062000089929190620006c1565b5080516200009f906004906020840190620006c1565b505050620000bc620000b66200040e60201b60201c565b62000412565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000de81600162000464565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000129573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014f919062000767565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c3919062000767565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000211573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000237919062000767565b6001600160a01b031660a08190526200025290600162000464565b60a05162000262906001620004de565b6aa56fa5b99019a5c80000006009819055600b55600060148180808381806b204fce5e3e250261100000006127106200029d826028620007af565b620002a99190620007d1565b600a5560108990556011889055601287905560138690558587620002ce8a8c620007f4565b620002da9190620007f4565b620002e69190620007f4565b600f55601585905560168490556017839055601882905581836200030b8688620007f4565b620003179190620007f4565b620003239190620007f4565b601455600680546001600160a01b0319908116735050ab653fcb26c485cdb5227040a24c93ff89509081179092556007805482169092179091556008805490911673b6c2bd67b0c76ea1c40458e77b9d22414c1bde481790556200039b620003936005546001600160a01b031690565b600162000532565b620003a830600162000532565b620003b761dead600162000532565b620003d6620003ce6005546001600160a01b031690565b600162000464565b620003e330600162000464565b620003f261dead600162000464565b620003fe3382620005dc565b505050505050505050506200084c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004b35760405162461bcd60e51b815260206004820181905260248201526000805160206200334483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200057d5760405162461bcd60e51b81526020600482018190526024820152600080516020620033448339815191526044820152606401620004aa565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006345760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004aa565b8060026000828254620006489190620007f4565b90915550506001600160a01b0382166000908152602081905260408120805483929062000677908490620007f4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006cf906200080f565b90600052602060002090601f016020900481019282620006f357600085556200073e565b82601f106200070e57805160ff19168380011785556200073e565b828001600101855582156200073e579182015b828111156200073e57825182559160200191906001019062000721565b506200074c92915062000750565b5090565b5b808211156200074c576000815560010162000751565b6000602082840312156200077a57600080fd5b81516001600160a01b03811681146200079257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007cc57620007cc62000799565b500290565b600082620007ef57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200080a576200080a62000799565b500190565b600181811c908216806200082457607f821691505b602082108114156200084657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a9a620008aa6000396000818161059301528181610f1401526117c801526000818161043c0152818161178a015281816123ed015281816124a6015281816124e20152818161255c01526125c40152612a9a6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d3146109f0578063f2fde38b14610a06578063f637434214610a26578063f8b45b0514610a3c57600080fd5b8063e2f45605146109a5578063e7ad9fcd146109bb578063e884f260146109db57600080fd5b8063c8c8ebe4116100d1578063c8c8ebe414610913578063d257b34f14610929578063d85ba06314610949578063dd62ed3e1461095f57600080fd5b8063c0246668146108b9578063c18bc195146108d9578063c876d0b9146108f957600080fd5b80639fccce3211610164578063a457c2d71161013e578063a457c2d71461082a578063a9059cbb1461084a578063b62496f51461086a578063bbc0c7421461089a57600080fd5b80639fccce32146107e8578063a0d82dc5146107fe578063a1dc92bc1461081457600080fd5b8063924de9b7116101a0578063924de9b71461077d57806395d89b411461079d5780639a7a23d6146107b25780639c3b4fdc146107d257600080fd5b80638da5cb5b146107295780638ea5220f14610747578063921369131461076757600080fd5b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106be5780637b208769146106de5780637bce5a04146106fe5780638a8c523c1461071457600080fd5b8063715018a614610674578063751039fc146106895780637571336a1461069e57600080fd5b80634fbee1931161027a5780634fbee193146105cf5780636a486a8e146106085780636ddd17131461061e57806370a082311461063e57600080fd5b806344249f041461056b57806349bd5a5e146105815780634a62bb65146105b557600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104f95780632e6ed7ef1461050f578063313ce5671461052f578063395093511461054b57600080fd5b80631f3fed8f146104a1578063203e727e146104b757806323b872dd146104d957600080fd5b806310d5de531161034957806310d5de53146103fa5780631694505e1461042a57806318160ddd146104765780631a8145bb1461048b57600080fd5b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a52565b60405161039d919061263c565b60405180910390f35b3480156103b257600080fd5b506103c66103c13660046126a6565b610ae4565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60155481565b60405190815260200161039d565b34801561040657600080fd5b506103c66104153660046126d2565b601e6020526000908152604090205460ff1681565b34801561043657600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b506002546103ec565b34801561049757600080fd5b506103ec601b5481565b3480156104ad57600080fd5b506103ec601a5481565b3480156104c357600080fd5b506104d76104d23660046126ef565b610afa565b005b3480156104e557600080fd5b506103c66104f4366004612708565b610be0565b34801561050557600080fd5b5061045e61dead81565b34801561051b57600080fd5b506104d761052a366004612749565b610c8a565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506103c66105663660046126a6565b610d52565b34801561057757600080fd5b506103ec60195481565b34801561058d57600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105c157600080fd5b50600c546103c69060ff1681565b3480156105db57600080fd5b506103c66105ea3660046126d2565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561061457600080fd5b506103ec60145481565b34801561062a57600080fd5b50600c546103c69062010000900460ff1681565b34801561064a57600080fd5b506103ec6106593660046126d2565b6001600160a01b031660009081526020819052604090205490565b34801561068057600080fd5b506104d7610d8e565b34801561069557600080fd5b506103c6610dc4565b3480156106aa57600080fd5b506104d76106b936600461278b565b610e01565b3480156106ca57600080fd5b5060075461045e906001600160a01b031681565b3480156106ea57600080fd5b5060065461045e906001600160a01b031681565b34801561070a57600080fd5b506103ec60115481565b34801561072057600080fd5b506104d7610e56565b34801561073557600080fd5b506005546001600160a01b031661045e565b34801561075357600080fd5b5060085461045e906001600160a01b031681565b34801561077357600080fd5b506103ec60165481565b34801561078957600080fd5b506104d76107983660046127c0565b610e93565b3480156107a957600080fd5b50610390610ed9565b3480156107be57600080fd5b506104d76107cd36600461278b565b610ee8565b3480156107de57600080fd5b506103ec60135481565b3480156107f457600080fd5b506103ec601c5481565b34801561080a57600080fd5b506103ec60185481565b34801561082057600080fd5b506103ec60105481565b34801561083657600080fd5b506103c66108453660046126a6565b610fc8565b34801561085657600080fd5b506103c66108653660046126a6565b611061565b34801561087657600080fd5b506103c66108853660046126d2565b601f6020526000908152604090205460ff1681565b3480156108a657600080fd5b50600c546103c690610100900460ff1681565b3480156108c557600080fd5b506104d76108d436600461278b565b61106e565b3480156108e557600080fd5b506104d76108f43660046126ef565b6110f7565b34801561090557600080fd5b50600e546103c69060ff1681565b34801561091f57600080fd5b506103ec60095481565b34801561093557600080fd5b506103c66109443660046126ef565b6111c8565b34801561095557600080fd5b506103ec600f5481565b34801561096b57600080fd5b506103ec61097a3660046127db565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b157600080fd5b506103ec600a5481565b3480156109c757600080fd5b506104d76109d6366004612749565b61131f565b3480156109e757600080fd5b506103c66113f6565b3480156109fc57600080fd5b506103ec60125481565b348015610a1257600080fd5b506104d7610a213660046126d2565b611433565b348015610a3257600080fd5b506103ec60175481565b348015610a4857600080fd5b506103ec600b5481565b606060038054610a6190612814565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612814565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610af13384846114ce565b50600192915050565b6005546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610b249061284f565b60405180910390fd5b670de0b6b3a76400006103e8610b4260025490565b610b4d90600561289a565b610b5791906128b9565b610b6191906128b9565b811015610bc85760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b24565b610bda81670de0b6b3a764000061289a565b60095550565b6000610bed8484846115f2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c725760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b24565b610c7f85338584036114ce565b506001949350505050565b6005546001600160a01b03163314610cb45760405162461bcd60e51b8152600401610b249061284f565b600a8183610cc286886128db565b610ccc91906128db565b610cd691906128db565b1115610d155760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b24565b60108490556011839055601282905560138190558082610d3585876128db565b610d3f91906128db565b610d4991906128db565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610af1918590610d899086906128db565b6114ce565b6005546001600160a01b03163314610db85760405162461bcd60e51b8152600401610b249061284f565b610dc26000611ea6565b565b6005546000906001600160a01b03163314610df15760405162461bcd60e51b8152600401610b249061284f565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e2b5760405162461bcd60e51b8152600401610b249061284f565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e805760405162461bcd60e51b8152600401610b249061284f565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610ebd5760405162461bcd60e51b8152600401610b249061284f565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a6190612814565b6005546001600160a01b03163314610f125760405162461bcd60e51b8152600401610b249061284f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610fba5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b24565b610fc48282611ef8565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561104a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b24565b61105733858584036114ce565b5060019392505050565b6000610af13384846115f2565b6005546001600160a01b031633146110985760405162461bcd60e51b8152600401610b249061284f565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111215760405162461bcd60e51b8152600401610b249061284f565b670de0b6b3a76400006103e861113660025490565b61114190600561289a565b61114b91906128b9565b61115591906128b9565b8110156111b05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b24565b6111c281670de0b6b3a764000061289a565b600b5550565b6005546000906001600160a01b031633146111f55760405162461bcd60e51b8152600401610b249061284f565b620186a061120260025490565b61120d90600161289a565b61121791906128b9565b8210156112845760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b24565b6103e861129060025490565b61129b90600561289a565b6112a591906128b9565b8211156113115760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b24565b50600a81905560015b919050565b6005546001600160a01b031633146113495760405162461bcd60e51b8152600401610b249061284f565b6063818361135786886128db565b61136191906128db565b61136b91906128db565b11156113b95760405162461bcd60e51b815260206004820152601d60248201527f4d61782053656c6c4665652039392520746f20747269636b20626f74730000006044820152606401610b24565b601584905560168390556017829055601881905580826113d985876128db565b6113e391906128db565b6113ed91906128db565b60145550505050565b6005546000906001600160a01b031633146114235760405162461bcd60e51b8152600401610b249061284f565b50600e805460ff19169055600190565b6005546001600160a01b0316331461145d5760405162461bcd60e51b8152600401610b249061284f565b6001600160a01b0381166114c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b24565b6114cb81611ea6565b50565b6001600160a01b0383166115305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b24565b6001600160a01b0382166115915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b24565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116185760405162461bcd60e51b8152600401610b24906128f3565b6001600160a01b03821661163e5760405162461bcd60e51b8152600401610b2490612938565b806116545761164f83836000611f4c565b505050565b600c5460ff1615611b11576005546001600160a01b0384811691161480159061168b57506005546001600160a01b03838116911614155b801561169f57506001600160a01b03821615155b80156116b657506001600160a01b03821661dead14155b80156116cc5750600554600160a01b900460ff16155b15611b1157600c54610100900460ff16611764576001600160a01b0383166000908152601d602052604090205460ff168061171f57506001600160a01b0382166000908152601d602052604090205460ff165b6117645760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b24565b600e5460ff16156118ab576005546001600160a01b038381169116148015906117bf57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117fd57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156118ab57326000908152600d602052604090205443116118985760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b24565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118ec57506001600160a01b0382166000908152601e602052604090205460ff16155b156119d0576009548111156119615760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b24565b600b546001600160a01b03831660009081526020819052604090205461198790836128db565b11156119cb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b611b11565b6001600160a01b0382166000908152601f602052604090205460ff168015611a1157506001600160a01b0383166000908152601e602052604090205460ff16155b15611a87576009548111156119cb5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b24565b6001600160a01b0382166000908152601e602052604090205460ff16611b1157600b546001600160a01b038316600090815260208190526040902054611acd90836128db565b1115611b115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b30600090815260208190526040902054600a5481108015908190611b3d5750600c5462010000900460ff165b8015611b535750600554600160a01b900460ff16155b8015611b7857506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b9d57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611bc257506001600160a01b0384166000908152601d602052604090205460ff16155b15611bf0576005805460ff60a01b1916600160a01b179055611be26120a1565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c3e57506001600160a01b0385166000908152601d602052604090205460ff165b15611c47575060005b60008115611e92576001600160a01b0386166000908152601f602052604090205460ff168015611c7957506000601454115b15611d6757611c9e6064611c986014548861236b90919063ffffffff16565b9061237e565b905060145460155482611cb1919061289a565b611cbb91906128b9565b60196000828254611ccc91906128db565b9091555050601454601754611ce1908361289a565b611ceb91906128b9565b601b6000828254611cfc91906128db565b9091555050601454601854611d11908361289a565b611d1b91906128b9565b601c6000828254611d2c91906128db565b9091555050601454601654611d41908361289a565b611d4b91906128b9565b601a6000828254611d5c91906128db565b90915550611e749050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d9157506000600f54115b15611e7457611db06064611c98600f548861236b90919063ffffffff16565b9050600f5460105482611dc3919061289a565b611dcd91906128b9565b60196000828254611dde91906128db565b9091555050600f54601254611df3908361289a565b611dfd91906128b9565b601b6000828254611e0e91906128db565b9091555050600f54601354611e23908361289a565b611e2d91906128b9565b601c6000828254611e3e91906128db565b9091555050600f54601154611e53908361289a565b611e5d91906128b9565b601a6000828254611e6e91906128db565b90915550505b8015611e8557611e85873083611f4c565b611e8f818661297b565b94505b611e9d878787611f4c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f725760405162461bcd60e51b8152600401610b24906128f3565b6001600160a01b038216611f985760405162461bcd60e51b8152600401610b2490612938565b6001600160a01b038316600090815260208190526040902054818110156120105760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b24565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120479084906128db565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161209391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120cb91906128db565b6120d591906128db565b6120df91906128db565b905060008215806120ee575081155b156120f857505050565b600a5461210690601461289a565b83111561211e57600a5461211b90601461289a565b92505b6000600283601b5486612131919061289a565b61213b91906128b9565b61214591906128b9565b90506000612153858361238a565b90504761215f82612396565b600061216b478361238a565b9050600061218887611c986019548561236b90919063ffffffff16565b905060006121a588611c98601a548661236b90919063ffffffff16565b905060006121c289611c98601c548761236b90919063ffffffff16565b9050600081836121d2868861297b565b6121dc919061297b565b6121e6919061297b565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612248576040519150601f19603f3d011682016040523d82523d6000602084013e61224d565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d806000811461229d576040519150601f19603f3d011682016040523d82523d6000602084013e6122a2565b606091505b509099505087158015906122b65750600081115b15612309576122c58882612556565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612356576040519150601f19603f3d011682016040523d82523d6000602084013e61235b565b606091505b5050505050505050505050505050565b6000612377828461289a565b9392505050565b600061237782846128b9565b6000612377828461297b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123cb576123cb612992565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d91906129a8565b8160018151811061248057612480612992565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f0000000000000000000000000000000000000000000000000000000000000000846114ce565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125209085906000908690309042906004016129c5565b600060405180830381600087803b15801561253a57600080fd5b505af115801561254e573d6000803e3d6000fd5b505050505050565b612581307f0000000000000000000000000000000000000000000000000000000000000000846114ce565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612610573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126359190612a36565b5050505050565b600060208083528351808285015260005b818110156126695785810183015185820160400152820161264d565b8181111561267b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114cb57600080fd5b600080604083850312156126b957600080fd5b82356126c481612691565b946020939093013593505050565b6000602082840312156126e457600080fd5b813561237781612691565b60006020828403121561270157600080fd5b5035919050565b60008060006060848603121561271d57600080fd5b833561272881612691565b9250602084013561273881612691565b929592945050506040919091013590565b6000806000806080858703121561275f57600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461131a57600080fd5b6000806040838503121561279e57600080fd5b82356127a981612691565b91506127b76020840161277b565b90509250929050565b6000602082840312156127d257600080fd5b6123778261277b565b600080604083850312156127ee57600080fd5b82356127f981612691565b9150602083013561280981612691565b809150509250929050565b600181811c9082168061282857607f821691505b6020821081141561284957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128b4576128b4612884565b500290565b6000826128d657634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128ee576128ee612884565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561298d5761298d612884565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156129ba57600080fd5b815161237781612691565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a155784516001600160a01b0316835293830193918301916001016129f0565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a4b57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205b2be8edc6792f721061120fad5dc94a2ea049036556bfe08e2780e9c9cf56a864736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d3146109f0578063f2fde38b14610a06578063f637434214610a26578063f8b45b0514610a3c57600080fd5b8063e2f45605146109a5578063e7ad9fcd146109bb578063e884f260146109db57600080fd5b8063c8c8ebe4116100d1578063c8c8ebe414610913578063d257b34f14610929578063d85ba06314610949578063dd62ed3e1461095f57600080fd5b8063c0246668146108b9578063c18bc195146108d9578063c876d0b9146108f957600080fd5b80639fccce3211610164578063a457c2d71161013e578063a457c2d71461082a578063a9059cbb1461084a578063b62496f51461086a578063bbc0c7421461089a57600080fd5b80639fccce32146107e8578063a0d82dc5146107fe578063a1dc92bc1461081457600080fd5b8063924de9b7116101a0578063924de9b71461077d57806395d89b411461079d5780639a7a23d6146107b25780639c3b4fdc146107d257600080fd5b80638da5cb5b146107295780638ea5220f14610747578063921369131461076757600080fd5b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106be5780637b208769146106de5780637bce5a04146106fe5780638a8c523c1461071457600080fd5b8063715018a614610674578063751039fc146106895780637571336a1461069e57600080fd5b80634fbee1931161027a5780634fbee193146105cf5780636a486a8e146106085780636ddd17131461061e57806370a082311461063e57600080fd5b806344249f041461056b57806349bd5a5e146105815780634a62bb65146105b557600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104f95780632e6ed7ef1461050f578063313ce5671461052f578063395093511461054b57600080fd5b80631f3fed8f146104a1578063203e727e146104b757806323b872dd146104d957600080fd5b806310d5de531161034957806310d5de53146103fa5780631694505e1461042a57806318160ddd146104765780631a8145bb1461048b57600080fd5b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a52565b60405161039d919061263c565b60405180910390f35b3480156103b257600080fd5b506103c66103c13660046126a6565b610ae4565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60155481565b60405190815260200161039d565b34801561040657600080fd5b506103c66104153660046126d2565b601e6020526000908152604090205460ff1681565b34801561043657600080fd5b5061045e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b506002546103ec565b34801561049757600080fd5b506103ec601b5481565b3480156104ad57600080fd5b506103ec601a5481565b3480156104c357600080fd5b506104d76104d23660046126ef565b610afa565b005b3480156104e557600080fd5b506103c66104f4366004612708565b610be0565b34801561050557600080fd5b5061045e61dead81565b34801561051b57600080fd5b506104d761052a366004612749565b610c8a565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506103c66105663660046126a6565b610d52565b34801561057757600080fd5b506103ec60195481565b34801561058d57600080fd5b5061045e7f0000000000000000000000007d298ae2e134ae126f77e601ea524c70e882ffb281565b3480156105c157600080fd5b50600c546103c69060ff1681565b3480156105db57600080fd5b506103c66105ea3660046126d2565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561061457600080fd5b506103ec60145481565b34801561062a57600080fd5b50600c546103c69062010000900460ff1681565b34801561064a57600080fd5b506103ec6106593660046126d2565b6001600160a01b031660009081526020819052604090205490565b34801561068057600080fd5b506104d7610d8e565b34801561069557600080fd5b506103c6610dc4565b3480156106aa57600080fd5b506104d76106b936600461278b565b610e01565b3480156106ca57600080fd5b5060075461045e906001600160a01b031681565b3480156106ea57600080fd5b5060065461045e906001600160a01b031681565b34801561070a57600080fd5b506103ec60115481565b34801561072057600080fd5b506104d7610e56565b34801561073557600080fd5b506005546001600160a01b031661045e565b34801561075357600080fd5b5060085461045e906001600160a01b031681565b34801561077357600080fd5b506103ec60165481565b34801561078957600080fd5b506104d76107983660046127c0565b610e93565b3480156107a957600080fd5b50610390610ed9565b3480156107be57600080fd5b506104d76107cd36600461278b565b610ee8565b3480156107de57600080fd5b506103ec60135481565b3480156107f457600080fd5b506103ec601c5481565b34801561080a57600080fd5b506103ec60185481565b34801561082057600080fd5b506103ec60105481565b34801561083657600080fd5b506103c66108453660046126a6565b610fc8565b34801561085657600080fd5b506103c66108653660046126a6565b611061565b34801561087657600080fd5b506103c66108853660046126d2565b601f6020526000908152604090205460ff1681565b3480156108a657600080fd5b50600c546103c690610100900460ff1681565b3480156108c557600080fd5b506104d76108d436600461278b565b61106e565b3480156108e557600080fd5b506104d76108f43660046126ef565b6110f7565b34801561090557600080fd5b50600e546103c69060ff1681565b34801561091f57600080fd5b506103ec60095481565b34801561093557600080fd5b506103c66109443660046126ef565b6111c8565b34801561095557600080fd5b506103ec600f5481565b34801561096b57600080fd5b506103ec61097a3660046127db565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b157600080fd5b506103ec600a5481565b3480156109c757600080fd5b506104d76109d6366004612749565b61131f565b3480156109e757600080fd5b506103c66113f6565b3480156109fc57600080fd5b506103ec60125481565b348015610a1257600080fd5b506104d7610a213660046126d2565b611433565b348015610a3257600080fd5b506103ec60175481565b348015610a4857600080fd5b506103ec600b5481565b606060038054610a6190612814565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612814565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610af13384846114ce565b50600192915050565b6005546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610b249061284f565b60405180910390fd5b670de0b6b3a76400006103e8610b4260025490565b610b4d90600561289a565b610b5791906128b9565b610b6191906128b9565b811015610bc85760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b24565b610bda81670de0b6b3a764000061289a565b60095550565b6000610bed8484846115f2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c725760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b24565b610c7f85338584036114ce565b506001949350505050565b6005546001600160a01b03163314610cb45760405162461bcd60e51b8152600401610b249061284f565b600a8183610cc286886128db565b610ccc91906128db565b610cd691906128db565b1115610d155760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b24565b60108490556011839055601282905560138190558082610d3585876128db565b610d3f91906128db565b610d4991906128db565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610af1918590610d899086906128db565b6114ce565b6005546001600160a01b03163314610db85760405162461bcd60e51b8152600401610b249061284f565b610dc26000611ea6565b565b6005546000906001600160a01b03163314610df15760405162461bcd60e51b8152600401610b249061284f565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e2b5760405162461bcd60e51b8152600401610b249061284f565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e805760405162461bcd60e51b8152600401610b249061284f565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610ebd5760405162461bcd60e51b8152600401610b249061284f565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a6190612814565b6005546001600160a01b03163314610f125760405162461bcd60e51b8152600401610b249061284f565b7f0000000000000000000000007d298ae2e134ae126f77e601ea524c70e882ffb26001600160a01b0316826001600160a01b03161415610fba5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b24565b610fc48282611ef8565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561104a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b24565b61105733858584036114ce565b5060019392505050565b6000610af13384846115f2565b6005546001600160a01b031633146110985760405162461bcd60e51b8152600401610b249061284f565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111215760405162461bcd60e51b8152600401610b249061284f565b670de0b6b3a76400006103e861113660025490565b61114190600561289a565b61114b91906128b9565b61115591906128b9565b8110156111b05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b24565b6111c281670de0b6b3a764000061289a565b600b5550565b6005546000906001600160a01b031633146111f55760405162461bcd60e51b8152600401610b249061284f565b620186a061120260025490565b61120d90600161289a565b61121791906128b9565b8210156112845760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b24565b6103e861129060025490565b61129b90600561289a565b6112a591906128b9565b8211156113115760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b24565b50600a81905560015b919050565b6005546001600160a01b031633146113495760405162461bcd60e51b8152600401610b249061284f565b6063818361135786886128db565b61136191906128db565b61136b91906128db565b11156113b95760405162461bcd60e51b815260206004820152601d60248201527f4d61782053656c6c4665652039392520746f20747269636b20626f74730000006044820152606401610b24565b601584905560168390556017829055601881905580826113d985876128db565b6113e391906128db565b6113ed91906128db565b60145550505050565b6005546000906001600160a01b031633146114235760405162461bcd60e51b8152600401610b249061284f565b50600e805460ff19169055600190565b6005546001600160a01b0316331461145d5760405162461bcd60e51b8152600401610b249061284f565b6001600160a01b0381166114c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b24565b6114cb81611ea6565b50565b6001600160a01b0383166115305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b24565b6001600160a01b0382166115915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b24565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116185760405162461bcd60e51b8152600401610b24906128f3565b6001600160a01b03821661163e5760405162461bcd60e51b8152600401610b2490612938565b806116545761164f83836000611f4c565b505050565b600c5460ff1615611b11576005546001600160a01b0384811691161480159061168b57506005546001600160a01b03838116911614155b801561169f57506001600160a01b03821615155b80156116b657506001600160a01b03821661dead14155b80156116cc5750600554600160a01b900460ff16155b15611b1157600c54610100900460ff16611764576001600160a01b0383166000908152601d602052604090205460ff168061171f57506001600160a01b0382166000908152601d602052604090205460ff165b6117645760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b24565b600e5460ff16156118ab576005546001600160a01b038381169116148015906117bf57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117fd57507f0000000000000000000000007d298ae2e134ae126f77e601ea524c70e882ffb26001600160a01b0316826001600160a01b031614155b156118ab57326000908152600d602052604090205443116118985760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b24565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118ec57506001600160a01b0382166000908152601e602052604090205460ff16155b156119d0576009548111156119615760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b24565b600b546001600160a01b03831660009081526020819052604090205461198790836128db565b11156119cb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b611b11565b6001600160a01b0382166000908152601f602052604090205460ff168015611a1157506001600160a01b0383166000908152601e602052604090205460ff16155b15611a87576009548111156119cb5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b24565b6001600160a01b0382166000908152601e602052604090205460ff16611b1157600b546001600160a01b038316600090815260208190526040902054611acd90836128db565b1115611b115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b30600090815260208190526040902054600a5481108015908190611b3d5750600c5462010000900460ff165b8015611b535750600554600160a01b900460ff16155b8015611b7857506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b9d57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611bc257506001600160a01b0384166000908152601d602052604090205460ff16155b15611bf0576005805460ff60a01b1916600160a01b179055611be26120a1565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c3e57506001600160a01b0385166000908152601d602052604090205460ff165b15611c47575060005b60008115611e92576001600160a01b0386166000908152601f602052604090205460ff168015611c7957506000601454115b15611d6757611c9e6064611c986014548861236b90919063ffffffff16565b9061237e565b905060145460155482611cb1919061289a565b611cbb91906128b9565b60196000828254611ccc91906128db565b9091555050601454601754611ce1908361289a565b611ceb91906128b9565b601b6000828254611cfc91906128db565b9091555050601454601854611d11908361289a565b611d1b91906128b9565b601c6000828254611d2c91906128db565b9091555050601454601654611d41908361289a565b611d4b91906128b9565b601a6000828254611d5c91906128db565b90915550611e749050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d9157506000600f54115b15611e7457611db06064611c98600f548861236b90919063ffffffff16565b9050600f5460105482611dc3919061289a565b611dcd91906128b9565b60196000828254611dde91906128db565b9091555050600f54601254611df3908361289a565b611dfd91906128b9565b601b6000828254611e0e91906128db565b9091555050600f54601354611e23908361289a565b611e2d91906128b9565b601c6000828254611e3e91906128db565b9091555050600f54601154611e53908361289a565b611e5d91906128b9565b601a6000828254611e6e91906128db565b90915550505b8015611e8557611e85873083611f4c565b611e8f818661297b565b94505b611e9d878787611f4c565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f725760405162461bcd60e51b8152600401610b24906128f3565b6001600160a01b038216611f985760405162461bcd60e51b8152600401610b2490612938565b6001600160a01b038316600090815260208190526040902054818110156120105760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b24565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120479084906128db565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161209391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120cb91906128db565b6120d591906128db565b6120df91906128db565b905060008215806120ee575081155b156120f857505050565b600a5461210690601461289a565b83111561211e57600a5461211b90601461289a565b92505b6000600283601b5486612131919061289a565b61213b91906128b9565b61214591906128b9565b90506000612153858361238a565b90504761215f82612396565b600061216b478361238a565b9050600061218887611c986019548561236b90919063ffffffff16565b905060006121a588611c98601a548661236b90919063ffffffff16565b905060006121c289611c98601c548761236b90919063ffffffff16565b9050600081836121d2868861297b565b6121dc919061297b565b6121e6919061297b565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612248576040519150601f19603f3d011682016040523d82523d6000602084013e61224d565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d806000811461229d576040519150601f19603f3d011682016040523d82523d6000602084013e6122a2565b606091505b509099505087158015906122b65750600081115b15612309576122c58882612556565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612356576040519150601f19603f3d011682016040523d82523d6000602084013e61235b565b606091505b5050505050505050505050505050565b6000612377828461289a565b9392505050565b600061237782846128b9565b6000612377828461297b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123cb576123cb612992565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d91906129a8565b8160018151811061248057612480612992565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114ce565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125209085906000908690309042906004016129c5565b600060405180830381600087803b15801561253a57600080fd5b505af115801561254e573d6000803e3d6000fd5b505050505050565b612581307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114ce565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612610573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126359190612a36565b5050505050565b600060208083528351808285015260005b818110156126695785810183015185820160400152820161264d565b8181111561267b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114cb57600080fd5b600080604083850312156126b957600080fd5b82356126c481612691565b946020939093013593505050565b6000602082840312156126e457600080fd5b813561237781612691565b60006020828403121561270157600080fd5b5035919050565b60008060006060848603121561271d57600080fd5b833561272881612691565b9250602084013561273881612691565b929592945050506040919091013590565b6000806000806080858703121561275f57600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461131a57600080fd5b6000806040838503121561279e57600080fd5b82356127a981612691565b91506127b76020840161277b565b90509250929050565b6000602082840312156127d257600080fd5b6123778261277b565b600080604083850312156127ee57600080fd5b82356127f981612691565b9150602083013561280981612691565b809150509250929050565b600181811c9082168061282857607f821691505b6020821081141561284957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128b4576128b4612884565b500290565b6000826128d657634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128ee576128ee612884565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561298d5761298d612884565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156129ba57600080fd5b815161237781612691565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a155784516001600160a01b0316835293830193918301916001016129f0565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a4b57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205b2be8edc6792f721061120fad5dc94a2ea049036556bfe08e2780e9c9cf56a864736f6c634300080a0033

Deployed Bytecode Sourcemap

32012:16452:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8940:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11107:169;;;;;;;;;;-1:-1:-1;11107:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11107:169:0;1072:187:1;33052:29:0;;;;;;;;;;;;;;;;;;;1410:25:1;;;1398:2;1383:18;33052:29:0;1264:177:1;33489:63:0;;;;;;;;;;-1:-1:-1;33489:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32089:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;32089:51:0;1698:230:1;10060:108:0;;;;;;;;;;-1:-1:-1;10148:12:0;;10060:108;;33273:33;;;;;;;;;;;;;;;;33233;;;;;;;;;;;;;;;;37815:275;;;;;;;;;;-1:-1:-1;37815:275:0;;;;;:::i;:::-;;:::i;:::-;;11758:492;;;;;;;;;;-1:-1:-1;11758:492:0;;;;;:::i;:::-;;:::i;32192:53::-;;;;;;;;;;;;32238:6;32192:53;;38734:498;;;;;;;;;;-1:-1:-1;38734:498:0;;;;;:::i;:::-;;:::i;9902:93::-;;;;;;;;;;-1:-1:-1;9902:93:0;;9985:2;3319:36:1;;3307:2;3292:18;9902:93:0;3177:184:1;12659:215:0;;;;;;;;;;-1:-1:-1;12659:215:0;;;;;:::i;:::-;;:::i;33195:31::-;;;;;;;;;;;;;;;;32147:38;;;;;;;;;;;;;;;32501:33;;;;;;;;;;-1:-1:-1;32501:33:0;;;;;;;;40468:126;;;;;;;;;;-1:-1:-1;40468:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40558:28:0;40534:4;40558:28;;;:19;:28;;;;;;;;;40468:126;33020:28;;;;;;;;;;;;;;;;32581:31;;;;;;;;;;-1:-1:-1;32581:31:0;;;;;;;;;;;10231:127;;;;;;;;;;-1:-1:-1;10231:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10332:18:0;10305:7;10332:18;;;;;;;;;;;;10231:127;2834:103;;;;;;;;;;;;;:::i;36923:121::-;;;;;;;;;;;;;:::i;38363:167::-;;;;;;;;;;-1:-1:-1;38363:167:0;;;;;:::i;:::-;;:::i;32316:30::-;;;;;;;;;;-1:-1:-1;32316:30:0;;;;-1:-1:-1;;;;;32316:30:0;;;32281:28;;;;;;;;;;-1:-1:-1;32281:28:0;;;;-1:-1:-1;;;;;32281:28:0;;;32913:30;;;;;;;;;;;;;;;;36759:112;;;;;;;;;;;;;:::i;2183:87::-;;;;;;;;;;-1:-1:-1;2256:6:0;;-1:-1:-1;;;;;2256:6:0;2183:87;;32353:24;;;;;;;;;;-1:-1:-1;32353:24:0;;;;-1:-1:-1;;;;;32353:24:0;;;33088:31;;;;;;;;;;;;;;;;38626:100;;;;;;;;;;-1:-1:-1;38626:100:0;;;;;:::i;:::-;;:::i;9159:104::-;;;;;;;;;;;;;:::i;39960:304::-;;;;;;;;;;-1:-1:-1;39960:304:0;;;;;:::i;:::-;;:::i;32987:24::-;;;;;;;;;;;;;;;;33313:27;;;;;;;;;;;;;;;;33164:25;;;;;;;;;;;;;;;;32878:28;;;;;;;;;;;;;;;;13377:413;;;;;;;;;;-1:-1:-1;13377:413:0;;;;;:::i;:::-;;:::i;10571:175::-;;;;;;;;;;-1:-1:-1;10571:175:0;;;;;:::i;:::-;;:::i;33710:57::-;;;;;;;;;;-1:-1:-1;33710:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32541:33;;;;;;;;;;-1:-1:-1;32541:33:0;;;;;;;;;;;39770:182;;;;;;;;;;-1:-1:-1;39770:182:0;;;;;:::i;:::-;;:::i;38098:256::-;;;;;;;;;;-1:-1:-1;38098:256:0;;;;;:::i;:::-;;:::i;32799:39::-;;;;;;;;;;-1:-1:-1;32799:39:0;;;;;;;;32386:35;;;;;;;;;;;;;;;;37310:497;;;;;;;;;;-1:-1:-1;37310:497:0;;;;;:::i;:::-;;:::i;32847:27::-;;;;;;;;;;;;;;;;10809:151;;;;;;;;;;-1:-1:-1;10809:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10925:18:0;;;10898:7;10925:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10809:151;32428:33;;;;;;;;;;;;;;;;39240:522;;;;;;;;;;-1:-1:-1;39240:522:0;;;;;:::i;:::-;;:::i;37105:135::-;;;;;;;;;;;;;:::i;32950:30::-;;;;;;;;;;;;;;;;3092:201;;;;;;;;;;-1:-1:-1;3092:201:0;;;;;:::i;:::-;;:::i;33126:31::-;;;;;;;;;;;;;;;;32468:24;;;;;;;;;;;;;;;;8940:100;8994:13;9027:5;9020:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8940:100;:::o;11107:169::-;11190:4;11207:39;936:10;11230:7;11239:6;11207:8;:39::i;:::-;-1:-1:-1;11264:4:0;11107:169;;;;:::o;37815:275::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;;;;;;;;;37952:4:::1;37944;37923:13;10148:12:::0;;;10060:108;37923:13:::1;:17;::::0;37939:1:::1;37923:17;:::i;:::-;37922:26;;;;:::i;:::-;37921:35;;;;:::i;:::-;37911:6;:45;;37889:142;;;::::0;-1:-1:-1;;;37889:142:0;;5904:2:1;37889:142:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:45;6088:19;;37889:142:0::1;5702:411:1::0;37889:142:0::1;38065:17;:6:::0;38075::::1;38065:17;:::i;:::-;38042:20;:40:::0;-1:-1:-1;37815:275:0:o;11758:492::-;11898:4;11915:36;11925:6;11933:9;11944:6;11915:9;:36::i;:::-;-1:-1:-1;;;;;11991:19:0;;11964:24;11991:19;;;:11;:19;;;;;;;;936:10;11991:33;;;;;;;;12043:26;;;;12035:79;;;;-1:-1:-1;;;12035:79:0;;6320:2:1;12035:79:0;;;6302:21:1;6359:2;6339:18;;;6332:30;6398:34;6378:18;;;6371:62;-1:-1:-1;;;6449:18:1;;;6442:38;6497:19;;12035:79:0;6118:404:1;12035:79:0;12150:57;12159:6;936:10;12200:6;12181:16;:25;12150:8;:57::i;:::-;-1:-1:-1;12238:4:0;;11758:492;-1:-1:-1;;;;11758:492:0:o;38734:498::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;38969:2:::1;38957:7:::0;38941:13;38911:27:::1;38925:13:::0;38911:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;38910:61;;38902:88;;;::::0;-1:-1:-1;;;38902:88:0;;6862:2:1;38902:88:0::1;::::0;::::1;6844:21:1::0;6901:2;6881:18;;;6874:30;-1:-1:-1;;;6920:18:1;;;6913:44;6974:18;;38902:88:0::1;6660:338:1::0;38902:88:0::1;38995:13;:27:::0;;;39033:15:::1;:31:::0;;;39075:15:::1;:31:::0;;;39117:9:::1;:19:::0;;;39129:7;39093:13;39162:31:::1;39051:13:::0;39011:11;39162:31:::1;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39147:12;:76:::0;-1:-1:-1;;;;38734:498:0:o;12659:215::-;936:10;12747:4;12796:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12796:34:0;;;;;;;;;;12747:4;;12764:80;;12787:7;;12796:47;;12833:10;;12796:47;:::i;:::-;12764:8;:80::i;2834:103::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;2899:30:::1;2926:1;2899:18;:30::i;:::-;2834:103::o:0;36923:121::-;2256:6;;36975:4;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;-1:-1:-1;36992:14:0::1;:22:::0;;-1:-1:-1;;36992:22:0::1;::::0;;;36923:121;:::o;38363:167::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38476:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38476:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38363:167::o;36759:112::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;36814:13:::1;:20:::0;;-1:-1:-1;;36845:18:0;;;;;36759:112::o;38626:100::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;38697:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38697:21:0;;::::1;::::0;;;::::1;::::0;;38626:100::o;9159:104::-;9215:13;9248:7;9241:14;;;;;:::i;39960:304::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;40104:13:::1;-1:-1:-1::0;;;;;40096:21:0::1;:4;-1:-1:-1::0;;;;;40096:21:0::1;;;40074:128;;;::::0;-1:-1:-1;;;40074:128:0;;7205:2:1;40074:128:0::1;::::0;::::1;7187:21:1::0;7244:2;7224:18;;;7217:30;7283:34;7263:18;;;7256:62;7354:27;7334:18;;;7327:55;7399:19;;40074:128:0::1;7003:421:1::0;40074:128:0::1;40215:41;40244:4;40250:5;40215:28;:41::i;:::-;39960:304:::0;;:::o;13377:413::-;936:10;13470:4;13514:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13514:34:0;;;;;;;;;;13567:35;;;;13559:85;;;;-1:-1:-1;;;13559:85:0;;7631:2:1;13559:85:0;;;7613:21:1;7670:2;7650:18;;;7643:30;7709:34;7689:18;;;7682:62;-1:-1:-1;;;7760:18:1;;;7753:35;7805:19;;13559:85:0;7429:401:1;13559:85:0;13680:67;936:10;13703:7;13731:15;13712:16;:34;13680:8;:67::i;:::-;-1:-1:-1;13778:4:0;;13377:413;-1:-1:-1;;;13377:413:0:o;10571:175::-;10657:4;10674:42;936:10;10698:9;10709:6;10674:9;:42::i;39770:182::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39855:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39855:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39910:34;;1212:41:1;;;39910:34:0::1;::::0;1185:18:1;39910:34:0::1;;;;;;;39770:182:::0;;:::o;38098:256::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;38238:4:::1;38230;38209:13;10148:12:::0;;;10060:108;38209:13:::1;:17;::::0;38225:1:::1;38209:17;:::i;:::-;38208:26;;;;:::i;:::-;38207:35;;;;:::i;:::-;38197:6;:45;;38175:131;;;::::0;-1:-1:-1;;;38175:131:0;;8037:2:1;38175:131:0::1;::::0;::::1;8019:21:1::0;8076:2;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;-1:-1:-1;;;8166:18:1;;;8159:34;8210:19;;38175:131:0::1;7835:400:1::0;38175:131:0::1;38329:17;:6:::0;38339::::1;38329:17;:::i;:::-;38317:9;:29:::0;-1:-1:-1;38098:256:0:o;37310:497::-;2256:6;;37418:4;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;37497:6:::1;37476:13;10148:12:::0;;;10060:108;37476:13:::1;:17;::::0;37492:1:::1;37476:17;:::i;:::-;37475:28;;;;:::i;:::-;37462:9;:41;;37440:144;;;::::0;-1:-1:-1;;;37440:144:0;;8442:2:1;37440:144:0::1;::::0;::::1;8424:21:1::0;8481:2;8461:18;;;8454:30;8520:34;8500:18;;;8493:62;-1:-1:-1;;;8571:18:1;;;8564:51;8632:19;;37440:144:0::1;8240:417:1::0;37440:144:0::1;37652:4;37631:13;10148:12:::0;;;10060:108;37631:13:::1;:17;::::0;37647:1:::1;37631:17;:::i;:::-;37630:26;;;;:::i;:::-;37617:9;:39;;37595:141;;;::::0;-1:-1:-1;;;37595:141:0;;8864:2:1;37595:141:0::1;::::0;::::1;8846:21:1::0;8903:2;8883:18;;;8876:30;8942:34;8922:18;;;8915:62;-1:-1:-1;;;8993:18:1;;;8986:50;9053:19;;37595:141:0::1;8662:416:1::0;37595:141:0::1;-1:-1:-1::0;37747:18:0::1;:30:::0;;;37795:4:::1;2474:1;37310:497:::0;;;:::o;39240:522::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;39476:2:::1;39464:7:::0;39448:13;39418:27:::1;39432:13:::0;39418:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39417:61;;39409:103;;;::::0;-1:-1:-1;;;39409:103:0;;9285:2:1;39409:103:0::1;::::0;::::1;9267:21:1::0;9324:2;9304:18;;;9297:30;9363:31;9343:18;;;9336:59;9412:18;;39409:103:0::1;9083:353:1::0;39409:103:0::1;39517:14;:28:::0;;;39556:16:::1;:32:::0;;;39599:16:::1;:32:::0;;;39642:10:::1;:20:::0;;;39655:7;39618:13;39689:33:::1;39575:13:::0;39534:11;39689:33:::1;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;39673:13;:81:::0;-1:-1:-1;;;;39240:522:0:o;37105:135::-;2256:6;;37165:4;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;-1:-1:-1;37182:20:0::1;:28:::0;;-1:-1:-1;;37182:28:0::1;::::0;;;37105:135;:::o;3092:201::-;2256:6;;-1:-1:-1;;;;;2256:6:0;936:10;2403:23;2395:68;;;;-1:-1:-1;;;2395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3181:22:0;::::1;3173:73;;;::::0;-1:-1:-1;;;3173:73:0;;9643:2:1;3173:73:0::1;::::0;::::1;9625:21:1::0;9682:2;9662:18;;;9655:30;9721:34;9701:18;;;9694:62;-1:-1:-1;;;9772:18:1;;;9765:36;9818:19;;3173:73:0::1;9441:402:1::0;3173:73:0::1;3257:28;3276:8;3257:18;:28::i;:::-;3092:201:::0;:::o;17061:380::-;-1:-1:-1;;;;;17197:19:0;;17189:68;;;;-1:-1:-1;;;17189:68:0;;10050:2:1;17189:68:0;;;10032:21:1;10089:2;10069:18;;;10062:30;10128:34;10108:18;;;10101:62;-1:-1:-1;;;10179:18:1;;;10172:34;10223:19;;17189:68:0;9848:400:1;17189:68:0;-1:-1:-1;;;;;17276:21:0;;17268:68;;;;-1:-1:-1;;;17268:68:0;;10455:2:1;17268:68:0;;;10437:21:1;10494:2;10474:18;;;10467:30;10533:34;10513:18;;;10506:62;-1:-1:-1;;;10584:18:1;;;10577:32;10626:19;;17268:68:0;10253:398:1;17268:68:0;-1:-1:-1;;;;;17349:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17401:32;;1410:25:1;;;17401:32:0;;1383:18:1;17401:32:0;;;;;;;17061:380;;;:::o;40602:4847::-;-1:-1:-1;;;;;40734:18:0;;40726:68;;;;-1:-1:-1;;;40726:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40813:16:0;;40805:64;;;;-1:-1:-1;;;40805:64:0;;;;;;;:::i;:::-;40886:11;40882:93;;40914:28;40930:4;40936:2;40940:1;40914:15;:28::i;:::-;40602:4847;;;:::o;40882:93::-;40991:14;;;;40987:2487;;;2256:6;;-1:-1:-1;;;;;41044:15:0;;;2256:6;;41044:15;;;;:49;;-1:-1:-1;2256:6:0;;-1:-1:-1;;;;;41080:13:0;;;2256:6;;41080:13;;41044:49;:86;;;;-1:-1:-1;;;;;;41114:16:0;;;;41044:86;:128;;;;-1:-1:-1;;;;;;41151:21:0;;41165:6;41151:21;;41044:128;:158;;;;-1:-1:-1;41194:8:0;;-1:-1:-1;;;41194:8:0;;;;41193:9;41044:158;41022:2441;;;41242:13;;;;;;;41237:223;;-1:-1:-1;;;;;41314:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41343:23:0;;;;;;:19;:23;;;;;;;;41314:52;41280:160;;;;-1:-1:-1;;;41280:160:0;;11668:2:1;41280:160:0;;;11650:21:1;11707:2;11687:18;;;11680:30;-1:-1:-1;;;11726:18:1;;;11719:52;11788:18;;41280:160:0;11466:346:1;41280:160:0;41616:20;;;;41612:641;;;2256:6;;-1:-1:-1;;;;;41691:13:0;;;2256:6;;41691:13;;;;:72;;;41747:15;-1:-1:-1;;;;;41733:30:0;:2;-1:-1:-1;;;;;41733:30:0;;;41691:72;:129;;;;;41806:13;-1:-1:-1;;;;;41792:28:0;:2;-1:-1:-1;;;;;41792:28:0;;;41691:129;41661:573;;;41938:9;41909:39;;;;:28;:39;;;;;;41984:12;-1:-1:-1;41871:258:0;;;;-1:-1:-1;;;41871:258:0;;12019:2:1;41871:258:0;;;12001:21:1;12058:2;12038:18;;;12031:30;12097:34;12077:18;;;12070:62;12168:34;12148:18;;;12141:62;-1:-1:-1;;;12219:19:1;;;12212:40;12269:19;;41871:258:0;11817:477:1;41871:258:0;42185:9;42156:39;;;;:28;:39;;;;;42198:12;42156:54;;41661:573;-1:-1:-1;;;;;42327:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42384:35:0;;;;;;:31;:35;;;;;;;;42383:36;42327:92;42301:1147;;;42506:20;;42496:6;:30;;42462:169;;;;-1:-1:-1;;;42462:169:0;;12501:2:1;42462:169:0;;;12483:21:1;12540:2;12520:18;;;12513:30;12579:34;12559:18;;;12552:62;-1:-1:-1;;;12630:18:1;;;12623:51;12691:19;;42462:169:0;12299:417:1;42462:169:0;42714:9;;-1:-1:-1;;;;;10332:18:0;;10305:7;10332:18;;;;;;;;;;;42688:22;;:6;:22;:::i;:::-;:35;;42654:140;;;;-1:-1:-1;;;42654:140:0;;12923:2:1;42654:140:0;;;12905:21:1;12962:2;12942:18;;;12935:30;-1:-1:-1;;;12981:18:1;;;12974:49;13040:18;;42654:140:0;12721:343:1;42654:140:0;42301:1147;;;-1:-1:-1;;;;;42892:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42947:37:0;;;;;;:31;:37;;;;;;;;42946:38;42892:92;42866:582;;;43071:20;;43061:6;:30;;43027:170;;;;-1:-1:-1;;;43027:170:0;;13271:2:1;43027:170:0;;;13253:21:1;13310:2;13290:18;;;13283:30;13349:34;13329:18;;;13322:62;-1:-1:-1;;;13400:18:1;;;13393:52;13462:19;;43027:170:0;13069:418:1;42866:582:0;-1:-1:-1;;;;;43228:35:0;;;;;;:31;:35;;;;;;;;43223:225;;43348:9;;-1:-1:-1;;;;;10332:18:0;;10305:7;10332:18;;;;;;;;;;;43322:22;;:6;:22;:::i;:::-;:35;;43288:140;;;;-1:-1:-1;;;43288:140:0;;12923:2:1;43288:140:0;;;12905:21:1;12962:2;12942:18;;;12935:30;-1:-1:-1;;;12981:18:1;;;12974:49;13040:18;;43288:140:0;12721:343:1;43288:140:0;43535:4;43486:28;10332:18;;;;;;;;;;;43593;;43569:42;;;;;;;43642:35;;-1:-1:-1;43666:11:0;;;;;;;43642:35;:61;;;;-1:-1:-1;43695:8:0;;-1:-1:-1;;;43695:8:0;;;;43694:9;43642:61;:110;;;;-1:-1:-1;;;;;;43721:31:0;;;;;;:25;:31;;;;;;;;43720:32;43642:110;:153;;;;-1:-1:-1;;;;;;43770:25:0;;;;;;:19;:25;;;;;;;;43769:26;43642:153;:194;;;;-1:-1:-1;;;;;;43813:23:0;;;;;;:19;:23;;;;;;;;43812:24;43642:194;43624:326;;;43863:8;:15;;-1:-1:-1;;;;43863:15:0;-1:-1:-1;;;43863:15:0;;;43895:10;:8;:10::i;:::-;43922:8;:16;;-1:-1:-1;;;;43922:16:0;;;43624:326;43978:8;;-1:-1:-1;;;;;44088:25:0;;43962:12;44088:25;;;:19;:25;;;;;;43978:8;-1:-1:-1;;;43978:8:0;;;;;43977:9;;44088:25;;:52;;-1:-1:-1;;;;;;44117:23:0;;;;;;:19;:23;;;;;;;;44088:52;44084:100;;;-1:-1:-1;44167:5:0;44084:100;44196:12;44301:7;44297:1099;;;-1:-1:-1;;;;;44353:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44402:1;44386:13;;:17;44353:50;44349:898;;;44431:34;44461:3;44431:25;44442:13;;44431:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44424:41;;44518:13;;44500:14;;44493:4;:21;;;;:::i;:::-;44492:39;;;;:::i;:::-;44472:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;44600:13:0;;44580:16;;44573:23;;:4;:23;:::i;:::-;44572:41;;;;:::i;:::-;44550:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44670:13:0;;44656:10;;44649:17;;:4;:17;:::i;:::-;44648:35;;;;:::i;:::-;44632:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44752:13:0;;44732:16;;44725:23;;:4;:23;:::i;:::-;44724:41;;;;:::i;:::-;44702:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;44349:898:0;;-1:-1:-1;44349:898:0;;-1:-1:-1;;;;;44827:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44877:1;44862:12;;:16;44827:51;44823:424;;;44906:33;44935:3;44906:24;44917:12;;44906:6;:10;;:24;;;;:::i;:33::-;44899:40;;44991:12;;44974:13;;44967:4;:20;;;;:::i;:::-;44966:37;;;;:::i;:::-;44946:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;45071:12:0;;45052:15;;45045:22;;:4;:22;:::i;:::-;45044:39;;;;:::i;:::-;45022:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45139:12:0;;45126:9;;45119:16;;:4;:16;:::i;:::-;45118:33;;;;:::i;:::-;45102:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45219:12:0;;45200:15;;45193:22;;:4;:22;:::i;:::-;45192:39;;;;:::i;:::-;45170:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44823:424:0;45267:8;;45263:91;;45296:42;45312:4;45326;45333;45296:15;:42::i;:::-;45370:14;45380:4;45370:14;;:::i;:::-;;;44297:1099;45408:33;45424:4;45430:2;45434:6;45408:15;:33::i;:::-;40715:4734;;;;40602:4847;;;:::o;3453:191::-;3546:6;;;-1:-1:-1;;;;;3563:17:0;;;-1:-1:-1;;;;;;3563:17:0;;;;;;;3596:40;;3546:6;;;3563:17;3546:6;;3596:40;;3527:16;;3596:40;3516:128;3453:191;:::o;40272:188::-;-1:-1:-1;;;;;40355:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40355:39:0;;;;;;;;;;40412:40;;40355:39;;:31;40412:40;;;40272:188;;:::o;14280:733::-;-1:-1:-1;;;;;14420:20:0;;14412:70;;;;-1:-1:-1;;;14412:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14501:23:0;;14493:71;;;;-1:-1:-1;;;14493:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14661:17:0;;14637:21;14661:17;;;;;;;;;;;14697:23;;;;14689:74;;;;-1:-1:-1;;;14689:74:0;;13824:2:1;14689:74:0;;;13806:21:1;13863:2;13843:18;;;13836:30;13902:34;13882:18;;;13875:62;-1:-1:-1;;;13953:18:1;;;13946:36;13999:19;;14689:74:0;13622:402:1;14689:74:0;-1:-1:-1;;;;;14799:17:0;;;:9;:17;;;;;;;;;;;14819:22;;;14799:42;;14863:20;;;;;;;;:30;;14835:6;;14799:9;14863:30;;14835:6;;14863:30;:::i;:::-;;;;;;;;14928:9;-1:-1:-1;;;;;14911:35:0;14920:6;-1:-1:-1;;;;;14911:35:0;;14939:6;14911:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;14911:35:0;;;;;;;;14401:612;14280:733;;;:::o;46577:1882::-;46660:4;46616:23;10332:18;;;;;;;;;;;46616:50;;46677:25;46766:12;;46745:18;;46724;;46705:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;46677:101;-1:-1:-1;46789:12:0;46818:20;;;:46;;-1:-1:-1;46842:22:0;;46818:46;46814:85;;;46881:7;;;46577:1882::o;46814:85::-;46933:18;;:23;;46954:2;46933:23;:::i;:::-;46915:15;:41;46911:115;;;46991:18;;:23;;47012:2;46991:23;:::i;:::-;46973:41;;46911:115;47087:23;47174:1;47154:17;47132:18;;47114:15;:36;;;;:::i;:::-;47113:58;;;;:::i;:::-;:62;;;;:::i;:::-;47087:88;-1:-1:-1;47186:26:0;47215:36;:15;47087:88;47215:19;:36::i;:::-;47186:65;-1:-1:-1;47292:21:0;47326:36;47186:65;47326:16;:36::i;:::-;47375:18;47396:44;:21;47422:17;47396:25;:44::i;:::-;47375:65;;47447:21;47471:55;47508:17;47471:32;47486:16;;47471:10;:14;;:32;;;;:::i;:55::-;47447:79;;47537:23;47563:57;47602:17;47563:34;47578:18;;47563:10;:14;;:34;;;;:::i;:57::-;47537:83;;47631:17;47651:51;47684:17;47651:28;47666:12;;47651:10;:14;;:28;;;;:::i;:51::-;47631:71;-1:-1:-1;47715:23:0;47631:71;47770:15;47741:26;47754:13;47741:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;47831:1;47810:18;:22;;;47837:16;:20;;;47868:18;:22;;;47901:12;:16;;;47952:9;;47944:45;;47715:82;;-1:-1:-1;;;;;;47952:9:0;;47975;;47944:45;47831:1;47944:45;47975:9;47952;47944:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48022:15:0;;48014:57;;47930:59;;-1:-1:-1;;;;;;48022:15:0;;48051;;48014:57;;;;48051:15;48022;48014:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48000:71:0;;-1:-1:-1;;48090:19:0;;;;;:42;;;48131:1;48113:15;:19;48090:42;48086:278;;;48149:46;48162:15;48179;48149:12;:46::i;:::-;48319:18;;48215:137;;;14441:25:1;;;14497:2;14482:18;;14475:34;;;14525:18;;;14518:34;;;;48215:137:0;;;;;;14429:2:1;48215:137:0;;;48086:278;48398:13;;48390:61;;-1:-1:-1;;;;;48398:13:0;;;;48425:21;;48390:61;;;;48425:21;48398:13;48390:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;46577:1882:0:o;22514:98::-;22572:7;22599:5;22603:1;22599;:5;:::i;:::-;22592:12;22514:98;-1:-1:-1;;;22514:98:0:o;22913:::-;22971:7;22998:5;23002:1;22998;:5;:::i;22157:98::-;22215:7;22242:5;22246:1;22242;:5;:::i;45457:589::-;45607:16;;;45621:1;45607:16;;;;;;;;45583:21;;45607:16;;;;;;;;;;-1:-1:-1;45607:16:0;45583:40;;45652:4;45634;45639:1;45634:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45634:23:0;;;-1:-1:-1;;;;;45634:23:0;;;;;45678:15;-1:-1:-1;;;;;45678:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45668:4;45673:1;45668:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45668:32:0;;;-1:-1:-1;;;;;45668:32:0;;;;;45713:62;45730:4;45745:15;45763:11;45713:8;:62::i;:::-;45814:224;;-1:-1:-1;;;45814:224:0;;-1:-1:-1;;;;;45814:15:0;:66;;;;:224;;45895:11;;45921:1;;45965:4;;45992;;46012:15;;45814:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45512:534;45457:589;:::o;46054:515::-;46202:62;46219:4;46234:15;46252:11;46202:8;:62::i;:::-;46511:9;;46307:254;;-1:-1:-1;;;46307:254:0;;46379:4;46307:254;;;16409:34:1;16459:18;;;16452:34;;;46425:1:0;16502:18:1;;;16495:34;;;16545:18;;;16538:34;-1:-1:-1;;;;;46511:9:0;;;16588:19:1;;;16581:44;46535:15:0;16641:19:1;;;16634:35;46307:15:0;:31;;;;;;46346:9;;16343:19:1;;46307:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46054:515;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:247::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1613:9;1600:23;1632:31;1657:5;1632:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2787:385::-;2873:6;2881;2889;2897;2950:3;2938:9;2929:7;2925:23;2921:33;2918:53;;;2967:1;2964;2957:12;2918:53;-1:-1:-1;;2990:23:1;;;3060:2;3045:18;;3032:32;;-1:-1:-1;3111:2:1;3096:18;;3083:32;;3162:2;3147:18;3134:32;;-1:-1:-1;2787:385:1;-1:-1:-1;2787:385:1:o;3366:160::-;3431:20;;3487:13;;3480:21;3470:32;;3460:60;;3516:1;3513;3506:12;3531:315;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3712:9;3699:23;3731:31;3756:5;3731:31;:::i;:::-;3781:5;-1:-1:-1;3805:35:1;3836:2;3821:18;;3805:35;:::i;:::-;3795:45;;3531:315;;;;;:::o;3851:180::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;3999:26;4015:9;3999:26;:::i;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;4814:356::-;5016:2;4998:21;;;5035:18;;;5028:30;5094:34;5089:2;5074:18;;5067:62;5161:2;5146:18;;4814:356::o;5175:127::-;5236:10;5231:3;5227:20;5224:1;5217:31;5267:4;5264:1;5257:15;5291:4;5288:1;5281:15;5307:168;5347:7;5413:1;5409;5405:6;5401:14;5398:1;5395:21;5390:1;5383:9;5376:17;5372:45;5369:71;;;5420:18;;:::i;:::-;-1:-1:-1;5460:9:1;;5307:168::o;5480:217::-;5520:1;5546;5536:132;;5590:10;5585:3;5581:20;5578:1;5571:31;5625:4;5622:1;5615:15;5653:4;5650:1;5643:15;5536:132;-1:-1:-1;5682:9:1;;5480:217::o;6527:128::-;6567:3;6598:1;6594:6;6591:1;6588:13;6585:39;;;6604:18;;:::i;:::-;-1:-1:-1;6640:9:1;;6527:128::o;10656:401::-;10858:2;10840:21;;;10897:2;10877:18;;;10870:30;10936:34;10931:2;10916:18;;10909:62;-1:-1:-1;;;11002:2:1;10987:18;;10980:35;11047:3;11032:19;;10656:401::o;11062:399::-;11264:2;11246:21;;;11303:2;11283:18;;;11276:30;11342:34;11337:2;11322:18;;11315:62;-1:-1:-1;;;11408:2:1;11393:18;;11386:33;11451:3;11436:19;;11062:399::o;13492:125::-;13532:4;13560:1;13557;13554:8;13551:34;;;13565:18;;:::i;:::-;-1:-1:-1;13602:9:1;;13492:125::o;14695:127::-;14756:10;14751:3;14747:20;14744:1;14737:31;14787:4;14784:1;14777:15;14811:4;14808:1;14801:15;14827:251;14897:6;14950:2;14938:9;14929:7;14925:23;14921:32;14918:52;;;14966:1;14963;14956:12;14918:52;14998:9;14992:16;15017:31;15042:5;15017:31;:::i;15083:980::-;15345:4;15393:3;15382:9;15378:19;15424:6;15413:9;15406:25;15450:2;15488:6;15483:2;15472:9;15468:18;15461:34;15531:3;15526:2;15515:9;15511:18;15504:31;15555:6;15590;15584:13;15621:6;15613;15606:22;15659:3;15648:9;15644:19;15637:26;;15698:2;15690:6;15686:15;15672:29;;15719:1;15729:195;15743:6;15740:1;15737:13;15729:195;;;15808:13;;-1:-1:-1;;;;;15804:39:1;15792:52;;15899:15;;;;15864:12;;;;15840:1;15758:9;15729:195;;;-1:-1:-1;;;;;;;15980:32:1;;;;15975:2;15960:18;;15953:60;-1:-1:-1;;;16044:3:1;16029:19;16022:35;15941:3;15083:980;-1:-1:-1;;;15083:980:1:o;16680:306::-;16768:6;16776;16784;16837:2;16825:9;16816:7;16812:23;16808:32;16805:52;;;16853:1;16850;16843:12;16805:52;16882:9;16876:16;16866:26;;16932:2;16921:9;16917:18;16911:25;16901:35;;16976:2;16965:9;16961:18;16955:25;16945:35;;16680:306;;;;;:::o

Swarm Source

ipfs://5b2be8edc6792f721061120fad5dc94a2ea049036556bfe08e2780e9c9cf56a8
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.