ETH Price: $2,382.04 (-0.06%)

Token

BaiKi Inu (BaiKi)
 

Overview

Max Total Supply

1,000,000,000,000 BaiKi

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,148,773,422.837652212012284023 BaiKi

Value
$0.00
0x16bdfc5f5d388eb24ab2759000c1cb46bf7de58c
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:
BaiKiInu

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-23
*/

//SPDX-License-Identifier:UNLICENSE
pragma solidity 0.8.4;


/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity 0.8.4;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

pragma solidity 0.8.4;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

pragma solidity 0.8.4;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

pragma solidity 0.8.4;

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

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

    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
}

pragma solidity 0.8.4;

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

pragma solidity 0.8.4;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity 0.8.4;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

pragma solidity 0.8.4;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

pragma solidity 0.8.4;

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

pragma solidity 0.8.4;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

pragma solidity 0.8.4;

contract BaiKiInu is ERC20, AccessControl {
    using SafeMath for uint256;
      mapping(address => bool) public Limtcheck;

    IUniswapV2Router02 public uniswapV2Router;

    bytes32 public constant PAIR_HASH = keccak256("PAIR_CONTRACT_NAME_HASH");
    bytes32 public constant DEFAULT_OWNER = keccak256("OWNABLE_NAME_HASH");
    bytes32 public constant EXCLUDED_HASH = keccak256("EXCLUDED_NAME_HASH");
    
    address public ownedBy;
    uint constant DENOMINATOR = 10000;
    uint public sellerFee = 1500;
     uint public buyerFee = 0;
    uint public txFee = 0;
    uint public maxAmount=40000000000e18; 
    bool public inSwapAndLiquify = false;

    address private marketting_address=0x05316124Ae106a36914e17E59096dAD3D376Af6d;
    

    event SwapTokensForETH(
        uint256 amountIn,
        address[] path
    );

    constructor() ERC20("BaiKi Inu", "BaiKi") {
        _mint(_msgSender(), 1000000000000 * 10 ** decimals()); 
        _setRoleAdmin(DEFAULT_ADMIN_ROLE,DEFAULT_OWNER);
        _setupRole(DEFAULT_OWNER,_msgSender()); 
        _setupRole(EXCLUDED_HASH,_msgSender());
        _setupRole(EXCLUDED_HASH,address(this)); 
        ownedBy = _msgSender();
        _createPair(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 
        Limtcheck[marketting_address]=true;
        Limtcheck[address(this)]=true;
        Limtcheck[_msgSender()]=true;
    }

    receive() external payable {
    }

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

  
    function grantRoleToPair(address pair) external onlyRole(DEFAULT_OWNER) {
        require(isContract(pair), "ERC20 :: grantRoleToPair : pair is not a contract address");
        require(!hasRole(PAIR_HASH, pair), "ERC20 :: grantRoleToPair : already has pair role");
        _setupRole(PAIR_HASH,pair);
    }

 
    function excludeFrom(address account) external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(EXCLUDED_HASH, account), "ERC20 :: excludeFrom : already has pair role");
        _setupRole(EXCLUDED_HASH,account);
    }

    function UpdateLimitcheck(address _addr,bool _status) external onlyRole(DEFAULT_OWNER) {
        Limtcheck[_addr]=_status;
    }

   
    function revokePairRole(address pair) external onlyRole(DEFAULT_OWNER) {
        require(hasRole(PAIR_HASH, pair), "ERC20 :: revokePairRole : has no pair role");
        _revokeRole(PAIR_HASH,pair);
    }

    /**
     * @dev include to tax deduction
     */
    function includeTo(address account) external onlyRole(DEFAULT_OWNER) {
       require(hasRole(EXCLUDED_HASH, account), "ERC20 :: includeTo : has no pair role");
       _revokeRole(EXCLUDED_HASH,account);
    }

    /**
     * @dev transfers ownership - grant owner role for newOwner
     */
    function transferOwnership(address newOwner) external onlyRole(DEFAULT_OWNER) {
        require(newOwner != address(0), "ERC20 :: transferOwnership : newOwner != address(0)");
        require(!hasRole(DEFAULT_OWNER, newOwner), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,newOwner);
        ownedBy = newOwner;
    }

     function renounceOwnership() external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(DEFAULT_OWNER, address(0)), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,address(0));
        ownedBy = address(0);
    }

    /**
     * @dev update tx fee amount
     */
    function updateTxFee(uint newTxFee) external onlyRole(DEFAULT_OWNER) {
        txFee = newTxFee;
    }

    /**
     * @dev update seller fee amount
     */
    function updateSellerFee(uint newSellerFee) external onlyRole(DEFAULT_OWNER) {
        sellerFee = newSellerFee;
    }

    /**
     * @dev update maximum transferable amount
     */
    function updateMaxTransferAmount(uint newMaxAmount) external onlyRole(DEFAULT_OWNER) {
        require(newMaxAmount > 0, "ERC20 :: updateMaxTransferAmount : newMaxAmount > 0");
        maxAmount = newMaxAmount;
    }

    /**
     * @dev change address of the router.
     */
    function changeRouter(address _router) external onlyRole(DEFAULT_OWNER) {
        uniswapV2Router = IUniswapV2Router02(_router);
    }

    /**
     * @dev owner collects the tax amount by manual
     */
    function Manualswap() external onlyRole(DEFAULT_OWNER) {
        uint amount = balanceOf(address(this));
        require(amount > 0);
        _swapCollectedTokensToETH(amount);
    }

    /**
     * @dev overrids transfer function 
     */
    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(!Limtcheck[to]) {
            require(maxAmount >=  balanceOf(to).add(amount), "ERC20: maxAmount >= amount");
        }
        
        _beforeTokenTransfer(from, to, amount);

        uint256[3] memory _amounts;
        _amounts[0] = _balances[from];

        bool[2] memory status; 
        status[0] = (!hasRole(DEFAULT_OWNER, from)) && (!hasRole(DEFAULT_OWNER, to)) && (!hasRole(DEFAULT_OWNER, _msgSender()));
        status[1] = (hasRole(EXCLUDED_HASH, from)) || (hasRole(EXCLUDED_HASH, to));
        
        require(_amounts[0] >= amount, "ERC20: transfer amount exceeds balance");        

        if(hasRole(PAIR_HASH, to) && !inSwapAndLiquify) {
            uint contractBalance = balanceOf(address(this));
            if(contractBalance > 0) {
                _swapCollectedTokensToETH(contractBalance);
            }
        }

        if(status[0] && !status[1] && !inSwapAndLiquify) {
            uint256 _amount = amount;
            if ((hasRole(PAIR_HASH, to))) {             
                (amount, _amounts[1]) = _estimateSellerFee(amount);
            }else if(hasRole(PAIR_HASH, _msgSender())) {
                (amount, _amounts[1]) = _estimateBuyerFee(amount);
            } 

            _amounts[2] = _estimateTxFee(_amount);

            if(amount >= _amounts[2]) {
                amount -= _amounts[2];
            }
        }

        unchecked {
            _balances[from] = _amounts[0] - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);
         
        if((_amounts[1] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _payFee(from, _amounts[1]);
        }

        if((_amounts[2] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _burn(from, _amounts[2]);
        }

        _afterTokenTransfer(from, to, amount);
    }

   
    function _burn(address account, uint256 amount) internal override {
        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;
        }
        _balances[address(0)] += amount;

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

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

 
    function _createPair(address _router) private {
        uniswapV2Router = IUniswapV2Router02(_router);
        address uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this), 
            uniswapV2Router.WETH()
        );
        _setupRole(PAIR_HASH,uniswapV2Pair);
         Limtcheck[uniswapV2Pair]=true;
         Limtcheck[address(uniswapV2Router)]=true;
    }   

 
    function _payFee(address _from, uint256 _amount) private {
        if(_amount > 0) {
            super._transfer(_from, address(this), _amount);
        }
    }


    function _swapCollectedTokensToETH(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketting_address,            block.timestamp
        );

        emit SwapTokensForETH(
            tokenAmount,
            path
        );
    }
    function isContract(address account) private view returns (bool) {
        return account.code.length > 0;
    }

 
    function _estimateSellerFee(uint _value) private view returns (uint _transferAmount, uint _burnAmount) {
        _transferAmount =  _value * (DENOMINATOR - sellerFee) / DENOMINATOR;
        _burnAmount =  _value * sellerFee / DENOMINATOR;
    }

       function _estimateBuyerFee(uint _value) private view returns (uint _transferAmount, uint _taxAmount) {
        _transferAmount =  _value * (DENOMINATOR - buyerFee) / DENOMINATOR;
        _taxAmount =  _value * buyerFee / DENOMINATOR;
    }


    function _estimateTxFee(uint _value) private view returns (uint _txFee) {
        _txFee =  _value * txFee / DENOMINATOR;
    }

}

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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_OWNER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXCLUDED_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PAIR_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"UpdateLimitcheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"changeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"grantRoleToPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeTo","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":[],"name":"maxAmount","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":"ownedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"revokePairRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxAmount","type":"uint256"}],"name":"updateMaxTransferAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellerFee","type":"uint256"}],"name":"updateSellerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxFee","type":"uint256"}],"name":"updateTxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526105dc6009556000600a819055600b556b813f3978f894098440000000600c55600d80546001600160a81b0319167405316124ae106a36914e17e59096dad3d376af6d001790553480156200005857600080fd5b5060408051808201825260098152684261694b6920496e7560b81b6020808301918252835180850190945260058452644261694b6960d81b908401528151919291620000a79160039162000626565b508051620000bd90600490602084019062000626565b505050620000f9620000d46200020f60201b60201c565b620000e26012600a62000760565b620000f39064e8d4a510006200081f565b62000213565b62000115600060008051602062002ce3833981519152620002fc565b6200013060008051602062002ce38339815191523362000347565b6200014b60008051602062002cc38339815191523362000347565b6200016660008051602062002cc38339815191523062000347565b600880546001600160a01b0319163317905562000197737a250d5630b4cf539739df2c5dacb4c659f2488d62000353565b600d5461010090046001600160a01b031660009081526006602081905260408083208054600160ff1991821681179092553085529184208054909216811790915591620001e13390565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905562000894565b3390565b6001600160a01b0382166200026e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002829190620006fc565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b1908490620006fc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b620002f882826200056f565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a0155916004808301926020929190829003018186803b158015620003ab57600080fd5b505afa158015620003c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e69190620006cc565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044457600080fd5b505afa15801562000459573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047f9190620006cc565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004c857600080fd5b505af1158015620004dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005039190620006cc565b9050620005317fd2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5d8262000347565b6001600160a01b039081166000908152600660205260408082208054600160ff19918216811790925560075490941683529120805490921617905550565b6200057b8282620005f9565b620002f85760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620005b53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b828054620006349062000841565b90600052602060002090601f016020900481019282620006585760008555620006a3565b82601f106200067357805160ff1916838001178555620006a3565b82800160010185558215620006a3579182015b82811115620006a357825182559160200191906001019062000686565b50620006b1929150620006b5565b5090565b5b80821115620006b15760008155600101620006b6565b600060208284031215620006de578081fd5b81516001600160a01b0381168114620006f5578182fd5b9392505050565b600082198211156200071257620007126200087e565b500190565b600181815b80851115620007585781600019048211156200073c576200073c6200087e565b808516156200074a57918102915b93841c93908002906200071c565b509250929050565b6000620006f560ff8416836000826200077c5750600162000620565b816200078b5750600062000620565b8160018114620007a45760028114620007af57620007cf565b600191505062000620565b60ff841115620007c357620007c36200087e565b50506001821b62000620565b5060208310610133831016604e8410600b8410161715620007f4575081810a62000620565b62000800838362000717565b80600019048211156200081757620008176200087e565b029392505050565b60008160001904831182151516156200083c576200083c6200087e565b500290565b600181811c908216806200085657607f821691505b602082108114156200087857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61241f80620008a46000396000f3fe6080604052600436106102345760003560e01c806372b7685d1161012e578063b6dd0492116100ab578063da8303361161006f578063da83033614610698578063dd62ed3e146106b8578063e1f3d55a146106d8578063f2fde38b146106ee578063f6623bee1461070e57600080fd5b8063b6dd04921461060d578063bd70239b1461062d578063cf8204611461064d578063cfc1e57014610663578063d096cd081461067857600080fd5b8063a217fddf116100f2578063a217fddf14610578578063a457c2d71461058d578063a9059cbb146105ad578063a94fd94e146105cd578063addcf55f146105ed57600080fd5b806372b7685d146104cf57806391d14854146104ff57806395d89b411461051f578063961610d9146105345780639a13dc8c1461055657600080fd5b8063340ac20f116101bc5780635de6c42f116101805780635de6c42f146104365780635f48f3931461044c57806364f91c721461046257806370a0823114610484578063715018a6146104ba57600080fd5b8063340ac20f146103945780633515b1af146103b657806336568abe146103d657806339509351146103f657806347061add1461041657600080fd5b806318160ddd1161020357806318160ddd146102ef578063220f66961461030e57806323b872dd14610328578063248a9ca314610348578063313ce5671461037857600080fd5b806301ffc9a71461024057806306fdde0314610275578063095ea7b3146102975780631694505e146102b757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004611fe0565b61072e565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610765565b60405161026c91906120c0565b3480156102a357600080fd5b506102606102b2366004611f79565b6107f7565b3480156102c357600080fd5b506007546102d7906001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b3480156102fb57600080fd5b506002545b60405190815260200161026c565b34801561031a57600080fd5b50600d546102609060ff1681565b34801561033457600080fd5b50610260610343366004611f08565b61080f565b34801561035457600080fd5b50610300610363366004611fa4565b60009081526005602052604090206001015490565b34801561038457600080fd5b506040516012815260200161026c565b3480156103a057600080fd5b506103b46103af366004611e98565b610833565b005b3480156103c257600080fd5b506103b46103d1366004611e98565b61086e565b3480156103e257600080fd5b506103b46103f1366004611fbc565b61091e565b34801561040257600080fd5b50610260610411366004611f79565b610998565b34801561042257600080fd5b506103b4610431366004611e98565b6109ba565b34801561044257600080fd5b50610300600a5481565b34801561045857600080fd5b50610300600c5481565b34801561046e57600080fd5b506103006000805160206123ca83398151915281565b34801561049057600080fd5b5061030061049f366004611e98565b6001600160a01b031660009081526020819052604090205490565b3480156104c657600080fd5b506103b4610ae5565b3480156104db57600080fd5b506102606104ea366004611e98565b60066020526000908152604090205460ff1681565b34801561050b57600080fd5b5061026061051a366004611fbc565b610b77565b34801561052b57600080fd5b5061028a610ba2565b34801561054057600080fd5b5061030060008051602061238a83398151915281565b34801561056257600080fd5b506103006000805160206123aa83398151915281565b34801561058457600080fd5b50610300600081565b34801561059957600080fd5b506102606105a8366004611f79565b610bb1565b3480156105b957600080fd5b506102606105c8366004611f79565b610c2c565b3480156105d957600080fd5b506103b46105e8366004611fa4565b610c3a565b3480156105f957600080fd5b506008546102d7906001600160a01b031681565b34801561061957600080fd5b506103b4610628366004611e98565b610c58565b34801561063957600080fd5b506103b4610648366004611fa4565b610cfa565b34801561065957600080fd5b50610300600b5481565b34801561066f57600080fd5b506103b4610d84565b34801561068457600080fd5b506103b4610693366004611e98565b610dbf565b3480156106a457600080fd5b506103b46106b3366004611f48565b610e69565b3480156106c457600080fd5b506103006106d3366004611ed0565b610ead565b3480156106e457600080fd5b5061030060095481565b3480156106fa57600080fd5b506103b4610709366004611e98565b610ed8565b34801561071a57600080fd5b506103b4610729366004611fa4565b610fea565b60006001600160e01b0319821663830d5e4960e01b148061075f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461077490612323565b80601f01602080910402602001604051908101604052809291908181526020018280546107a090612323565b80156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b5050505050905090565b600033610805818585611008565b5060019392505050565b60003361081d85828561112c565b6108288585856111a6565b506001949350505050565b6000805160206123aa83398151915261084b8161158e565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123aa8339815191526108868161158e565b61089e6000805160206123ca83398151915283610b77565b6109025760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b61091a6000805160206123ca8339815191528361159b565b5050565b6001600160a01b038116331461098e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016108f9565b61091a828261159b565b6000336108058185856109ab8383610ead565b6109b59190612272565b611008565b6000805160206123aa8339815191526109d28161158e565b6001600160a01b0382163b610a4f5760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e747261637420616464726573730000000000000060648201526084016108f9565b610a676000805160206123ca83398151915283610b77565b15610acd5760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b60648201526084016108f9565b61091a6000805160206123ca83398151915283611602565b6000805160206123aa833981519152610afd8161158e565b610b166000805160206123aa8339815191526000610b77565b15610b335760405162461bcd60e51b81526004016108f99061217c565b610b4b6000805160206123aa8339815191523361159b565b610b646000805160206123aa8339815191526000611602565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461077490612323565b60003381610bbf8286610ead565b905083811015610c1f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108f9565b6108288286868403611008565b6000336108058185856111a6565b6000805160206123aa833981519152610c528161158e565b50600b55565b6000805160206123aa833981519152610c708161158e565b610c8860008051602061238a83398151915283610b77565b610ce25760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b60648201526084016108f9565b61091a60008051602061238a8339815191528361159b565b6000805160206123aa833981519152610d128161158e565b60008211610d7e5760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207570646174654d61785472616e73666572416d6f756e746044820152720203a206e65774d6178416d6f756e74203e203606c1b60648201526084016108f9565b50600c55565b6000805160206123aa833981519152610d9c8161158e565b3060009081526020819052604090205480610db657600080fd5b61091a8161160c565b6000805160206123aa833981519152610dd78161158e565b610def60008051602061238a83398151915283610b77565b15610e515760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b60648201526084016108f9565b61091a60008051602061238a83398151915283611602565b6000805160206123aa833981519152610e818161158e565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206123aa833981519152610ef08161158e565b6001600160a01b038216610f625760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b60648201526084016108f9565b610f7a6000805160206123aa83398151915283610b77565b15610f975760405162461bcd60e51b81526004016108f99061217c565b610faf6000805160206123aa8339815191523361159b565b610fc76000805160206123aa83398151915283611602565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123aa8339815191526110028161158e565b50600955565b6001600160a01b03831661106a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108f9565b6001600160a01b0382166110cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108f9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111388484610ead565b905060001981146111a057818110156111935760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108f9565b6111a08484848403611008565b50505050565b6001600160a01b0383166111cc5760405162461bcd60e51b81526004016108f9906121d0565b6001600160a01b0382166111f25760405162461bcd60e51b81526004016108f9906120f3565b6001600160a01b03821660009081526006602052604090205460ff1661128c5761123b81611235846001600160a01b031660009081526020819052604090205490565b906117ec565b600c54101561128c5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d6178416d6f756e74203e3d20616d6f756e7400000000000060448201526064016108f9565b611294611e5c565b6001600160a01b03841660009081526020819052604090205481526112b7611e7a565b6112cf6000805160206123aa83398151915286610b77565b1580156112f157506112ef6000805160206123aa83398151915285610b77565b155b801561131257506113106000805160206123aa83398151915233610b77565b155b1515815261132e60008051602061238a83398151915286610b77565b8061134c575061134c60008051602061238a83398151915285610b77565b1515602082015281518311156113745760405162461bcd60e51b81526004016108f990612136565b61138c6000805160206123ca83398151915285610b77565b801561139b5750600d5460ff16155b156113c1573060009081526020819052604090205480156113bf576113bf8161160c565b505b805180156113d157506020810151155b80156113e05750600d5460ff16155b1561147057826113fe6000805160206123ca83398151915286610b77565b156114185761140c84611852565b60208501529350611446565b6114306000805160206123ca83398151915233610b77565b156114465761143e846118a0565b602085015293505b61144f816118dd565b60408401819052841061146e57604083015161146b90856122c9565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906114ab908490612272565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516114f791815260200190565b60405180910390a3602082015115801590611510575080515b801561151e57506020810151155b801561152d5750600d5460ff16155b15611543576115438583600160200201516118fa565b604082015115801590611554575080515b801561156257506020810151155b80156115715750600d5460ff16155b156115875761158785836002602002015161190b565b5050505050565b6115988133611a7b565b50565b6115a58282610b77565b1561091a5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61091a8282611adf565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061165c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156116b057600080fd5b505afa1580156116c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e89190611eb4565b8160018151811061170957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260075461172f9130911684611008565b600754600d5460405163791ac94760e01b81526001600160a01b039283169263791ac947926117739287926000928892610100909104909116904290600401612236565b600060405180830381600087803b15801561178d57600080fd5b505af11580156117a1573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516117d6929190612215565b60405180910390a15050600d805460ff19169055565b6000806117f98385612272565b90508381101561184b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108f9565b9392505050565b60008061271060095461271061186891906122c9565b61187290856122aa565b61187c919061228a565b91506127106009548461188f91906122aa565b611899919061228a565b9050915091565b600080612710600a546127106118b691906122c9565b6118c090856122aa565b6118ca919061228a565b9150612710600a548461188f91906122aa565b6000612710600b54836118f091906122aa565b61075f919061228a565b801561091a5761091a823083611b65565b6001600160a01b03821661196b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108f9565b6001600160a01b038216600090815260208190526040902054818110156119df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108f9565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611a30908490612272565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611a858282610b77565b61091a57611a9d816001600160a01b03166014611c7a565b611aa8836020611c7a565b604051602001611ab992919061204b565b60408051601f198184030181529082905262461bcd60e51b82526108f9916004016120c0565b611ae98282610b77565b61091a5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611b213390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6001600160a01b038316611b8b5760405162461bcd60e51b81526004016108f9906121d0565b6001600160a01b038216611bb15760405162461bcd60e51b81526004016108f9906120f3565b6001600160a01b03831660009081526020819052604090205481811015611bea5760405162461bcd60e51b81526004016108f990612136565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c21908490612272565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c6d91815260200190565b60405180910390a36111a0565b60606000611c898360026122aa565b611c94906002612272565b67ffffffffffffffff811115611cba57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce4576020820181803683370190505b509050600360fc1b81600081518110611d0d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d4a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d6e8460026122aa565b611d79906001612272565b90505b6001811115611e0d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611dbb57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611ddf57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611e068161230c565b9050611d7c565b50831561184b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108f9565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611ea9578081fd5b813561184b81612374565b600060208284031215611ec5578081fd5b815161184b81612374565b60008060408385031215611ee2578081fd5b8235611eed81612374565b91506020830135611efd81612374565b809150509250929050565b600080600060608486031215611f1c578081fd5b8335611f2781612374565b92506020840135611f3781612374565b929592945050506040919091013590565b60008060408385031215611f5a578182fd5b8235611f6581612374565b915060208301358015158114611efd578182fd5b60008060408385031215611f8b578182fd5b8235611f9681612374565b946020939093013593505050565b600060208284031215611fb5578081fd5b5035919050565b60008060408385031215611fce578182fd5b823591506020830135611efd81612374565b600060208284031215611ff1578081fd5b81356001600160e01b03198116811461184b578182fd5b6000815180845260208085019450808401835b838110156120405781516001600160a01b03168752958201959082019060010161201b565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516120838160178501602088016122e0565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120b48160288401602088016122e0565b01602801949350505050565b60208152600082518060208401526120df8160408501602087016122e0565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b82815260406020820152600061222e6040830184612008565b949350505050565b85815284602082015260a06040820152600061225560a0830186612008565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156122855761228561235e565b500190565b6000826122a557634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156122c4576122c461235e565b500290565b6000828210156122db576122db61235e565b500390565b60005b838110156122fb5781810151838201526020016122e3565b838111156111a05750506000910152565b60008161231b5761231b61235e565b506000190190565b600181811c9082168061233757607f821691505b6020821081141561235857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461159857600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da26469706673582212203ecc4a5265cd9045777cd9394b315a5f630c9bf64720c40f979374326313bb2b64736f6c63430008040033270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3

