ETH Price: $3,106.69 (+0.66%)

Token

Replay (REPLAY)
 

Overview

Max Total Supply

5,000,000,000 REPLAY

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.923305556391558735 REPLAY

Value
$0.00
0x21061a605C61CD6594084BC6BeBdBbFeA39C8D2A
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:
Replay

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-24
*/

/**

REPLAY - Interactive Streaming, Reimagined

Twitter: https://twitter.com/replaytokenerc/
Telegram: https://t.me/replaytokenerc
Website: https://replayproject.net/
Medium: https://medium.com/@ReplayProject

*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyDevFee;
    bool public initialBuyFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellDevFee;
    bool public initialSellFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForDev;

    // block number of opened trading
    uint256 launchedAt;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Replay", "REPLAY") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 0;
        uint256 _buyDevFee = 4;

        uint256 _sellMarketingFee = 4;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 5_000_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 20) / 1000; // 2% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply * 20) / 1000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 100000; // 0.04% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellDevFee;

        initialBuyFee = true;
        initialSellFee = true;

        marketingWallet = address(0xe7E58840A328eb34575D1a58baD91a6E16A997a9); // set as marketing wallet
        devWallet = address(0xF3E1a432dB81FD9d2B639eF99683201687b04372); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        uint256 _newTotalFees = _marketingFee + _devFee;
        if (initialBuyFee) {
            initialBuyFee = false;
        } else {
            require(_newTotalFees <= 10 || _newTotalFees < buyTotalFees, "Invalid buy fees.");
        }
        buyMarketingFee = _marketingFee;
        buyDevFee = _devFee;
        buyTotalFees = _newTotalFees;
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        uint256 _newTotalFees = _marketingFee + _devFee;
        if (initialSellFee) {
            initialSellFee = false;
        } else {
            require(_newTotalFees <= 10 || _newTotalFees < sellTotalFees, "Invalid sell fees.");
        }
        sellMarketingFee = _marketingFee;
        sellDevFee = _devFee;
        sellTotalFees = _newTotalFees;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance - ethForMarketing;

        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialBuyFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSellFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff191660011790553480156200002057600080fd5b50604051806040016040528060068152602001655265706c617960d01b815250604051806040016040528060068152602001655245504c415960d01b815250816003908162000070919062000799565b5060046200007f828262000799565b5050506200009c620000966200043d60201b60201c565b62000441565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000be81600162000493565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000109573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012f919062000865565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a3919062000865565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000217919062000865565b6001600160a01b031660a08190526200023290600162000493565b60a051620002429060016200050d565b6000600480826b1027e72f1f128130880000006103e862000265826014620008ad565b620002719190620008cd565b6008556103e862000284826014620008ad565b620002909190620008cd565b600a55620186a0620002a4826028620008ad565b620002b09190620008cd565b600955600d859055600e849055620002c98486620008f0565b600c5560118390556012829055620002e28284620008f0565b601055600f805460ff199081166001908117909255601380549091169091179055600680546001600160a01b031990811673e7e58840a328eb34575d1a58bad91a6e16a997a9179091556007805490911673f3e1a432db81fd9d2b639ef99683201687b043721790556200036a620003626005546001600160a01b031690565b600162000561565b60065462000383906001600160a01b0316600162000561565b6007546200039c906001600160a01b0316600162000561565b620003a930600162000561565b620003b861dead600162000561565b620003d7620003cf6005546001600160a01b031690565b600162000493565b600654620003f0906001600160a01b0316600162000493565b60075462000409906001600160a01b0316600162000493565b6200041630600162000493565b6200042561dead600162000493565b6200043133826200060b565b50505050505062000906565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004e25760405162461bcd60e51b8152602060048201819052602482015260008051602062002e1c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005ac5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e1c8339815191526044820152606401620004d9565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004d9565b8060026000828254620006779190620008f0565b90915550506001600160a01b03821660009081526020819052604081208054839290620006a6908490620008f0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200072057607f821691505b6020821081036200074157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006f057600081815260208120601f850160051c81016020861015620007705750805b601f850160051c820191505b8181101562000791578281556001016200077c565b505050505050565b81516001600160401b03811115620007b557620007b5620006f5565b620007cd81620007c684546200070b565b8462000747565b602080601f831160018114620008055760008415620007ec5750858301515b600019600386901b1c1916600185901b17855562000791565b600085815260208120601f198616915b82811015620008365788860151825594840194600190910190840162000815565b5085821015620008555787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200087857600080fd5b81516001600160a01b03811681146200089057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008c757620008c762000897565b92915050565b600082620008eb57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008c757620008c762000897565b60805160a0516124d4620009486000396000818161051a0152610f530152600081816103b301528181611f640152818161201d015261205901526124d46000f3fe6080604052600436106102e85760003560e01c806375f0a87411610190578063a9059cbb116100dc578063c8c8ebe411610095578063dd62ed3e1161006f578063dd62ed3e146108d6578063e2f456051461091c578063f2fde38b14610932578063f8b45b051461095257600080fd5b8063c8c8ebe41461088a578063d257b34f146108a0578063d85ba063146108c057600080fd5b8063a9059cbb146107bb578063aacebbe3146107db578063b62496f5146107fb578063bbc0c7421461082b578063c02466681461084a578063c18bc1951461086a57600080fd5b8063924de9b7116101495780639c3b4fdc116101235780639c3b4fdc146107595780639fccce321461076f578063a0d82dc514610785578063a457c2d71461079b57600080fd5b8063924de9b71461070457806395d89b41146107245780639a7a23d61461073957600080fd5b806375f0a874146106655780637bce5a04146106855780638a8c523c1461069b5780638da5cb5b146106b05780638ea5220f146106ce57806392136913146106ee57600080fd5b8063313ce5671161024f57806366ca9b831161020857806370a08231116101e257806370a08231146105e5578063715018a61461061b578063751039fc146106305780637571336a1461064557600080fd5b806366ca9b831461058f5780636a486a8e146105af5780636ddd1713146105c557600080fd5b8063313ce567146104b257806331e02e0b146104ce57806339509351146104e857806349bd5a5e146105085780634a62bb651461053c5780634fbee1931461055657600080fd5b80631816467f116102a15780631816467f1461040c5780631f3fed8f1461042c578063203e727e1461044257806323b872dd1461046257806327c8f835146104825780632b36a6d21461049857600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f3660046120cd565b610968565b005b34801561032257600080fd5b5061032b610a24565b60405161033891906120ef565b60405180910390f35b34801561034d57600080fd5b5061036161035c366004612152565b610ab6565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c36600461217e565b60186020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b5061031461042736600461217e565b610acd565b34801561043857600080fd5b506103fe60145481565b34801561044e57600080fd5b5061031461045d36600461219b565b610b54565b34801561046e57600080fd5b5061036161047d3660046121b4565b610c31565b34801561048e57600080fd5b506103d561dead81565b3480156104a457600080fd5b506013546103619060ff1681565b3480156104be57600080fd5b5060405160128152602001610338565b3480156104da57600080fd5b50600f546103619060ff1681565b3480156104f457600080fd5b50610361610503366004612152565b610cdb565b34801561051457600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561054857600080fd5b50600b546103619060ff1681565b34801561056257600080fd5b5061036161057136600461217e565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561059b57600080fd5b506103146105aa3660046120cd565b610d17565b3480156105bb57600080fd5b506103fe60105481565b3480156105d157600080fd5b50600b546103619062010000900460ff1681565b3480156105f157600080fd5b506103fe61060036600461217e565b6001600160a01b031660009081526020819052604090205490565b34801561062757600080fd5b50610314610dc9565b34801561063c57600080fd5b50610361610dff565b34801561065157600080fd5b50610314610660366004612205565b610e3c565b34801561067157600080fd5b506006546103d5906001600160a01b031681565b34801561069157600080fd5b506103fe600d5481565b3480156106a757600080fd5b50610314610e91565b3480156106bc57600080fd5b506005546001600160a01b03166103d5565b3480156106da57600080fd5b506007546103d5906001600160a01b031681565b3480156106fa57600080fd5b506103fe60115481565b34801561071057600080fd5b5061031461071f36600461223a565b610ed2565b34801561073057600080fd5b5061032b610f18565b34801561074557600080fd5b50610314610754366004612205565b610f27565b34801561076557600080fd5b506103fe600e5481565b34801561077b57600080fd5b506103fe60155481565b34801561079157600080fd5b506103fe60125481565b3480156107a757600080fd5b506103616107b6366004612152565b611006565b3480156107c757600080fd5b506103616107d6366004612152565b61109f565b3480156107e757600080fd5b506103146107f636600461217e565b6110ac565b34801561080757600080fd5b5061036161081636600461217e565b60196020526000908152604090205460ff1681565b34801561083757600080fd5b50600b5461036190610100900460ff1681565b34801561085657600080fd5b50610314610865366004612205565b611133565b34801561087657600080fd5b5061031461088536600461219b565b6111bc565b34801561089657600080fd5b506103fe60085481565b3480156108ac57600080fd5b506103616108bb36600461219b565b61128d565b3480156108cc57600080fd5b506103fe600c5481565b3480156108e257600080fd5b506103fe6108f1366004612255565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561092857600080fd5b506103fe60095481565b34801561093e57600080fd5b5061031461094d36600461217e565b6113e4565b34801561095e57600080fd5b506103fe600a5481565b6005546001600160a01b0316331461099b5760405162461bcd60e51b81526004016109929061228e565b60405180910390fd5b60006109a782846122d9565b60135490915060ff16156109c4576013805460ff19169055610a16565b600a811115806109d5575060105481105b610a165760405162461bcd60e51b815260206004820152601260248201527124b73b30b634b21039b2b636103332b2b99760711b6044820152606401610992565b601192909255601255601055565b606060038054610a33906122ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f906122ec565b8015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000610ac333848461147f565b5060015b92915050565b6005546001600160a01b03163314610af75760405162461bcd60e51b81526004016109929061228e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b7e5760405162461bcd60e51b81526004016109929061228e565b670de0b6b3a76400006103e8610b9360025490565b610b9e906001612326565b610ba8919061233d565b610bb2919061233d565b811015610c195760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610992565b610c2b81670de0b6b3a7640000612326565b60085550565b6000610c3e8484846115a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cc35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610992565b610cd0853385840361147f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac3918590610d129086906122d9565b61147f565b6005546001600160a01b03163314610d415760405162461bcd60e51b81526004016109929061228e565b6000610d4d82846122d9565b600f5490915060ff1615610d6a57600f805460ff19169055610dbb565b600a81111580610d7b5750600c5481105b610dbb5760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b210313abc903332b2b99760791b6044820152606401610992565b600d92909255600e55600c55565b6005546001600160a01b03163314610df35760405162461bcd60e51b81526004016109929061228e565b610dfd6000611b9c565b565b6005546000906001600160a01b03163314610e2c5760405162461bcd60e51b81526004016109929061228e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e665760405162461bcd60e51b81526004016109929061228e565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b81526004016109929061228e565b600b805462ffff0019166201010017905543601655565b6005546001600160a01b03163314610efc5760405162461bcd60e51b81526004016109929061228e565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a33906122ec565b6005546001600160a01b03163314610f515760405162461bcd60e51b81526004016109929061228e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ff85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610992565b6110028282611bee565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110885760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610992565b611095338585840361147f565b5060019392505050565b6000610ac33384846115a3565b6005546001600160a01b031633146110d65760405162461bcd60e51b81526004016109929061228e565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461115d5760405162461bcd60e51b81526004016109929061228e565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111e65760405162461bcd60e51b81526004016109929061228e565b670de0b6b3a76400006103e86111fb60025490565b611206906005612326565b611210919061233d565b61121a919061233d565b8110156112755760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610992565b61128781670de0b6b3a7640000612326565b600a5550565b6005546000906001600160a01b031633146112ba5760405162461bcd60e51b81526004016109929061228e565b620186a06112c760025490565b6112d2906001612326565b6112dc919061233d565b8210156113495760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610992565b6103e861135560025490565b611360906005612326565b61136a919061233d565b8211156113d65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610992565b50600981905560015b919050565b6005546001600160a01b0316331461140e5760405162461bcd60e51b81526004016109929061228e565b6001600160a01b0381166114735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610992565b61147c81611b9c565b50565b6001600160a01b0383166114e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610992565b6001600160a01b0382166115425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610992565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115c95760405162461bcd60e51b81526004016109929061235f565b6001600160a01b0382166115ef5760405162461bcd60e51b8152600401610992906123a4565b806000036116085761160383836000611c42565b505050565b600b5460ff16156118c7576005546001600160a01b0384811691161480159061163f57506005546001600160a01b03838116911614155b801561165357506001600160a01b03821615155b801561166a57506001600160a01b03821661dead14155b80156116805750600554600160a01b900460ff16155b156118c757600b54610100900460ff16611718576001600160a01b03831660009081526017602052604090205460ff16806116d357506001600160a01b03821660009081526017602052604090205460ff165b6117185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610992565b6001600160a01b03831660009081526019602052604090205460ff16801561175957506001600160a01b03821660009081526018602052604090205460ff16155b1561183d576008548111156117ce5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610992565b600a546001600160a01b0383166000908152602081905260409020546117f490836122d9565b11156118385760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610992565b6118c7565b6001600160a01b03821660009081526018602052604090205460ff166118c757600a546001600160a01b03831660009081526020819052604090205461188390836122d9565b11156118c75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610992565b30600090815260208190526040902054600954811080159081906118f35750600b5462010000900460ff165b80156119095750600554600160a01b900460ff16155b801561192e57506001600160a01b03851660009081526019602052604090205460ff16155b801561195357506001600160a01b03851660009081526017602052604090205460ff16155b801561197857506001600160a01b03841660009081526017602052604090205460ff16155b156119a6576005805460ff60a01b1916600160a01b179055611998611d97565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119f457506001600160a01b03851660009081526017602052604090205460ff165b156119fd575060005b60008115611b88576001600160a01b03861660009081526019602052604090205460ff168015611a2f57506000601054115b15611abd57611a546064611a4e60105488611eee90919063ffffffff16565b90611f01565b905060105460125482611a679190612326565b611a71919061233d565b60156000828254611a8291906122d9565b9091555050601054601154611a979083612326565b611aa1919061233d565b60146000828254611ab291906122d9565b90915550611b6a9050565b6001600160a01b03871660009081526019602052604090205460ff168015611ae757506000600c54115b15611b6a57611b066064611a4e600c5488611eee90919063ffffffff16565b9050600c54600e5482611b199190612326565b611b23919061233d565b60156000828254611b3491906122d9565b9091555050600c54600d54611b499083612326565b611b53919061233d565b60146000828254611b6491906122d9565b90915550505b8015611b7b57611b7b873083611c42565b611b8581866123e7565b94505b611b93878787611c42565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c685760405162461bcd60e51b81526004016109929061235f565b6001600160a01b038216611c8e5760405162461bcd60e51b8152600401610992906123a4565b6001600160a01b03831660009081526020819052604090205481811015611d065760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610992565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d3d9084906122d9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d8991815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601554601454611dbb91906122d9565b90506000821580611dca575081155b15611dd457505050565b600954611de2906014612326565b831115611dfa57600954611df7906014612326565b92505b611e0383611f0d565b60004790506000611e2384611a4e60145485611eee90919063ffffffff16565b90506000611e3182846123e7565b6000601481905560158190556007546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e89576040519150601f19603f3d011682016040523d82523d6000602084013e611e8e565b606091505b50506006546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114611ede576040519150601f19603f3d011682016040523d82523d6000602084013e611ee3565b606091505b505050505050505050565b6000611efa8284612326565b9392505050565b6000611efa828461233d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f4257611f426123fa565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe49190612410565b81600181518110611ff757611ff76123fa565b60200260200101906001600160a01b031690816001600160a01b031681525050612042307f00000000000000000000000000000000000000000000000000000000000000008461147f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061209790859060009086903090429060040161242d565b600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b505050505050565b600080604083850312156120e057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561211c57858101830151858201604001528201612100565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461147c57600080fd5b6000806040838503121561216557600080fd5b82356121708161213d565b946020939093013593505050565b60006020828403121561219057600080fd5b8135611efa8161213d565b6000602082840312156121ad57600080fd5b5035919050565b6000806000606084860312156121c957600080fd5b83356121d48161213d565b925060208401356121e48161213d565b929592945050506040919091013590565b803580151581146113df57600080fd5b6000806040838503121561221857600080fd5b82356122238161213d565b9150612231602084016121f5565b90509250929050565b60006020828403121561224c57600080fd5b611efa826121f5565b6000806040838503121561226857600080fd5b82356122738161213d565b915060208301356122838161213d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ac757610ac76122c3565b600181811c9082168061230057607f821691505b60208210810361232057634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610ac757610ac76122c3565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ac757610ac76122c3565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561242257600080fd5b8151611efa8161213d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561247d5784516001600160a01b031683529383019391830191600101612458565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220701ce4f7ba861aa7f85b3a194f2b55d0057fc981143984650620a10f680b0d5064736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c806375f0a87411610190578063a9059cbb116100dc578063c8c8ebe411610095578063dd62ed3e1161006f578063dd62ed3e146108d6578063e2f456051461091c578063f2fde38b14610932578063f8b45b051461095257600080fd5b8063c8c8ebe41461088a578063d257b34f146108a0578063d85ba063146108c057600080fd5b8063a9059cbb146107bb578063aacebbe3146107db578063b62496f5146107fb578063bbc0c7421461082b578063c02466681461084a578063c18bc1951461086a57600080fd5b8063924de9b7116101495780639c3b4fdc116101235780639c3b4fdc146107595780639fccce321461076f578063a0d82dc514610785578063a457c2d71461079b57600080fd5b8063924de9b71461070457806395d89b41146107245780639a7a23d61461073957600080fd5b806375f0a874146106655780637bce5a04146106855780638a8c523c1461069b5780638da5cb5b146106b05780638ea5220f146106ce57806392136913146106ee57600080fd5b8063313ce5671161024f57806366ca9b831161020857806370a08231116101e257806370a08231146105e5578063715018a61461061b578063751039fc146106305780637571336a1461064557600080fd5b806366ca9b831461058f5780636a486a8e146105af5780636ddd1713146105c557600080fd5b8063313ce567146104b257806331e02e0b146104ce57806339509351146104e857806349bd5a5e146105085780634a62bb651461053c5780634fbee1931461055657600080fd5b80631816467f116102a15780631816467f1461040c5780631f3fed8f1461042c578063203e727e1461044257806323b872dd1461046257806327c8f835146104825780632b36a6d21461049857600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f3660046120cd565b610968565b005b34801561032257600080fd5b5061032b610a24565b60405161033891906120ef565b60405180910390f35b34801561034d57600080fd5b5061036161035c366004612152565b610ab6565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c36600461217e565b60186020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b5061031461042736600461217e565b610acd565b34801561043857600080fd5b506103fe60145481565b34801561044e57600080fd5b5061031461045d36600461219b565b610b54565b34801561046e57600080fd5b5061036161047d3660046121b4565b610c31565b34801561048e57600080fd5b506103d561dead81565b3480156104a457600080fd5b506013546103619060ff1681565b3480156104be57600080fd5b5060405160128152602001610338565b3480156104da57600080fd5b50600f546103619060ff1681565b3480156104f457600080fd5b50610361610503366004612152565b610cdb565b34801561051457600080fd5b506103d57f0000000000000000000000009b7c68e43f0ee86280aa2e72a89b3a2ebdc6774f81565b34801561054857600080fd5b50600b546103619060ff1681565b34801561056257600080fd5b5061036161057136600461217e565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561059b57600080fd5b506103146105aa3660046120cd565b610d17565b3480156105bb57600080fd5b506103fe60105481565b3480156105d157600080fd5b50600b546103619062010000900460ff1681565b3480156105f157600080fd5b506103fe61060036600461217e565b6001600160a01b031660009081526020819052604090205490565b34801561062757600080fd5b50610314610dc9565b34801561063c57600080fd5b50610361610dff565b34801561065157600080fd5b50610314610660366004612205565b610e3c565b34801561067157600080fd5b506006546103d5906001600160a01b031681565b34801561069157600080fd5b506103fe600d5481565b3480156106a757600080fd5b50610314610e91565b3480156106bc57600080fd5b506005546001600160a01b03166103d5565b3480156106da57600080fd5b506007546103d5906001600160a01b031681565b3480156106fa57600080fd5b506103fe60115481565b34801561071057600080fd5b5061031461071f36600461223a565b610ed2565b34801561073057600080fd5b5061032b610f18565b34801561074557600080fd5b50610314610754366004612205565b610f27565b34801561076557600080fd5b506103fe600e5481565b34801561077b57600080fd5b506103fe60155481565b34801561079157600080fd5b506103fe60125481565b3480156107a757600080fd5b506103616107b6366004612152565b611006565b3480156107c757600080fd5b506103616107d6366004612152565b61109f565b3480156107e757600080fd5b506103146107f636600461217e565b6110ac565b34801561080757600080fd5b5061036161081636600461217e565b60196020526000908152604090205460ff1681565b34801561083757600080fd5b50600b5461036190610100900460ff1681565b34801561085657600080fd5b50610314610865366004612205565b611133565b34801561087657600080fd5b5061031461088536600461219b565b6111bc565b34801561089657600080fd5b506103fe60085481565b3480156108ac57600080fd5b506103616108bb36600461219b565b61128d565b3480156108cc57600080fd5b506103fe600c5481565b3480156108e257600080fd5b506103fe6108f1366004612255565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561092857600080fd5b506103fe60095481565b34801561093e57600080fd5b5061031461094d36600461217e565b6113e4565b34801561095e57600080fd5b506103fe600a5481565b6005546001600160a01b0316331461099b5760405162461bcd60e51b81526004016109929061228e565b60405180910390fd5b60006109a782846122d9565b60135490915060ff16156109c4576013805460ff19169055610a16565b600a811115806109d5575060105481105b610a165760405162461bcd60e51b815260206004820152601260248201527124b73b30b634b21039b2b636103332b2b99760711b6044820152606401610992565b601192909255601255601055565b606060038054610a33906122ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f906122ec565b8015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000610ac333848461147f565b5060015b92915050565b6005546001600160a01b03163314610af75760405162461bcd60e51b81526004016109929061228e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b7e5760405162461bcd60e51b81526004016109929061228e565b670de0b6b3a76400006103e8610b9360025490565b610b9e906001612326565b610ba8919061233d565b610bb2919061233d565b811015610c195760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610992565b610c2b81670de0b6b3a7640000612326565b60085550565b6000610c3e8484846115a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cc35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610992565b610cd0853385840361147f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac3918590610d129086906122d9565b61147f565b6005546001600160a01b03163314610d415760405162461bcd60e51b81526004016109929061228e565b6000610d4d82846122d9565b600f5490915060ff1615610d6a57600f805460ff19169055610dbb565b600a81111580610d7b5750600c5481105b610dbb5760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b210313abc903332b2b99760791b6044820152606401610992565b600d92909255600e55600c55565b6005546001600160a01b03163314610df35760405162461bcd60e51b81526004016109929061228e565b610dfd6000611b9c565b565b6005546000906001600160a01b03163314610e2c5760405162461bcd60e51b81526004016109929061228e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e665760405162461bcd60e51b81526004016109929061228e565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b81526004016109929061228e565b600b805462ffff0019166201010017905543601655565b6005546001600160a01b03163314610efc5760405162461bcd60e51b81526004016109929061228e565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a33906122ec565b6005546001600160a01b03163314610f515760405162461bcd60e51b81526004016109929061228e565b7f0000000000000000000000009b7c68e43f0ee86280aa2e72a89b3a2ebdc6774f6001600160a01b0316826001600160a01b031603610ff85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610992565b6110028282611bee565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110885760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610992565b611095338585840361147f565b5060019392505050565b6000610ac33384846115a3565b6005546001600160a01b031633146110d65760405162461bcd60e51b81526004016109929061228e565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461115d5760405162461bcd60e51b81526004016109929061228e565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111e65760405162461bcd60e51b81526004016109929061228e565b670de0b6b3a76400006103e86111fb60025490565b611206906005612326565b611210919061233d565b61121a919061233d565b8110156112755760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610992565b61128781670de0b6b3a7640000612326565b600a5550565b6005546000906001600160a01b031633146112ba5760405162461bcd60e51b81526004016109929061228e565b620186a06112c760025490565b6112d2906001612326565b6112dc919061233d565b8210156113495760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610992565b6103e861135560025490565b611360906005612326565b61136a919061233d565b8211156113d65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610992565b50600981905560015b919050565b6005546001600160a01b0316331461140e5760405162461bcd60e51b81526004016109929061228e565b6001600160a01b0381166114735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610992565b61147c81611b9c565b50565b6001600160a01b0383166114e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610992565b6001600160a01b0382166115425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610992565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115c95760405162461bcd60e51b81526004016109929061235f565b6001600160a01b0382166115ef5760405162461bcd60e51b8152600401610992906123a4565b806000036116085761160383836000611c42565b505050565b600b5460ff16156118c7576005546001600160a01b0384811691161480159061163f57506005546001600160a01b03838116911614155b801561165357506001600160a01b03821615155b801561166a57506001600160a01b03821661dead14155b80156116805750600554600160a01b900460ff16155b156118c757600b54610100900460ff16611718576001600160a01b03831660009081526017602052604090205460ff16806116d357506001600160a01b03821660009081526017602052604090205460ff165b6117185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610992565b6001600160a01b03831660009081526019602052604090205460ff16801561175957506001600160a01b03821660009081526018602052604090205460ff16155b1561183d576008548111156117ce5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610992565b600a546001600160a01b0383166000908152602081905260409020546117f490836122d9565b11156118385760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610992565b6118c7565b6001600160a01b03821660009081526018602052604090205460ff166118c757600a546001600160a01b03831660009081526020819052604090205461188390836122d9565b11156118c75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610992565b30600090815260208190526040902054600954811080159081906118f35750600b5462010000900460ff165b80156119095750600554600160a01b900460ff16155b801561192e57506001600160a01b03851660009081526019602052604090205460ff16155b801561195357506001600160a01b03851660009081526017602052604090205460ff16155b801561197857506001600160a01b03841660009081526017602052604090205460ff16155b156119a6576005805460ff60a01b1916600160a01b179055611998611d97565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119f457506001600160a01b03851660009081526017602052604090205460ff165b156119fd575060005b60008115611b88576001600160a01b03861660009081526019602052604090205460ff168015611a2f57506000601054115b15611abd57611a546064611a4e60105488611eee90919063ffffffff16565b90611f01565b905060105460125482611a679190612326565b611a71919061233d565b60156000828254611a8291906122d9565b9091555050601054601154611a979083612326565b611aa1919061233d565b60146000828254611ab291906122d9565b90915550611b6a9050565b6001600160a01b03871660009081526019602052604090205460ff168015611ae757506000600c54115b15611b6a57611b066064611a4e600c5488611eee90919063ffffffff16565b9050600c54600e5482611b199190612326565b611b23919061233d565b60156000828254611b3491906122d9565b9091555050600c54600d54611b499083612326565b611b53919061233d565b60146000828254611b6491906122d9565b90915550505b8015611b7b57611b7b873083611c42565b611b8581866123e7565b94505b611b93878787611c42565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c685760405162461bcd60e51b81526004016109929061235f565b6001600160a01b038216611c8e5760405162461bcd60e51b8152600401610992906123a4565b6001600160a01b03831660009081526020819052604090205481811015611d065760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610992565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d3d9084906122d9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d8991815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601554601454611dbb91906122d9565b90506000821580611dca575081155b15611dd457505050565b600954611de2906014612326565b831115611dfa57600954611df7906014612326565b92505b611e0383611f0d565b60004790506000611e2384611a4e60145485611eee90919063ffffffff16565b90506000611e3182846123e7565b6000601481905560158190556007546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e89576040519150601f19603f3d011682016040523d82523d6000602084013e611e8e565b606091505b50506006546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114611ede576040519150601f19603f3d011682016040523d82523d6000602084013e611ee3565b606091505b505050505050505050565b6000611efa8284612326565b9392505050565b6000611efa828461233d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f4257611f426123fa565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe49190612410565b81600181518110611ff757611ff76123fa565b60200260200101906001600160a01b031690816001600160a01b031681525050612042307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461147f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061209790859060009086903090429060040161242d565b600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b505050505050565b600080604083850312156120e057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561211c57858101830151858201604001528201612100565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461147c57600080fd5b6000806040838503121561216557600080fd5b82356121708161213d565b946020939093013593505050565b60006020828403121561219057600080fd5b8135611efa8161213d565b6000602082840312156121ad57600080fd5b5035919050565b6000806000606084860312156121c957600080fd5b83356121d48161213d565b925060208401356121e48161213d565b929592945050506040919091013590565b803580151581146113df57600080fd5b6000806040838503121561221857600080fd5b82356122238161213d565b9150612231602084016121f5565b90509250929050565b60006020828403121561224c57600080fd5b611efa826121f5565b6000806040838503121561226857600080fd5b82356122738161213d565b915060208301356122838161213d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ac757610ac76122c3565b600181811c9082168061230057607f821691505b60208210810361232057634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610ac757610ac76122c3565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ac757610ac76122c3565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561242257600080fd5b8151611efa8161213d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561247d5784516001600160a01b031683529383019391830191600101612458565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220701ce4f7ba861aa7f85b3a194f2b55d0057fc981143984650620a10f680b0d5064736f6c63430008130033

Deployed Bytecode Sourcemap

33043:13318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39726:483;;;;;;;;;;-1:-1:-1;39726:483:0;;;;;:::i;:::-;;:::i;:::-;;9897:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12205:210;;;;;;;;;;-1:-1:-1;12205:210:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;12205:210:0;1276:187:1;34177:63:0;;;;;;;;;;-1:-1:-1;34177:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33119:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1911:32:1;;;1893:51;;1881:2;1866:18;33119:51:0;1720:230:1;11017:108:0;;;;;;;;;;-1:-1:-1;11105:12:0;;11017:108;;;2101:25:1;;;2089:2;2074:18;11017:108:0;1955:177:1;41131:157:0;;;;;;;;;;-1:-1:-1;41131:157:0;;;;;:::i;:::-;;:::i;33895:33::-;;;;;;;;;;;;;;;;38325:275;;;;;;;;;;-1:-1:-1;38325:275:0;;;;;:::i;:::-;;:::i;12897:529::-;;;;;;;;;;-1:-1:-1;12897:529:0;;;;;:::i;:::-;;:::i;33222:53::-;;;;;;;;;;;;33268:6;33222:53;;33860:26;;;;;;;;;;-1:-1:-1;33860:26:0;;;;;;;;10859:93;;;;;;;;;;-1:-1:-1;10859:93:0;;10942:2;3133:36:1;;3121:2;3106:18;10859:93:0;2991:184:1;33721:25:0;;;;;;;;;;-1:-1:-1;33721:25:0;;;;;;;;13835:297;;;;;;;;;;-1:-1:-1;13835:297:0;;;;;:::i;:::-;;:::i;33177:38::-;;;;;;;;;;;;;;;33499:33;;;;;;;;;;-1:-1:-1;33499:33:0;;;;;;;;41296:126;;;;;;;;;;-1:-1:-1;41296:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41386:28:0;41362:4;41386:28;;;:19;:28;;;;;;;;;41296:126;39243:475;;;;;;;;;;-1:-1:-1;39243:475:0;;;;;:::i;:::-;;:::i;33755:28::-;;;;;;;;;;;;;;;;33579:31;;;;;;;;;;-1:-1:-1;33579:31:0;;;;;;;;;;;11188:177;;;;;;;;;;-1:-1:-1;11188:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11339:18:0;11307:7;11339:18;;;;;;;;;;;;11188:177;3016:103;;;;;;;;;;;;;:::i;37629:121::-;;;;;;;;;;;;;:::i;38872:167::-;;;;;;;;;;-1:-1:-1;38872:167:0;;;;;:::i;:::-;;:::i;33314:30::-;;;;;;;;;;-1:-1:-1;33314:30:0;;;;-1:-1:-1;;;;;33314:30:0;;;33653;;;;;;;;;;;;;;;;37429:148;;;;;;;;;;;;;:::i;2365:87::-;;;;;;;;;;-1:-1:-1;2438:6:0;;-1:-1:-1;;;;;2438:6:0;2365:87;;33351:24;;;;;;;;;;-1:-1:-1;33351:24:0;;;;-1:-1:-1;;;;;33351:24:0;;;33790:31;;;;;;;;;;;;;;;;39135:100;;;;;;;;;;-1:-1:-1;39135:100:0;;;;;:::i;:::-;;:::i;10116:104::-;;;;;;;;;;;;;:::i;40407:304::-;;;;;;;;;;-1:-1:-1;40407:304:0;;;;;:::i;:::-;;:::i;33690:24::-;;;;;;;;;;;;;;;;33935:27;;;;;;;;;;;;;;;;33828:25;;;;;;;;;;;;;;;;14635:482;;;;;;;;;;-1:-1:-1;14635:482:0;;;;;:::i;:::-;;:::i;11578:216::-;;;;;;;;;;-1:-1:-1;11578:216:0;;;;;:::i;:::-;;:::i;40915:208::-;;;;;;;;;;-1:-1:-1;40915:208:0;;;;;:::i;:::-;;:::i;34398:57::-;;;;;;;;;;-1:-1:-1;34398:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33539:33;;;;;;;;;;-1:-1:-1;33539:33:0;;;;;;;;;;;40217:182;;;;;;;;;;-1:-1:-1;40217:182:0;;;;;:::i;:::-;;:::i;38608:256::-;;;;;;;;;;-1:-1:-1;38608:256:0;;;;;:::i;:::-;;:::i;33384:35::-;;;;;;;;;;;;;;;;37820:497;;;;;;;;;;-1:-1:-1;37820:497:0;;;;;:::i;:::-;;:::i;33619:27::-;;;;;;;;;;;;;;;;11857:201;;;;;;;;;;-1:-1:-1;11857:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;12023:18:0;;;11991:7;12023:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11857:201;33426:33;;;;;;;;;;;;;;;;3274:238;;;;;;;;;;-1:-1:-1;3274:238:0;;;;;:::i;:::-;;:::i;33466:24::-;;;;;;;;;;;;;;;;39726:483;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;;;;;;;;;39845:21:::1;39869:23;39885:7:::0;39869:13;:23:::1;:::i;:::-;39907:14;::::0;39845:47;;-1:-1:-1;39907:14:0::1;;39903:185;;;39938:14;:22:::0;;-1:-1:-1;;39938:22:0::1;::::0;;39903:185:::1;;;40018:2;40001:13;:19;;:52;;;;40040:13;;40024;:29;40001:52;39993:83;;;::::0;-1:-1:-1;;;39993:83:0;;5068:2:1;39993:83:0::1;::::0;::::1;5050:21:1::0;5107:2;5087:18;;;5080:30;-1:-1:-1;;;5126:18:1;;;5119:48;5184:18;;39993:83:0::1;4866:342:1::0;39993:83:0::1;40098:16;:32:::0;;;;40141:10:::1;:20:::0;40172:13:::1;:29:::0;39726:483::o;9897:100::-;9951:13;9984:5;9977:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9897:100;:::o;12205:210::-;12324:4;12346:39;1093:10;12369:7;12378:6;12346:8;:39::i;:::-;-1:-1:-1;12403:4:0;12205:210;;;;;:::o;41131:157::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;41238:9:::1;::::0;41210:38:::1;::::0;-1:-1:-1;;;;;41238:9:0;;::::1;::::0;41210:38;::::1;::::0;::::1;::::0;41238:9:::1;::::0;41210:38:::1;41259:9;:21:::0;;-1:-1:-1;;;;;;41259:21:0::1;-1:-1:-1::0;;;;;41259:21:0;;;::::1;::::0;;;::::1;::::0;;41131:157::o;38325:275::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;38462:4:::1;38454;38433:13;11105:12:::0;;;11017:108;38433:13:::1;:17;::::0;38449:1:::1;38433:17;:::i;:::-;38432:26;;;;:::i;:::-;38431:35;;;;:::i;:::-;38421:6;:45;;38399:142;;;::::0;-1:-1:-1;;;38399:142:0;;6195:2:1;38399:142:0::1;::::0;::::1;6177:21:1::0;6234:2;6214:18;;;6207:30;6273:34;6253:18;;;6246:62;-1:-1:-1;;;6324:18:1;;;6317:45;6379:19;;38399:142:0::1;5993:411:1::0;38399:142:0::1;38575:17;:6:::0;38585::::1;38575:17;:::i;:::-;38552:20;:40:::0;-1:-1:-1;38325:275:0:o;12897:529::-;13037:4;13054:36;13064:6;13072:9;13083:6;13054:9;:36::i;:::-;-1:-1:-1;;;;;13130:19:0;;13103:24;13130:19;;;:11;:19;;;;;;;;1093:10;13130:33;;;;;;;;13196:26;;;;13174:116;;;;-1:-1:-1;;;13174:116:0;;6611:2:1;13174:116:0;;;6593:21:1;6650:2;6630:18;;;6623:30;6689:34;6669:18;;;6662:62;-1:-1:-1;;;6740:18:1;;;6733:38;6788:19;;13174:116:0;6409:404:1;13174:116:0;13326:57;13335:6;1093:10;13376:6;13357:16;:25;13326:8;:57::i;:::-;-1:-1:-1;13414:4:0;;12897:529;-1:-1:-1;;;;12897:529:0:o;13835:297::-;1093:10;13950:4;14044:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14044:34:0;;;;;;;;;;13950:4;;13972:130;;14022:7;;14044:47;;14081:10;;14044:47;:::i;:::-;13972:8;:130::i;39243:475::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;39361:21:::1;39385:23;39401:7:::0;39385:13;:23:::1;:::i;:::-;39423:13;::::0;39361:47;;-1:-1:-1;39423:13:0::1;;39419:181;;;39453:13;:21:::0;;-1:-1:-1;;39453:21:0::1;::::0;;39419:181:::1;;;39532:2;39515:13;:19;;:51;;;;39554:12;;39538:13;:28;39515:51;39507:81;;;::::0;-1:-1:-1;;;39507:81:0;;7020:2:1;39507:81:0::1;::::0;::::1;7002:21:1::0;7059:2;7039:18;;;7032:30;-1:-1:-1;;;7078:18:1;;;7071:47;7135:18;;39507:81:0::1;6818:341:1::0;39507:81:0::1;39610:15;:31:::0;;;;39652:9:::1;:19:::0;39682:12:::1;:28:::0;39243:475::o;3016:103::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;3081:30:::1;3108:1;3081:18;:30::i;:::-;3016:103::o:0;37629:121::-;2438:6;;37681:4;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;-1:-1:-1;37698:14:0::1;:22:::0;;-1:-1:-1;;37698:22:0::1;::::0;;;37629:121;:::o;38872:167::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38985:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38985:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38872:167::o;37429:148::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;37484:13:::1;:20:::0;;-1:-1:-1;;37515:18:0;;;;;37557:12:::1;37544:10;:25:::0;37429:148::o;39135:100::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;39206:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39206:21:0;;::::1;::::0;;;::::1;::::0;;39135:100::o;10116:104::-;10172:13;10205:7;10198:14;;;;;:::i;40407:304::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;40551:13:::1;-1:-1:-1::0;;;;;40543:21:0::1;:4;-1:-1:-1::0;;;;;40543:21:0::1;::::0;40521:128:::1;;;::::0;-1:-1:-1;;;40521:128:0;;7366:2:1;40521:128:0::1;::::0;::::1;7348:21:1::0;7405:2;7385:18;;;7378:30;7444:34;7424:18;;;7417:62;7515:27;7495:18;;;7488:55;7560:19;;40521:128:0::1;7164:421:1::0;40521:128:0::1;40662:41;40691:4;40697:5;40662:28;:41::i;:::-;40407:304:::0;;:::o;14635:482::-;1093:10;14755:4;14804:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14804:34:0;;;;;;;;;;14871:35;;;;14849:122;;;;-1:-1:-1;;;14849:122:0;;7792:2:1;14849:122:0;;;7774:21:1;7831:2;7811:18;;;7804:30;7870:34;7850:18;;;7843:62;-1:-1:-1;;;7921:18:1;;;7914:35;7966:19;;14849:122:0;7590:401:1;14849:122:0;15007:67;1093:10;15030:7;15058:15;15039:16;:34;15007:8;:67::i;:::-;-1:-1:-1;15105:4:0;;14635:482;-1:-1:-1;;;14635:482:0:o;11578:216::-;11700:4;11722:42;1093:10;11746:9;11757:6;11722:9;:42::i;40915:208::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;41052:15:::1;::::0;41009:59:::1;::::0;-1:-1:-1;;;;;41052:15:0;;::::1;::::0;41009:59;::::1;::::0;::::1;::::0;41052:15:::1;::::0;41009:59:::1;41079:15;:36:::0;;-1:-1:-1;;;;;;41079:36:0::1;-1:-1:-1::0;;;;;41079:36:0;;;::::1;::::0;;;::::1;::::0;;40915:208::o;40217:182::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40302:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40302:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40357:34;;1416:41:1;;;40357:34:0::1;::::0;1389:18:1;40357:34:0::1;;;;;;;40217:182:::0;;:::o;38608:256::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;38748:4:::1;38740;38719:13;11105:12:::0;;;11017:108;38719:13:::1;:17;::::0;38735:1:::1;38719:17;:::i;:::-;38718:26;;;;:::i;:::-;38717:35;;;;:::i;:::-;38707:6;:45;;38685:131;;;::::0;-1:-1:-1;;;38685:131:0;;8198:2:1;38685:131:0::1;::::0;::::1;8180:21:1::0;8237:2;8217:18;;;8210:30;8276:34;8256:18;;;8249:62;-1:-1:-1;;;8327:18:1;;;8320:34;8371:19;;38685:131:0::1;7996:400:1::0;38685:131:0::1;38839:17;:6:::0;38849::::1;38839:17;:::i;:::-;38827:9;:29:::0;-1:-1:-1;38608:256:0:o;37820:497::-;2438:6;;37928:4;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;38007:6:::1;37986:13;11105:12:::0;;;11017:108;37986:13:::1;:17;::::0;38002:1:::1;37986:17;:::i;:::-;37985:28;;;;:::i;:::-;37972:9;:41;;37950:144;;;::::0;-1:-1:-1;;;37950:144:0;;8603:2:1;37950:144:0::1;::::0;::::1;8585:21:1::0;8642:2;8622:18;;;8615:30;8681:34;8661:18;;;8654:62;-1:-1:-1;;;8732:18:1;;;8725:51;8793:19;;37950:144:0::1;8401:417:1::0;37950:144:0::1;38162:4;38141:13;11105:12:::0;;;11017:108;38141:13:::1;:17;::::0;38157:1:::1;38141:17;:::i;:::-;38140:26;;;;:::i;:::-;38127:9;:39;;38105:141;;;::::0;-1:-1:-1;;;38105:141:0;;9025:2:1;38105:141:0::1;::::0;::::1;9007:21:1::0;9064:2;9044:18;;;9037:30;9103:34;9083:18;;;9076:62;-1:-1:-1;;;9154:18:1;;;9147:50;9214:19;;38105:141:0::1;8823:416:1::0;38105:141:0::1;-1:-1:-1::0;38257:18:0::1;:30:::0;;;38305:4:::1;2656:1;37820:497:::0;;;:::o;3274:238::-;2438:6;;-1:-1:-1;;;;;2438:6:0;1093:10;2585:23;2577:68;;;;-1:-1:-1;;;2577:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3377:22:0;::::1;3355:110;;;::::0;-1:-1:-1;;;3355:110:0;;9446:2:1;3355:110:0::1;::::0;::::1;9428:21:1::0;9485:2;9465:18;;;9458:30;9524:34;9504:18;;;9497:62;-1:-1:-1;;;9575:18:1;;;9568:36;9621:19;;3355:110:0::1;9244:402:1::0;3355:110:0::1;3476:28;3495:8;3476:18;:28::i;:::-;3274:238:::0;:::o;18425:380::-;-1:-1:-1;;;;;18561:19:0;;18553:68;;;;-1:-1:-1;;;18553:68:0;;9853:2:1;18553:68:0;;;9835:21:1;9892:2;9872:18;;;9865:30;9931:34;9911:18;;;9904:62;-1:-1:-1;;;9982:18:1;;;9975:34;10026:19;;18553:68:0;9651:400:1;18553:68:0;-1:-1:-1;;;;;18640:21:0;;18632:68;;;;-1:-1:-1;;;18632:68:0;;10258:2:1;18632:68:0;;;10240:21:1;10297:2;10277:18;;;10270:30;10336:34;10316:18;;;10309:62;-1:-1:-1;;;10387:18:1;;;10380:32;10429:19;;18632:68:0;10056:398:1;18632:68:0;-1:-1:-1;;;;;18713:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18765:32;;2101:25:1;;;18765:32:0;;2074:18:1;18765:32:0;;;;;;;18425:380;;;:::o;41430:3405::-;-1:-1:-1;;;;;41562:18:0;;41554:68;;;;-1:-1:-1;;;41554:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41641:16:0;;41633:64;;;;-1:-1:-1;;;41633:64:0;;;;;;;:::i;:::-;41714:6;41724:1;41714:11;41710:93;;41742:28;41758:4;41764:2;41768:1;41742:15;:28::i;:::-;41430:3405;;;:::o;41710:93::-;41819:14;;;;41815:1337;;;2438:6;;-1:-1:-1;;;;;41872:15:0;;;2438:6;;41872:15;;;;:49;;-1:-1:-1;2438:6:0;;-1:-1:-1;;;;;41908:13:0;;;2438:6;;41908:13;;41872:49;:86;;;;-1:-1:-1;;;;;;41942:16:0;;;;41872:86;:128;;;;-1:-1:-1;;;;;;41979:21:0;;41993:6;41979:21;;41872:128;:158;;;;-1:-1:-1;42022:8:0;;-1:-1:-1;;;42022:8:0;;;;42021:9;41872:158;41850:1291;;;42070:13;;;;;;;42065:223;;-1:-1:-1;;;;;42142:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42171:23:0;;;;;;:19;:23;;;;;;;;42142:52;42108:160;;;;-1:-1:-1;;;42108:160:0;;11471:2:1;42108:160:0;;;11453:21:1;11510:2;11490:18;;;11483:30;-1:-1:-1;;;11529:18:1;;;11522:52;11591:18;;42108:160:0;11269:346:1;42108:160:0;-1:-1:-1;;;;;42362:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42419:35:0;;;;;;:31;:35;;;;;;;;42418:36;42362:92;42336:790;;;42541:20;;42531:6;:30;;42497:169;;;;-1:-1:-1;;;42497:169:0;;11822:2:1;42497:169:0;;;11804:21:1;11861:2;11841:18;;;11834:30;11900:34;11880:18;;;11873:62;-1:-1:-1;;;11951:18:1;;;11944:51;12012:19;;42497:169:0;11620:417:1;42497:169:0;42749:9;;-1:-1:-1;;;;;11339:18:0;;11307:7;11339:18;;;;;;;;;;;42723:22;;:6;:22;:::i;:::-;:35;;42689:140;;;;-1:-1:-1;;;42689:140:0;;12244:2:1;42689:140:0;;;12226:21:1;12283:2;12263:18;;;12256:30;-1:-1:-1;;;12302:18:1;;;12295:49;12361:18;;42689:140:0;12042:343:1;42689:140:0;42336:790;;;-1:-1:-1;;;;;42906:35:0;;;;;;:31;:35;;;;;;;;42901:225;;43026:9;;-1:-1:-1;;;;;11339:18:0;;11307:7;11339:18;;;;;;;;;;;43000:22;;:6;:22;:::i;:::-;:35;;42966:140;;;;-1:-1:-1;;;42966:140:0;;12244:2:1;42966:140:0;;;12226:21:1;12283:2;12263:18;;;12256:30;-1:-1:-1;;;12302:18:1;;;12295:49;12361:18;;42966:140:0;12042:343:1;42966:140:0;43213:4;43164:28;11339:18;;;;;;;;;;;43271;;43247:42;;;;;;;43320:35;;-1:-1:-1;43344:11:0;;;;;;;43320:35;:61;;;;-1:-1:-1;43373:8:0;;-1:-1:-1;;;43373:8:0;;;;43372:9;43320:61;:110;;;;-1:-1:-1;;;;;;43399:31:0;;;;;;:25;:31;;;;;;;;43398:32;43320:110;:153;;;;-1:-1:-1;;;;;;43448:25:0;;;;;;:19;:25;;;;;;;;43447:26;43320:153;:194;;;;-1:-1:-1;;;;;;43491:23:0;;;;;;:19;:23;;;;;;;;43490:24;43320:194;43302:326;;;43541:8;:15;;-1:-1:-1;;;;43541:15:0;-1:-1:-1;;;43541:15:0;;;43573:10;:8;:10::i;:::-;43600:8;:16;;-1:-1:-1;;;;43600:16:0;;;43302:326;43656:8;;-1:-1:-1;;;;;43766:25:0;;43640:12;43766:25;;;:19;:25;;;;;;43656:8;-1:-1:-1;;;43656:8:0;;;;;43655:9;;43766:25;;:52;;-1:-1:-1;;;;;;43795:23:0;;;;;;:19;:23;;;;;;;;43766:52;43762:100;;;-1:-1:-1;43845:5:0;43762:100;43874:12;43979:7;43975:807;;;-1:-1:-1;;;;;44031:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44080:1;44064:13;;:17;44031:50;44027:606;;;44109:34;44139:3;44109:25;44120:13;;44109:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44102:41;;44200:13;;44186:10;;44179:4;:17;;;;:::i;:::-;44178:35;;;;:::i;:::-;44162:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44282:13:0;;44262:16;;44255:23;;:4;:23;:::i;:::-;44254:41;;;;:::i;:::-;44232:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;44027:606:0;;-1:-1:-1;44027:606:0;;-1:-1:-1;;;;;44357:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44407:1;44392:12;;:16;44357:51;44353:280;;;44436:33;44465:3;44436:24;44447:12;;44436:6;:10;;:24;;;;:::i;:33::-;44429:40;;44525:12;;44512:9;;44505:4;:16;;;;:::i;:::-;44504:33;;;;:::i;:::-;44488:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;44605:12:0;;44586:15;;44579:22;;:4;:22;:::i;:::-;44578:39;;;;:::i;:::-;44556:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44353:280:0;44653:8;;44649:91;;44682:42;44698:4;44712;44719;44682:15;:42::i;:::-;44756:14;44766:4;44756:14;;:::i;:::-;;;43975:807;44794:33;44810:4;44816:2;44820:6;44794:15;:33::i;:::-;41543:3292;;;;41430:3405;;;:::o;3672:191::-;3765:6;;;-1:-1:-1;;;;;3782:17:0;;;-1:-1:-1;;;;;;3782:17:0;;;;;;;3815:40;;3765:6;;;3782:17;3765:6;;3815:40;;3746:16;;3815:40;3735:128;3672:191;:::o;40719:188::-;-1:-1:-1;;;;;40802:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40802:39:0;;;;;;;;;;40859:40;;40802:39;;:31;40859:40;;;40719:188;;:::o;15607:770::-;-1:-1:-1;;;;;15747:20:0;;15739:70;;;;-1:-1:-1;;;15739:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15828:23:0;;15820:71;;;;-1:-1:-1;;;15820:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15988:17:0;;15964:21;15988:17;;;;;;;;;;;16038:23;;;;16016:111;;;;-1:-1:-1;;;16016:111:0;;12725:2:1;16016:111:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:34;12783:18;;;12776:62;-1:-1:-1;;;12854:18:1;;;12847:36;12900:19;;16016:111:0;12523:402:1;16016:111:0;-1:-1:-1;;;;;16163:17:0;;;:9;:17;;;;;;;;;;;16183:22;;;16163:42;;16227:20;;;;;;;;:30;;16199:6;;16163:9;16227:30;;16199:6;;16227:30;:::i;:::-;;;;;;;;16292:9;-1:-1:-1;;;;;16275:35:0;16284:6;-1:-1:-1;;;;;16275:35:0;;16303:6;16275:35;;;;2101:25:1;;2089:2;2074:18;;1955:177;16275:35:0;;;;;;;;15728:649;15607:770;;;:::o;45440:918::-;45523:4;45479:23;11339:18;;;;;;;;;;;45479:50;;45540:25;45589:12;;45568:18;;:33;;;;:::i;:::-;45540:61;-1:-1:-1;45612:12:0;45641:20;;;:46;;-1:-1:-1;45665:22:0;;45641:46;45637:85;;;45704:7;;;45440:918::o;45637:85::-;45756:18;;:23;;45777:2;45756:23;:::i;:::-;45738:15;:41;45734:115;;;45814:18;;:23;;45835:2;45814:23;:::i;:::-;45796:41;;45734:115;45861:33;45878:15;45861:16;:33::i;:::-;45907:18;45928:21;45907:42;;45960:23;45986:57;46025:17;45986:34;46001:18;;45986:10;:14;;:34;;;;:::i;:57::-;45960:83;-1:-1:-1;46054:17:0;46074:28;45960:83;46074:10;:28;:::i;:::-;46136:1;46115:18;:22;;;46148:12;:16;;;46199:9;;46191:45;;46054:48;;-1:-1:-1;;;;;;46199:9:0;;46054:48;;46191:45;46136:1;46191:45;46054:48;46199:9;46191:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46271:15:0;;46263:87;;46177:59;;-1:-1:-1;;;;;;46271:15:0;;46314:21;;46263:87;;;;46314:21;46271:15;46263:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;45440:918:0:o;24038:98::-;24096:7;24123:5;24127:1;24123;:5;:::i;:::-;24116:12;24038:98;-1:-1:-1;;;24038:98:0:o;24437:::-;24495:7;24522:5;24526:1;24522;:5;:::i;44843:589::-;44993:16;;;45007:1;44993:16;;;;;;;;44969:21;;44993:16;;;;;;;;;;-1:-1:-1;44993:16:0;44969:40;;45038:4;45020;45025:1;45020:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45020:23:0;;;-1:-1:-1;;;;;45020:23:0;;;;;45064:15;-1:-1:-1;;;;;45064:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45054:4;45059:1;45054:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45054:32:0;;;-1:-1:-1;;;;;45054:32:0;;;;;45099:62;45116:4;45131:15;45149:11;45099:8;:62::i;:::-;45200:224;;-1:-1:-1;;;45200:224:0;;-1:-1:-1;;;;;45200:15:0;:66;;;;:224;;45281:11;;45307:1;;45351:4;;45378;;45398:15;;45200:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44898:534;44843:589;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2137:180::-;2196:6;2249:2;2237:9;2228:7;2224:23;2220:32;2217:52;;;2265:1;2262;2255:12;2217:52;-1:-1:-1;2288:23:1;;2137:180;-1:-1:-1;2137:180:1:o;2322:456::-;2399:6;2407;2415;2468:2;2456:9;2447:7;2443:23;2439:32;2436:52;;;2484:1;2481;2474:12;2436:52;2523:9;2510:23;2542:31;2567:5;2542:31;:::i;:::-;2592:5;-1:-1:-1;2649:2:1;2634:18;;2621:32;2662:33;2621:32;2662:33;:::i;:::-;2322:456;;2714:7;;-1:-1:-1;;;2768:2:1;2753:18;;;;2740:32;;2322:456::o;3180:160::-;3245:20;;3301:13;;3294:21;3284:32;;3274:60;;3330:1;3327;3320:12;3345:315;3410:6;3418;3471:2;3459:9;3450:7;3446:23;3442:32;3439:52;;;3487:1;3484;3477:12;3439:52;3526:9;3513:23;3545:31;3570:5;3545:31;:::i;:::-;3595:5;-1:-1:-1;3619:35:1;3650:2;3635:18;;3619:35;:::i;:::-;3609:45;;3345:315;;;;;:::o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:388::-;3918:6;3926;3979:2;3967:9;3958:7;3954:23;3950:32;3947:52;;;3995:1;3992;3985:12;3947:52;4034:9;4021:23;4053:31;4078:5;4053:31;:::i;:::-;4103:5;-1:-1:-1;4160:2:1;4145:18;;4132:32;4173:33;4132:32;4173:33;:::i;:::-;4225:7;4215:17;;;3850:388;;;;;:::o;4243:356::-;4445:2;4427:21;;;4464:18;;;4457:30;4523:34;4518:2;4503:18;;4496:62;4590:2;4575:18;;4243:356::o;4604:127::-;4665:10;4660:3;4656:20;4653:1;4646:31;4696:4;4693:1;4686:15;4720:4;4717:1;4710:15;4736:125;4801:9;;;4822:10;;;4819:36;;;4835:18;;:::i;5213:380::-;5292:1;5288:12;;;;5335;;;5356:61;;5410:4;5402:6;5398:17;5388:27;;5356:61;5463:2;5455:6;5452:14;5432:18;5429:38;5426:161;;5509:10;5504:3;5500:20;5497:1;5490:31;5544:4;5541:1;5534:15;5572:4;5569:1;5562:15;5426:161;;5213:380;;;:::o;5598:168::-;5671:9;;;5702;;5719:15;;;5713:22;;5699:37;5689:71;;5740:18;;:::i;5771:217::-;5811:1;5837;5827:132;;5881:10;5876:3;5872:20;5869:1;5862:31;5916:4;5913:1;5906:15;5944:4;5941:1;5934:15;5827:132;-1:-1:-1;5973:9:1;;5771:217::o;10459:401::-;10661:2;10643:21;;;10700:2;10680:18;;;10673:30;10739:34;10734:2;10719:18;;10712:62;-1:-1:-1;;;10805:2:1;10790:18;;10783:35;10850:3;10835:19;;10459:401::o;10865:399::-;11067:2;11049:21;;;11106:2;11086:18;;;11079:30;11145:34;11140:2;11125:18;;11118:62;-1:-1:-1;;;11211:2:1;11196:18;;11189:33;11254:3;11239:19;;10865:399::o;12390:128::-;12457:9;;;12478:11;;;12475:37;;;12492:18;;:::i;13272:127::-;13333:10;13328:3;13324:20;13321:1;13314:31;13364:4;13361:1;13354:15;13388:4;13385:1;13378:15;13404:251;13474:6;13527:2;13515:9;13506:7;13502:23;13498:32;13495:52;;;13543:1;13540;13533:12;13495:52;13575:9;13569:16;13594:31;13619:5;13594:31;:::i;13660:980::-;13922:4;13970:3;13959:9;13955:19;14001:6;13990:9;13983:25;14027:2;14065:6;14060:2;14049:9;14045:18;14038:34;14108:3;14103:2;14092:9;14088:18;14081:31;14132:6;14167;14161:13;14198:6;14190;14183:22;14236:3;14225:9;14221:19;14214:26;;14275:2;14267:6;14263:15;14249:29;;14296:1;14306:195;14320:6;14317:1;14314:13;14306:195;;;14385:13;;-1:-1:-1;;;;;14381:39:1;14369:52;;14476:15;;;;14441:12;;;;14417:1;14335:9;14306:195;;;-1:-1:-1;;;;;;;14557:32:1;;;;14552:2;14537:18;;14530:60;-1:-1:-1;;;14621:3:1;14606:19;14599:35;14518:3;13660:980;-1:-1:-1;;;13660:980:1:o

Swarm Source

ipfs://701ce4f7ba861aa7f85b3a194f2b55d0057fc981143984650620a10f680b0d50
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.