Deployed Bytecode

0x6080604052600436106102345760003560e01c806372b7685d1161012e578063b6dd0492116100ab578063da8303361161006f578063da83033614610698578063dd62ed3e146106b8578063e1f3d55a146106d8578063f2fde38b146106ee578063f6623bee1461070e57600080fd5b8063b6dd04921461060d578063bd70239b1461062d578063cf8204611461064d578063cfc1e57014610663578063d096cd081461067857600080fd5b8063a217fddf116100f2578063a217fddf14610578578063a457c2d71461058d578063a9059cbb146105ad578063a94fd94e146105cd578063addcf55f146105ed57600080fd5b806372b7685d146104cf57806391d14854146104ff57806395d89b411461051f578063961610d9146105345780639a13dc8c1461055657600080fd5b8063340ac20f116101bc5780635de6c42f116101805780635de6c42f146104365780635f48f3931461044c57806364f91c721461046257806370a0823114610484578063715018a6146104ba57600080fd5b8063340ac20f146103945780633515b1af146103b657806336568abe146103d657806339509351146103f657806347061add1461041657600080fd5b806318160ddd1161020357806318160ddd146102ef578063220f66961461030e57806323b872dd14610328578063248a9ca314610348578063313ce5671461037857600080fd5b806301ffc9a71461024057806306fdde0314610275578063095ea7b3146102975780631694505e146102b757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004611fe0565b61072e565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610765565b60405161026c91906120c0565b3480156102a357600080fd5b506102606102b2366004611f79565b6107f7565b3480156102c357600080fd5b506007546102d7906001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b3480156102fb57600080fd5b506002545b60405190815260200161026c565b34801561031a57600080fd5b50600d546102609060ff1681565b34801561033457600080fd5b50610260610343366004611f08565b61080f565b34801561035457600080fd5b50610300610363366004611fa4565b60009081526005602052604090206001015490565b34801561038457600080fd5b506040516012815260200161026c565b3480156103a057600080fd5b506103b46103af366004611e98565b610833565b005b3480156103c257600080fd5b506103b46103d1366004611e98565b61086e565b3480156103e257600080fd5b506103b46103f1366004611fbc565b61091e565b34801561040257600080fd5b50610260610411366004611f79565b610998565b34801561042257600080fd5b506103b4610431366004611e98565b6109ba565b34801561044257600080fd5b50610300600a5481565b34801561045857600080fd5b50610300600c5481565b34801561046e57600080fd5b506103006000805160206123ca83398151915281565b34801561049057600080fd5b5061030061049f366004611e98565b6001600160a01b031660009081526020819052604090205490565b3480156104c657600080fd5b506103b4610ae5565b3480156104db57600080fd5b506102606104ea366004611e98565b60066020526000908152604090205460ff1681565b34801561050b57600080fd5b5061026061051a366004611fbc565b610b77565b34801561052b57600080fd5b5061028a610ba2565b34801561054057600080fd5b5061030060008051602061238a83398151915281565b34801561056257600080fd5b506103006000805160206123aa83398151915281565b34801561058457600080fd5b50610300600081565b34801561059957600080fd5b506102606105a8366004611f79565b610bb1565b3480156105b957600080fd5b506102606105c8366004611f79565b610c2c565b3480156105d957600080fd5b506103b46105e8366004611fa4565b610c3a565b3480156105f957600080fd5b506008546102d7906001600160a01b031681565b34801561061957600080fd5b506103b4610628366004611e98565b610c58565b34801561063957600080fd5b506103b4610648366004611fa4565b610cfa565b34801561065957600080fd5b50610300600b5481565b34801561066f57600080fd5b506103b4610d84565b34801561068457600080fd5b506103b4610693366004611e98565b610dbf565b3480156106a457600080fd5b506103b46106b3366004611f48565b610e69565b3480156106c457600080fd5b506103006106d3366004611ed0565b610ead565b3480156106e457600080fd5b5061030060095481565b3480156106fa57600080fd5b506103b4610709366004611e98565b610ed8565b34801561071a57600080fd5b506103b4610729366004611fa4565b610fea565b60006001600160e01b0319821663830d5e4960e01b148061075f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461077490612323565b80601f01602080910402602001604051908101604052809291908181526020018280546107a090612323565b80156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b5050505050905090565b600033610805818585611008565b5060019392505050565b60003361081d85828561112c565b6108288585856111a6565b506001949350505050565b6000805160206123aa83398151915261084b8161158e565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123aa8339815191526108868161158e565b61089e6000805160206123ca83398151915283610b77565b6109025760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b61091a6000805160206123ca8339815191528361159b565b5050565b6001600160a01b038116331461098e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016108f9565b61091a828261159b565b6000336108058185856109ab8383610ead565b6109b59190612272565b611008565b6000805160206123aa8339815191526109d28161158e565b6001600160a01b0382163b610a4f5760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e747261637420616464726573730000000000000060648201526084016108f9565b610a676000805160206123ca83398151915283610b77565b15610acd5760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b60648201526084016108f9565b61091a6000805160206123ca83398151915283611602565b6000805160206123aa833981519152610afd8161158e565b610b166000805160206123aa8339815191526000610b77565b15610b335760405162461bcd60e51b81526004016108f99061217c565b610b4b6000805160206123aa8339815191523361159b565b610b646000805160206123aa8339815191526000611602565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461077490612323565b60003381610bbf8286610ead565b905083811015610c1f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108f9565b6108288286868403611008565b6000336108058185856111a6565b6000805160206123aa833981519152610c528161158e565b50600b55565b6000805160206123aa833981519152610c708161158e565b610c8860008051602061238a83398151915283610b77565b610ce25760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b60648201526084016108f9565b61091a60008051602061238a8339815191528361159b565b6000805160206123aa833981519152610d128161158e565b60008211610d7e5760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207570646174654d61785472616e73666572416d6f756e746044820152720203a206e65774d6178416d6f756e74203e203606c1b60648201526084016108f9565b50600c55565b6000805160206123aa833981519152610d9c8161158e565b3060009081526020819052604090205480610db657600080fd5b61091a8161160c565b6000805160206123aa833981519152610dd78161158e565b610def60008051602061238a83398151915283610b77565b15610e515760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b60648201526084016108f9565b61091a60008051602061238a83398151915283611602565b6000805160206123aa833981519152610e818161158e565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206123aa833981519152610ef08161158e565b6001600160a01b038216610f625760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b60648201526084016108f9565b610f7a6000805160206123aa83398151915283610b77565b15610f975760405162461bcd60e51b81526004016108f99061217c565b610faf6000805160206123aa8339815191523361159b565b610fc76000805160206123aa83398151915283611602565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123aa8339815191526110028161158e565b50600955565b6001600160a01b03831661106a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108f9565b6001600160a01b0382166110cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108f9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111388484610ead565b905060001981146111a057818110156111935760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108f9565b6111a08484848403611008565b50505050565b6001600160a01b0383166111cc5760405162461bcd60e51b81526004016108f9906121d0565b6001600160a01b0382166111f25760405162461bcd60e51b81526004016108f9906120f3565b6001600160a01b03821660009081526006602052604090205460ff1661128c5761123b81611235846001600160a01b031660009081526020819052604090205490565b906117ec565b600c54101561128c5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d6178416d6f756e74203e3d20616d6f756e7400000000000060448201526064016108f9565b611294611e5c565b6001600160a01b03841660009081526020819052604090205481526112b7611e7a565b6112cf6000805160206123aa83398151915286610b77565b1580156112f157506112ef6000805160206123aa83398151915285610b77565b155b801561131257506113106000805160206123aa83398151915233610b77565b155b1515815261132e60008051602061238a83398151915286610b77565b8061134c575061134c60008051602061238a83398151915285610b77565b1515602082015281518311156113745760405162461bcd60e51b81526004016108f990612136565b61138c6000805160206123ca83398151915285610b77565b801561139b5750600d5460ff16155b156113c1573060009081526020819052604090205480156113bf576113bf8161160c565b505b805180156113d157506020810151155b80156113e05750600d5460ff16155b1561147057826113fe6000805160206123ca83398151915286610b77565b156114185761140c84611852565b60208501529350611446565b6114306000805160206123ca83398151915233610b77565b156114465761143e846118a0565b602085015293505b61144f816118dd565b60408401819052841061146e57604083015161146b90856122c9565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906114ab908490612272565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516114f791815260200190565b60405180910390a3602082015115801590611510575080515b801561151e57506020810151155b801561152d5750600d5460ff16155b15611543576115438583600160200201516118fa565b604082015115801590611554575080515b801561156257506020810151155b80156115715750600d5460ff16155b156115875761158785836002602002015161190b565b5050505050565b6115988133611a7b565b50565b6115a58282610b77565b1561091a5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61091a8282611adf565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061165c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156116b057600080fd5b505afa1580156116c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e89190611eb4565b8160018151811061170957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260075461172f9130911684611008565b600754600d5460405163791ac94760e01b81526001600160a01b039283169263791ac947926117739287926000928892610100909104909116904290600401612236565b600060405180830381600087803b15801561178d57600080fd5b505af11580156117a1573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516117d6929190612215565b60405180910390a15050600d805460ff19169055565b6000806117f98385612272565b90508381101561184b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108f9565b9392505050565b60008061271060095461271061186891906122c9565b61187290856122aa565b61187c919061228a565b91506127106009548461188f91906122aa565b611899919061228a565b9050915091565b600080612710600a546127106118b691906122c9565b6118c090856122aa565b6118ca919061228a565b9150612710600a548461188f91906122aa565b6000612710600b54836118f091906122aa565b61075f919061228a565b801561091a5761091a823083611b65565b6001600160a01b03821661196b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108f9565b6001600160a01b038216600090815260208190526040902054818110156119df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108f9565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611a30908490612272565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611a858282610b77565b61091a57611a9d816001600160a01b03166014611c7a565b611aa8836020611c7a565b604051602001611ab992919061204b565b60408051601f198184030181529082905262461bcd60e51b82526108f9916004016120c0565b611ae98282610b77565b61091a5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611b213390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6001600160a01b038316611b8b5760405162461bcd60e51b81526004016108f9906121d0565b6001600160a01b038216611bb15760405162461bcd60e51b81526004016108f9906120f3565b6001600160a01b03831660009081526020819052604090205481811015611bea5760405162461bcd60e51b81526004016108f990612136565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c21908490612272565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c6d91815260200190565b60405180910390a36111a0565b60606000611c898360026122aa565b611c94906002612272565b67ffffffffffffffff811115611cba57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce4576020820181803683370190505b509050600360fc1b81600081518110611d0d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d4a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d6e8460026122aa565b611d79906001612272565b90505b6001811115611e0d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611dbb57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611ddf57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611e068161230c565b9050611d7c565b50831561184b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108f9565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611ea9578081fd5b813561184b81612374565b600060208284031215611ec5578081fd5b815161184b81612374565b60008060408385031215611ee2578081fd5b8235611eed81612374565b91506020830135611efd81612374565b809150509250929050565b600080600060608486031215611f1c578081fd5b8335611f2781612374565b92506020840135611f3781612374565b929592945050506040919091013590565b60008060408385031215611f5a578182fd5b8235611f6581612374565b915060208301358015158114611efd578182fd5b60008060408385031215611f8b578182fd5b8235611f9681612374565b946020939093013593505050565b600060208284031215611fb5578081fd5b5035919050565b60008060408385031215611fce578182fd5b823591506020830135611efd81612374565b600060208284031215611ff1578081fd5b81356001600160e01b03198116811461184b578182fd5b6000815180845260208085019450808401835b838110156120405781516001600160a01b03168752958201959082019060010161201b565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516120838160178501602088016122e0565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120b48160288401602088016122e0565b01602801949350505050565b60208152600082518060208401526120df8160408501602087016122e0565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b82815260406020820152600061222e6040830184612008565b949350505050565b85815284602082015260a06040820152600061225560a0830186612008565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156122855761228561235e565b500190565b6000826122a557634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156122c4576122c461235e565b500290565b6000828210156122db576122db61235e565b500390565b60005b838110156122fb5781810151838201526020016122e3565b838111156111a05750506000910152565b60008161231b5761231b61235e565b506000190190565b600181811c9082168061233757607f821691505b6020821081141561235857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461159857600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da26469706673582212203ecc4a5265cd9045777cd9394b315a5f630c9bf64720c40f979374326313bb2b64736f6c63430008040033

Deployed Bytecode Sourcemap

32290:9528:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10733:204;;;;;;;;;;-1:-1:-1;10733:204:0;;;;;:::i;:::-;;:::i;:::-;;;4850:14:1;;4843:22;4825:41;;4813:2;4798:18;10733:204:0;;;;;;;;19913:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22264:201::-;;;;;;;;;;-1:-1:-1;22264:201:0;;;;;:::i;:::-;;:::i;32424:41::-;;;;;;;;;;-1:-1:-1;32424:41:0;;;;-1:-1:-1;;;;;32424:41:0;;;;;;-1:-1:-1;;;;;4641:32:1;;;4623:51;;4611:2;4596:18;32424:41:0;4578:102:1;21033:108:0;;;;;;;;;;-1:-1:-1;21121:12:0;;21033:108;;;5023:25:1;;;5011:2;4996:18;21033:108:0;4978:76:1;32922:36:0;;;;;;;;;;-1:-1:-1;32922:36:0;;;;;;;;23045:295;;;;;;;;;;-1:-1:-1;23045:295:0;;;;;:::i;:::-;;:::i;12569:131::-;;;;;;;;;;-1:-1:-1;12569:131:0;;;;;:::i;:::-;12643:7;12670:12;;;:6;:12;;;;;:22;;;;12569:131;20875:93;;;;;;;;;;-1:-1:-1;20875:93:0;;20958:2;15345:36:1;;15333:2;15318:18;20875:93:0;15300:87:1;36583:136:0;;;;;;;;;;-1:-1:-1;36583:136:0;;;;;:::i;:::-;;:::i;:::-;;34565:207;;;;;;;;;;-1:-1:-1;34565:207:0;;;;;:::i;:::-;;:::i;13207:218::-;;;;;;;;;;-1:-1:-1;13207:218:0;;;;;:::i;:::-;;:::i;23749:238::-;;;;;;;;;;-1:-1:-1;23749:238:0;;;;;:::i;:::-;;:::i;33869:311::-;;;;;;;;;;-1:-1:-1;33869:311:0;;;;;:::i;:::-;;:::i;32819:24::-;;;;;;;;;;;;;;;;32878:36;;;;;;;;;;;;;;;;32474:72;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32474:72:0;;21204:127;;;;;;;;;;-1:-1:-1;21204:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;21305:18:0;21278:7;21305:18;;;;;;;;;;;;21204:127;35564:309;;;;;;;;;;;;;:::i;32374:41::-;;;;;;;;;;-1:-1:-1;32374:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;11029:147;;;;;;;;;;-1:-1:-1;11029:147:0;;;;;:::i;:::-;;:::i;20132:104::-;;;;;;;;;;;;;:::i;32630:71::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32630:71:0;;32553:70;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32553:70:0;;10134:49;;;;;;;;;;-1:-1:-1;10134:49:0;10179:4;10134:49;;24490:436;;;;;;;;;;-1:-1:-1;24490:436:0;;;;;:::i;:::-;;:::i;21537:193::-;;;;;;;;;;-1:-1:-1;21537:193:0;;;;;:::i;:::-;;:::i;35933:104::-;;;;;;;;;;-1:-1:-1;35933:104:0;;;;;:::i;:::-;;:::i;32714:22::-;;;;;;;;;;-1:-1:-1;32714:22:0;;;;-1:-1:-1;;;;;32714:22:0;;;34836:212;;;;;;;;;;-1:-1:-1;34836:212:0;;;;;:::i;:::-;;:::i;36295:219::-;;;;;;;;;;-1:-1:-1;36295:219:0;;;;;:::i;:::-;;:::i;32850:21::-;;;;;;;;;;;;;;;;36798:186;;;;;;;;;;;;;:::i;34191:223::-;;;;;;;;;;-1:-1:-1;34191:223:0;;;;;:::i;:::-;;:::i;34422:130::-;;;;;;;;;;-1:-1:-1;34422:130:0;;;;;:::i;:::-;;:::i;21793:151::-;;;;;;;;;;-1:-1:-1;21793:151:0;;;;;:::i;:::-;;:::i;32783:28::-;;;;;;;;;;;;;;;;35139:416;;;;;;;;;;-1:-1:-1;35139:416:0;;;;;:::i;:::-;;:::i;36101:120::-;;;;;;;;;;-1:-1:-1;36101:120:0;;;;;:::i;:::-;;:::i;10733:204::-;10818:4;-1:-1:-1;;;;;;10842:47:0;;-1:-1:-1;;;10842:47:0;;:87;;-1:-1:-1;;;;;;;;;;8251:40:0;;;10893:36;10835:94;10733:204;-1:-1:-1;;10733:204:0:o;19913:100::-;19967:13;20000:5;19993:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19913:100;:::o;22264:201::-;22347:4;7284:10;22403:32;7284:10;22419:7;22428:6;22403:8;:32::i;:::-;-1:-1:-1;22453:4:0;;22264:201;-1:-1:-1;;;22264:201:0:o;23045:295::-;23176:4;7284:10;23234:38;23250:4;7284:10;23265:6;23234:15;:38::i;:::-;23283:27;23293:4;23299:2;23303:6;23283:9;:27::i;:::-;-1:-1:-1;23328:4:0;;23045:295;-1:-1:-1;;;;23045:295:0:o;36583:136::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;36666:15:0::1;:45:::0;;-1:-1:-1;;;;;;36666:45:0::1;-1:-1:-1::0;;;;;36666:45:0;;;::::1;::::0;;;::::1;::::0;;36583:136::o;34565:207::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;34655:24:::1;-1:-1:-1::0;;;;;;;;;;;34674:4:0::1;34655:7;:24::i;:::-;34647:79;;;::::0;-1:-1:-1;;;34647:79:0;;13066:2:1;34647:79:0::1;::::0;::::1;13048:21:1::0;13105:2;13085:18;;;13078:30;13144:34;13124:18;;;13117:62;-1:-1:-1;;;13195:18:1;;;13188:40;13245:19;;34647:79:0::1;;;;;;;;;34737:27;-1:-1:-1::0;;;;;;;;;;;34759:4:0::1;34737:11;:27::i;:::-;34565:207:::0;;:::o;13207:218::-;-1:-1:-1;;;;;13303:23:0;;7284:10;13303:23;13295:83;;;;-1:-1:-1;;;13295:83:0;;13883:2:1;13295:83:0;;;13865:21:1;13922:2;13902:18;;;13895:30;13961:34;13941:18;;;13934:62;-1:-1:-1;;;14012:18:1;;;14005:45;14067:19;;13295:83:0;13855:237:1;13295:83:0;13391:26;13403:4;13409:7;13391:11;:26::i;23749:238::-;23837:4;7284:10;23893:64;7284:10;23909:7;23946:10;23918:25;7284:10;23909:7;23918:9;:25::i;:::-;:38;;;;:::i;:::-;23893:8;:64::i;33869:311::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;;;;;41132:19:0;;;33952:86:::1;;;::::0;-1:-1:-1;;;33952:86:0;;7471:2:1;33952:86:0::1;::::0;::::1;7453:21:1::0;7510:2;7490:18;;;7483:30;7549:34;7529:18;;;7522:62;7620:27;7600:18;;;7593:55;7665:19;;33952:86:0::1;7443:247:1::0;33952:86:0::1;34058:24;-1:-1:-1::0;;;;;;;;;;;34077:4:0::1;34058:7;:24::i;:::-;34057:25;34049:86;;;::::0;-1:-1:-1;;;34049:86:0;;11015:2:1;34049:86:0::1;::::0;::::1;10997:21:1::0;11054:2;11034:18;;;11027:30;11093:34;11073:18;;;11066:62;-1:-1:-1;;;11144:18:1;;;11137:46;11200:19;;34049:86:0::1;10987:238:1::0;34049:86:0::1;34146:26;-1:-1:-1::0;;;;;;;;;;;34167:4:0::1;34146:10;:26::i;35564:309::-:0;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;35646:34:::1;-1:-1:-1::0;;;;;;;;;;;35677:1:0::1;35646:7;:34::i;:::-;35645:35;35637:100;;;;-1:-1:-1::0;;;35637:100:0::1;;;;;;;:::i;:::-;35748:39;-1:-1:-1::0;;;;;;;;;;;7284:10:0;35748:11:::1;:39::i;:::-;35798:36;-1:-1:-1::0;;;;;;;;;;;35831:1:0::1;35798:10;:36::i;:::-;-1:-1:-1::0;35845:7:0::1;:20:::0;;-1:-1:-1;;;;;;35845:20:0::1;::::0;;35564:309::o;11029:147::-;11115:4;11139:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11139:29:0;;;;;;;;;;;;;;;11029:147::o;20132:104::-;20188:13;20221:7;20214:14;;;;;:::i;24490:436::-;24583:4;7284:10;24583:4;24666:25;7284:10;24683:7;24666:9;:25::i;:::-;24639:52;;24730:15;24710:16;:35;;24702:85;;;;-1:-1:-1;;;24702:85:0;;13477:2:1;24702:85:0;;;13459:21:1;13516:2;13496:18;;;13489:30;13555:34;13535:18;;;13528:62;-1:-1:-1;;;13606:18:1;;;13599:35;13651:19;;24702:85:0;13449:227:1;24702:85:0;24823:60;24832:5;24839:7;24867:15;24848:16;:34;24823:8;:60::i;21537:193::-;21616:4;7284:10;21672:28;7284:10;21689:2;21693:6;21672:9;:28::i;35933:104::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;36013:5:0::1;:16:::0;35933:104::o;34836:212::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;34923:31:::1;-1:-1:-1::0;;;;;;;;;;;34946:7:0::1;34923;:31::i;:::-;34915:81;;;::::0;-1:-1:-1;;;34915:81:0;;9789:2:1;34915:81:0::1;::::0;::::1;9771:21:1::0;9828:2;9808:18;;;9801:30;9867:34;9847:18;;;9840:62;-1:-1:-1;;;9918:18:1;;;9911:35;9963:19;;34915:81:0::1;9761:227:1::0;34915:81:0::1;35006:34;-1:-1:-1::0;;;;;;;;;;;35032:7:0::1;35006:11;:34::i;36295:219::-:0;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;36414:1:::1;36399:12;:16;36391:80;;;::::0;-1:-1:-1;;;36391:80:0;;7051:2:1;36391:80:0::1;::::0;::::1;7033:21:1::0;7090:2;7070:18;;;7063:30;7129:34;7109:18;;;7102:62;-1:-1:-1;;;7180:18:1;;;7173:49;7239:19;;36391:80:0::1;7023:241:1::0;36391:80:0::1;-1:-1:-1::0;36482:9:0::1;:24:::0;36295:219::o;36798:186::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;36896:4:::1;36864:11;21305:18:::0;;;;;;;;;;;36921:10;36913:19:::1;;;::::0;::::1;;36943:33;36969:6;36943:25;:33::i;34191:223::-:0;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;34282:31:::1;-1:-1:-1::0;;;;;;;;;;;34305:7:0::1;34282;:31::i;:::-;34281:32;34273:89;;;::::0;-1:-1:-1;;;34273:89:0;;10602:2:1;34273:89:0::1;::::0;::::1;10584:21:1::0;10641:2;10621:18;;;10614:30;10680:34;10660:18;;;10653:62;-1:-1:-1;;;10731:18:1;;;10724:42;10783:19;;34273:89:0::1;10574:234:1::0;34273:89:0::1;34373:33;-1:-1:-1::0;;;;;;;;;;;34398:7:0::1;34373:10;:33::i;34422:130::-:0;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;;;;;;34520:16:0;;;::::1;;::::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;34520:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34422:130::o;21793:151::-;-1:-1:-1;;;;;21909:18:0;;;21882:7;21909:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21793:151::o;35139:416::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;;;;;35236:22:0;::::1;35228:86;;;::::0;-1:-1:-1;;;35228:86:0;;9369:2:1;35228:86:0::1;::::0;::::1;9351:21:1::0;9408:2;9388:18;;;9381:30;9447:34;9427:18;;;9420:62;-1:-1:-1;;;9498:18:1;;;9491:49;9557:19;;35228:86:0::1;9341:241:1::0;35228:86:0::1;35334:32;-1:-1:-1::0;;;;;;;;;;;35357:8:0::1;35334:7;:32::i;:::-;35333:33;35325:98;;;;-1:-1:-1::0;;;35325:98:0::1;;;;;;;:::i;:::-;35434:39;-1:-1:-1::0;;;;;;;;;;;7284:10:0;35748:11:::1;:39::i;35434:::-;35484:34;-1:-1:-1::0;;;;;;;;;;;35509:8:0::1;35484:10;:34::i;:::-;-1:-1:-1::0;35529:7:0::1;:18:::0;;-1:-1:-1;;;;;;35529:18:0::1;-1:-1:-1::0;;;;;35529:18:0;;;::::1;::::0;;;::::1;::::0;;35139:416::o;36101:120::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;36189:9:0::1;:24:::0;36101:120::o;28124:380::-;-1:-1:-1;;;;;28260:19:0;;28252:68;;;;-1:-1:-1;;;28252:68:0;;12661:2:1;28252:68:0;;;12643:21:1;12700:2;12680:18;;;12673:30;12739:34;12719:18;;;12712:62;-1:-1:-1;;;12790:18:1;;;12783:34;12834:19;;28252:68:0;12633:226:1;28252:68:0;-1:-1:-1;;;;;28339:21:0;;28331:68;;;;-1:-1:-1;;;28331:68:0;;7897:2:1;28331:68:0;;;7879:21:1;7936:2;7916:18;;;7909:30;7975:34;7955:18;;;7948:62;-1:-1:-1;;;8026:18:1;;;8019:32;8068:19;;28331:68:0;7869:224:1;28331:68:0;-1:-1:-1;;;;;28412:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28464:32;;5023:25:1;;;28464:32:0;;4996:18:1;28464:32:0;;;;;;;28124:380;;;:::o;28795:453::-;28930:24;28957:25;28967:5;28974:7;28957:9;:25::i;:::-;28930:52;;-1:-1:-1;;28997:16:0;:37;28993:248;;29079:6;29059:16;:26;;29051:68;;;;-1:-1:-1;;;29051:68:0;;9011:2:1;29051:68:0;;;8993:21:1;9050:2;9030:18;;;9023:30;9089:31;9069:18;;;9062:59;9138:18;;29051:68:0;8983:179:1;29051:68:0;29163:51;29172:5;29179:7;29207:6;29188:16;:25;29163:8;:51::i;:::-;28795:453;;;;:::o;37051:2174::-;-1:-1:-1;;;;;37183:18:0;;37175:68;;;;-1:-1:-1;;;37175:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37262:16:0;;37254:64;;;;-1:-1:-1;;;37254:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37335:13:0;;;;;;:9;:13;;;;;;;;37331:124;;37387:25;37405:6;37387:13;37397:2;-1:-1:-1;;;;;21305:18:0;21278:7;21305:18;;;;;;;;;;;;21204:127;37387:13;:17;;:25::i;:::-;37373:9;;:39;;37365:78;;;;-1:-1:-1;;;37365:78:0;;8656:2:1;37365:78:0;;;8638:21:1;8695:2;8675:18;;;8668:30;8734:28;8714:18;;;8707:56;8780:18;;37365:78:0;8628:176:1;37365:78:0;37526:26;;:::i;:::-;-1:-1:-1;;;;;37577:15:0;;:9;:15;;;;;;;;;;;37563:29;;37605:21;;:::i;:::-;37652:28;-1:-1:-1;;;;;;;;;;;37675:4:0;37652:7;:28::i;:::-;37651:29;37650:64;;;;;37687:26;-1:-1:-1;;;;;;;;;;;37710:2:0;37687:7;:26::i;:::-;37686:27;37650:64;:107;;;;-1:-1:-1;37720:36:0;-1:-1:-1;;;;;;;;;;;7284:10:0;11029:147;:::i;37720:36::-;37719:37;37650:107;37638:119;;;;37781:28;-1:-1:-1;;;;;;;;;;;37804:4:0;37781:7;:28::i;:::-;37780:62;;;;37815:26;-1:-1:-1;;;;;;;;;;;37838:2:0;37815:7;:26::i;:::-;37768:74;;:9;;;:74;37871:11;;:21;-1:-1:-1;37871:21:0;37863:72;;;;-1:-1:-1;;;37863:72:0;;;;;;;:::i;:::-;37959:22;-1:-1:-1;;;;;;;;;;;37978:2:0;37959:7;:22::i;:::-;:43;;;;-1:-1:-1;37986:16:0;;;;37985:17;37959:43;37956:237;;;38060:4;38019:20;21305:18;;;;;;;;;;;38084:19;;38081:101;;38124:42;38150:15;38124:25;:42::i;:::-;37956:237;;38208:9;;:23;;;;-1:-1:-1;38222:9:0;;;;38221:10;38208:23;:44;;;;-1:-1:-1;38236:16:0;;;;38235:17;38208:44;38205:521;;;38287:6;38313:22;-1:-1:-1;;;;;;;;;;;38332:2:0;38313:7;:22::i;:::-;38308:254;;;38394:26;38413:6;38394:18;:26::i;:::-;38379:11;;;38370:50;;-1:-1:-1;38308:254:0;;;38444:32;-1:-1:-1;;;;;;;;;;;7284:10:0;11029:147;:::i;38444:32::-;38441:121;;;38521:25;38539:6;38521:17;:25::i;:::-;38506:11;;;38497:49;;-1:-1:-1;38441:121:0;38593:23;38608:7;38593:14;:23::i;:::-;38579:11;;;:37;;;38636:21;;38633:82;;38688:11;;;;38678:21;;;;:::i;:::-;;;38633:82;38205:521;;38781:11;;-1:-1:-1;;;;;38763:15:0;;;38790:1;38763:15;;;38781:11;38763:15;;;;;;;38781:20;;;;38763:38;;;38823:13;;;;;;;;:23;;38795:6;;38790:1;38823:23;;38795:6;;38823:23;:::i;:::-;;;;;;;;38879:2;-1:-1:-1;;;;;38864:26:0;38873:4;-1:-1:-1;;;;;38864:26:0;;38883:6;38864:26;;;;5023:25:1;;5011:2;4996:18;;4978:76;38864:26:0;;;;;;;;38916:11;;;;:15;;;;38915:30;;-1:-1:-1;38936:9:0;;38915:30;:44;;;;-1:-1:-1;38950:9:0;;;;38949:10;38915:44;:65;;;;-1:-1:-1;38964:16:0;;;;38963:17;38915:65;38912:123;;;38997:26;39005:4;39011:8;39020:1;39011:11;;;;38997:7;:26::i;:::-;39051:11;;;;:15;;;;39050:30;;-1:-1:-1;39071:9:0;;39050:30;:44;;;;-1:-1:-1;39085:9:0;;;;39084:10;39050:44;:65;;;;-1:-1:-1;39099:16:0;;;;39098:17;39050:65;39047:121;;;39132:24;39138:4;39144:8;39153:1;39144:11;;;;39132:5;:24::i;:::-;37051:2174;;;;;:::o;11480:105::-;11547:30;11558:4;7284:10;11547;:30::i;:::-;11480:105;:::o;15078:239::-;15162:22;15170:4;15176:7;15162;:22::i;:::-;15158:152;;;15233:5;15201:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15201:29:0;;;;;;;;;;:37;;-1:-1:-1;;15201:37:0;;;15258:40;7284:10;;15201:12;;15258:40;;15233:5;15258:40;15078:239;;:::o;14084:112::-;14163:25;14174:4;14180:7;14163:10;:25::i;40454:589::-;33779:16;:23;;-1:-1:-1;;33779:23:0;33798:4;33779:23;;;40565:16:::1;::::0;;40579:1:::1;40565:16:::0;;;;;::::1;::::0;;-1:-1:-1;;40565:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40565:16:0::1;40541:40;;40610:4;40592;40597:1;40592:7;;;;;;-1:-1:-1::0;;;40592:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;40592:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;40636:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;40636:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;40592:7;;40636:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40626:4;40631:1;40626:7;;;;;;-1:-1:-1::0;;;40626:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;40626:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;40703:15:::1;::::0;40671:62:::1;::::0;40688:4:::1;::::0;40703:15:::1;40721:11:::0;40671:8:::1;:62::i;:::-;40746:15;::::0;40888:18:::1;::::0;40746:199:::1;::::0;-1:-1:-1;;;40746:199:0;;-1:-1:-1;;;;;40746:15:0;;::::1;::::0;:66:::1;::::0;:199:::1;::::0;40827:11;;40746:15:::1;::::0;40869:4;;40746:15:::1;40888:18:::0;;::::1;::::0;;::::1;::::0;40919:15:::1;::::0;40746:199:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40963:72;40994:11;41020:4;40963:72;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;33825:16:0;:24;;-1:-1:-1;;33825:24:0;;;40454:589::o;30734:181::-;30792:7;;30824:5;30828:1;30824;:5;:::i;:::-;30812:17;;30853:1;30848;:6;;30840:46;;;;-1:-1:-1;;;30840:46:0;;8300:2:1;30840:46:0;;;8282:21:1;8339:2;8319:18;;;8312:30;8378:29;8358:18;;;8351:57;8425:18;;30840:46:0;8272:177:1;30840:46:0;30906:1;30734:181;-1:-1:-1;;;30734:181:0:o;41174:247::-;41237:20;41259:16;32771:5;41331:9;;32771:5;41317:23;;;;:::i;:::-;41307:34;;:6;:34;:::i;:::-;:48;;;;:::i;:::-;41288:67;;32771:5;41390:9;;41381:6;:18;;;;:::i;:::-;:32;;;;:::i;:::-;41366:47;;41174:247;;;:::o;41432:242::-;41494:20;41516:15;32771:5;41587:8;;32771:5;41573:22;;;;:::i;:::-;41563:33;;:6;:33;:::i;:::-;:47;;;;:::i;:::-;41544:66;;32771:5;41644:8;;41635:6;:17;;;;:::i;41684:129::-;41743:11;32771:5;41786;;41777:6;:14;;;;:::i;:::-;:28;;;;:::i;40280:164::-;40351:11;;40348:89;;40379:46;40395:5;40410:4;40417:7;40379:15;:46::i;39238:601::-;-1:-1:-1;;;;;39323:21:0;;39315:67;;;;-1:-1:-1;;;39315:67:0;;11853:2:1;39315:67:0;;;11835:21:1;11892:2;11872:18;;;11865:30;11931:34;11911:18;;;11904:62;-1:-1:-1;;;11982:18:1;;;11975:31;12023:19;;39315:67:0;11825:223:1;39315:67:0;-1:-1:-1;;;;;39482:18:0;;39457:22;39482:18;;;;;;;;;;;39519:24;;;;39511:71;;;;-1:-1:-1;;;39511:71:0;;6648:2:1;39511:71:0;;;6630:21:1;6687:2;6667:18;;;6660:30;6726:34;6706:18;;;6699:62;-1:-1:-1;;;6777:18:1;;;6770:32;6819:19;;39511:71:0;6620:224:1;39511:71:0;-1:-1:-1;;;;;39618:18:0;;:9;:18;;;;;;;;;;39639:23;;;39618:44;;39684:21;;;;:31;;39656:6;;39618:9;39684:31;;39656:6;;39684:31;:::i;:::-;;;;-1:-1:-1;;39733:37:0;;5023:25:1;;;39759:1:0;;-1:-1:-1;;;;;39733:37:0;;;;;5011:2:1;4996:18;39733:37:0;;;;;;;29848:125;;;:::o;11875:505::-;11964:22;11972:4;11978:7;11964;:22::i;:::-;11959:414;;12152:41;12180:7;-1:-1:-1;;;;;12152:41:0;12190:2;12152:19;:41::i;:::-;12266:38;12294:4;12301:2;12266:19;:38::i;:::-;12057:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12057:270:0;;;;;;;;;;-1:-1:-1;;;12003:358:0;;;;;;;:::i;14708:238::-;14792:22;14800:4;14806:7;14792;:22::i;:::-;14787:152;;14831:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14831:29:0;;;;;;;;;:36;;-1:-1:-1;;14831:36:0;14863:4;14831:36;;;14914:12;7284:10;;7204:98;14914:12;-1:-1:-1;;;;;14887:40:0;14905:7;-1:-1:-1;;;;;14887:40:0;14899:4;14887:40;;;;;;;;;;14708:238;;:::o;25405:671::-;-1:-1:-1;;;;;25536:18:0;;25528:68;;;;-1:-1:-1;;;25528:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25615:16:0;;25607:64;;;;-1:-1:-1;;;25607:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25757:15:0;;25735:19;25757:15;;;;;;;;;;;25791:21;;;;25783:72;;;;-1:-1:-1;;;25783:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25891:15:0;;;:9;:15;;;;;;;;;;;25909:20;;;25891:38;;25951:13;;;;;;;;:23;;25923:6;;25891:9;25951:23;;25923:6;;25951:23;:::i;:::-;;;;;;;;26007:2;-1:-1:-1;;;;;25992:26:0;26001:4;-1:-1:-1;;;;;25992:26:0;;26011:6;25992:26;;;;5023:25:1;;5011:2;4996:18;;4978:76;25992:26:0;;;;;;;;26031:37;29848:125;16877:451;16952:13;16978:19;17010:10;17014:6;17010:1;:10;:::i;:::-;:14;;17023:1;17010:14;:::i;:::-;17000:25;;;;;;-1:-1:-1;;;17000:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17000:25:0;;16978:47;;-1:-1:-1;;;17036:6:0;17043:1;17036:9;;;;;;-1:-1:-1;;;17036:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17036:15:0;;;;;;;;;-1:-1:-1;;;17062:6:0;17069:1;17062:9;;;;;;-1:-1:-1;;;17062:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17062:15:0;;;;;;;;-1:-1:-1;17093:9:0;17105:10;17109:6;17105:1;:10;:::i;:::-;:14;;17118:1;17105:14;:::i;:::-;17093:26;;17088:135;17125:1;17121;:5;17088:135;;;-1:-1:-1;;;17173:5:0;17181:3;17173:11;17160:25;;;;;-1:-1:-1;;;17160:25:0;;;;;;;;;;;;17148:6;17155:1;17148:9;;;;;;-1:-1:-1;;;17148:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;17148:37:0;;;;;;;;-1:-1:-1;17210:1:0;17200:11;;;;;17128:3;;;:::i;:::-;;;17088:135;;;-1:-1:-1;17241:10:0;;17233:55;;;;-1:-1:-1;;;17233:55:0;;5883:2:1;17233:55:0;;;5865:21:1;;;5902:18;;;5895:30;5961:34;5941:18;;;5934:62;6013:18;;17233:55:0;5855:182:1;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:436::-;1481:6;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1607:9;1594:23;1626:31;1651:5;1626:31;:::i;:::-;1676:5;-1:-1:-1;1733:2:1;1718:18;;1705:32;1775:15;;1768:23;1756:36;;1746:2;;1811:6;1803;1796:22;1857:325;1925:6;1933;1986:2;1974:9;1965:7;1961:23;1957:32;1954:2;;;2007:6;1999;1992:22;1954:2;2051:9;2038:23;2070:31;2095:5;2070:31;:::i;:::-;2120:5;2172:2;2157:18;;;;2144:32;;-1:-1:-1;;;1944:238:1:o;2187:190::-;2246:6;2299:2;2287:9;2278:7;2274:23;2270:32;2267:2;;;2320:6;2312;2305:22;2267:2;-1:-1:-1;2348:23:1;;2257:120;-1:-1:-1;2257:120:1:o;2382:325::-;2450:6;2458;2511:2;2499:9;2490:7;2486:23;2482:32;2479:2;;;2532:6;2524;2517:22;2479:2;2573:9;2560:23;2550:33;;2633:2;2622:9;2618:18;2605:32;2646:31;2671:5;2646:31;:::i;2712:306::-;2770:6;2823:2;2811:9;2802:7;2798:23;2794:32;2791:2;;;2844:6;2836;2829:22;2791:2;2875:23;;-1:-1:-1;;;;;;2927:32:1;;2917:43;;2907:2;;2979:6;2971;2964:22;3218:463;3271:3;3309:5;3303:12;3336:6;3331:3;3324:19;3362:4;3391:2;3386:3;3382:12;3375:19;;3428:2;3421:5;3417:14;3449:3;3461:195;3475:6;3472:1;3469:13;3461:195;;;3540:13;;-1:-1:-1;;;;;3536:39:1;3524:52;;3596:12;;;;3631:15;;;;3572:1;3490:9;3461:195;;;-1:-1:-1;3672:3:1;;3279:402;-1:-1:-1;;;;;3279:402:1:o;3686:786::-;4097:25;4092:3;4085:38;4067:3;4152:6;4146:13;4168:62;4223:6;4218:2;4213:3;4209:12;4202:4;4194:6;4190:17;4168:62;:::i;:::-;-1:-1:-1;;;4289:2:1;4249:16;;;4281:11;;;4274:40;4339:13;;4361:63;4339:13;4410:2;4402:11;;4395:4;4383:17;;4361:63;:::i;:::-;4444:17;4463:2;4440:26;;4075:397;-1:-1:-1;;;;4075:397:1:o;5293:383::-;5442:2;5431:9;5424:21;5405:4;5474:6;5468:13;5517:6;5512:2;5501:9;5497:18;5490:34;5533:66;5592:6;5587:2;5576:9;5572:18;5567:2;5559:6;5555:15;5533:66;:::i;:::-;5660:2;5639:15;-1:-1:-1;;5635:29:1;5620:45;;;;5667:2;5616:54;;5414:262;-1:-1:-1;;5414:262:1:o;6042:399::-;6244:2;6226:21;;;6283:2;6263:18;;;6256:30;6322:34;6317:2;6302:18;;6295:62;-1:-1:-1;;;6388:2:1;6373:18;;6366:33;6431:3;6416:19;;6216:225::o;9993:402::-;10195:2;10177:21;;;10234:2;10214:18;;;10207:30;10273:34;10268:2;10253:18;;10246:62;-1:-1:-1;;;10339:2:1;10324:18;;10317:36;10385:3;10370:19;;10167:228::o;11230:416::-;11432:2;11414:21;;;11471:2;11451:18;;;11444:30;11510:34;11505:2;11490:18;;11483:62;-1:-1:-1;;;11576:2:1;11561:18;;11554:50;11636:3;11621:19;;11404:242::o;12053:401::-;12255:2;12237:21;;;12294:2;12274:18;;;12267:30;12333:34;12328:2;12313:18;;12306:62;-1:-1:-1;;;12399:2:1;12384:18;;12377:35;12444:3;12429:19;;12227:227::o;14279:332::-;14486:6;14475:9;14468:25;14529:2;14524;14513:9;14509:18;14502:30;14449:4;14549:56;14601:2;14590:9;14586:18;14578:6;14549:56;:::i;:::-;14541:64;14458:153;-1:-1:-1;;;;14458:153:1:o;14616:582::-;14915:6;14904:9;14897:25;14958:6;14953:2;14942:9;14938:18;14931:34;15001:3;14996:2;14985:9;14981:18;14974:31;14878:4;15022:57;15074:3;15063:9;15059:19;15051:6;15022:57;:::i;:::-;-1:-1:-1;;;;;15115:32:1;;;;15110:2;15095:18;;15088:60;-1:-1:-1;15179:3:1;15164:19;15157:35;15014:65;14887:311;-1:-1:-1;;;14887:311:1:o;15392:128::-;15432:3;15463:1;15459:6;15456:1;15453:13;15450:2;;;15469:18;;:::i;:::-;-1:-1:-1;15505:9:1;;15440:80::o;15525:217::-;15565:1;15591;15581:2;;-1:-1:-1;;;15616:31:1;;15670:4;15667:1;15660:15;15698:4;15623:1;15688:15;15581:2;-1:-1:-1;15727:9:1;;15571:171::o;15747:168::-;15787:7;15853:1;15849;15845:6;15841:14;15838:1;15835:21;15830:1;15823:9;15816:17;15812:45;15809:2;;;15860:18;;:::i;:::-;-1:-1:-1;15900:9:1;;15799:116::o;15920:125::-;15960:4;15988:1;15985;15982:8;15979:2;;;15993:18;;:::i;:::-;-1:-1:-1;16030:9:1;;15969:76::o;16050:258::-;16122:1;16132:113;16146:6;16143:1;16140:13;16132:113;;;16222:11;;;16216:18;16203:11;;;16196:39;16168:2;16161:10;16132:113;;;16263:6;16260:1;16257:13;16254:2;;;-1:-1:-1;;16298:1:1;16280:16;;16273:27;16103:205::o;16313:136::-;16352:3;16380:5;16370:2;;16389:18;;:::i;:::-;-1:-1:-1;;;16425:18:1;;16360:89::o;16454:380::-;16533:1;16529:12;;;;16576;;;16597:2;;16651:4;16643:6;16639:17;16629:27;;16597:2;16704;16696:6;16693:14;16673:18;16670:38;16667:2;;;16750:10;16745:3;16741:20;16738:1;16731:31;16785:4;16782:1;16775:15;16813:4;16810:1;16803:15;16667:2;;16509:325;;;:::o;16839:127::-;16900:10;16895:3;16891:20;16888:1;16881:31;16931:4;16928:1;16921:15;16955:4;16952:1;16945:15;16971:131;-1:-1:-1;;;;;17046:31:1;;17036:42;;17026:2;;17092:1;17089;17082:12

Swarm Source

ipfs://3ecc4a5265cd9045777cd9394b315a5f630c9bf64720c40f979374326313bb2b
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.