ETH Price: $2,502.70 (-5.00%)

Token

Monkey see, Monkey do (CAESAR)
 

Overview

Max Total Supply

1,000,000 CAESAR

Holders

251 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.920488908163784844 CAESAR

Value
$0.00
0x99749f51e759c272abc76fee393a3f92230db217
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Monkey see, Monkey do is a meme-based ecosystem. The main component of the ecosystem is Monkey DAO; governed by it's native CAESAR token.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CAESAR

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-26
*/

/**
Our Monkeys are socialised:
🌐 https://caesarerc.com
🗣 https://t.me/caesarerc
🐦 https://twitter.com/caesarerc
*/

// SPDX-License-Identifier: MIT

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity 0.8.17;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity 0.8.17;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity 0.8.17;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity 0.8.17;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

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


// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity 0.8.17;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity 0.8.17;

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

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



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


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

pragma solidity 0.8.17;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity 0.8.17;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity 0.8.17;




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

        if (amount > 0) {

        emit Transfer(sender, recipient, amount);}

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: contracts/HOUR.sol


pragma solidity 0.8.17;


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

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
   
    struct BuyFee {
        uint16 marketingFee;
    }

    struct SellFee {
        uint16 marketingFee;
    }

    bool private swapping;

    BuyFee public buyFee;
    SellFee public sellFee;

    

    uint256 public swapThreshold = 0.00005 ether; //threshold in eth (when collected tokens reach this worth or more it's swapped)
    uint256 private maxSupply = 1000000 * 1e18; // 1 million tokens

    uint256 public maxTxAmount = maxSupply * 15  /1000; // 1.5% of the supply
    uint256 public maxWalletAmount = maxSupply * 2 / 100; // 2% of the supply (antiwhale)

    uint16 private totalBuyFee;
    uint16 private totalSellFee;
    

    bool public swapEnabled;
    bool private isTradingEnabled;
   

    address payable marketingWallet = payable(address(0xCAE200423476faa8a33a883b1A28F835b8b6F415)); // marketingWallet to receive ETH
  
   
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimit;

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

   

    modifier lockTheSwap() {
        swapping = true;
        _;
        swapping = false;
    }
  
    constructor() ERC20("Monkey see, Monkey do", "CAESAR") {
       
        buyFee.marketingFee = 5;
        totalBuyFee = 5;

        
        sellFee.marketingFee = 25;
        totalSellFee = 25;

        

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D// Uniswap V2 Router
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

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

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), maxSupply); // 100 Million Tokens
    }

    receive() external payable {}

    function updateRouter(address newAddress) external onlyOwner {
    require(newAddress != address(uniswapV2Router), "CAESAR: The router already has that address");
            uniswapV2Router = IUniswapV2Router02(newAddress);
         address get_pair =
            IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this),
            uniswapV2Router.WETH());
        if (get_pair == address(0)) {
          uniswapV2Pair =
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),
             uniswapV2Router.WETH());
    } else {
        uniswapV2Pair = get_pair;
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded,"CAESAR: Account is already the value of excluded");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    // claim other ERC20 token from token contract

     function claimStuckTokens(address _token) external onlyOwner {
        if (_token == address(this)){
            transfer(owner(), balanceOf(address(this)));
        } else {
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
        }
    }

    // claim stucked Ether (if any)
    function claimStuckEther() external onlyOwner {
        (bool sent,) = marketingWallet.call{value: address(this).balance}("");
        require (sent, "eth transfer failed");
    }

    // exclude from maxTx limit
    function excludefromLimit(address account, bool excluded) external onlyOwner {
        _isExcludedFromLimit[account] = excluded;
    }

    

   function enableTrading() external onlyOwner {
        isTradingEnabled = true;
       
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "CAESAR: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }
            
    function setBuyFees(
        uint16 _market
        ) external onlyOwner

    {
        buyFee.marketingFee = _market;
      
         totalBuyFee = _market ;
        require(totalBuyFee <= 10,"MaX buy fees limit  is 10%");
    }

   
    function setSellFees(
        uint16 _market
        ) external onlyOwner

    {
        sellFee.marketingFee = _market;
         totalSellFee = _market;
        require(totalSellFee <= 15,"MaX buy fees limit  is 15%");
    }

                    

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

    // function to change marketing  wallet
    function updateMarketWallet(address mWallet) external onlyOwner {
    require (mWallet != address(0), "marketing wallet can not be a zero address");
        marketingWallet = payable(mWallet);
    }

   
  
    // Function to set Max Wallet limit ( How many tokens a wallet can hold)
    function setMaxWallet(uint256 amount) external onlyOwner {
        require(amount >= totalSupply() / 1e20, "Max Wallet amount should be 1% or more of the supply");
        maxWalletAmount = amount * 1e18;
    }
    // function to set Max Tx limit per transaction
    function setMaxTxAmount(uint256 amount) external onlyOwner {
      require(amount >= totalSupply() / 1e21, "Max Tx amount should be 0.1% of more of the supply");
        maxTxAmount = amount * 1e18;
    }
  

    // function to set threshold for eth conversion
   function setSwapThreshold(uint256 amountInWei) external onlyOwner {
       require (amountInWei > 1e9, "threshold should be greator than 1 gwei");
       swapThreshold =  amountInWei;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "HOUR: transfer from the zero address");
        require(to != address(0), "HOUR: transfer to the zero address");
       
        require( isTradingEnabled || _isExcludedFromFees[from],
            "Trading not enabled yet"
        );

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

        address[] memory sellPath = new address[](2);
        sellPath[0] = address(this);
        sellPath[1] = uniswapV2Router.WETH();

        uint256 ethValue;

        if (balanceOf(address(this)) > 0){

        ethValue = uniswapV2Router.getAmountsOut(balanceOf(address(this)), sellPath)[1];
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = ethValue >=
            swapThreshold;

        if (
            swapEnabled &&
            !swapping &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance
        ) {
            
            uint256 swapTokens = contractTokenBalance;
            swapAndSendToMarketing(swapTokens);

        }

        bool takeFee = true;

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

        if (takeFee) {
            uint256 fees;
          
            if (automatedMarketMakerPairs[to]) {
                fees = totalSellFee;
               
            } else if (automatedMarketMakerPairs[from]) {
                fees = totalBuyFee;
                
            }

            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                if (automatedMarketMakerPairs[to]) {
                    require(amount <= maxTxAmount, "Sell exceeds Max Tx limit");
                } else if (automatedMarketMakerPairs[from]) {
                  require(amount <= maxTxAmount, "Buy exceeds Max Tx limit");
                   
                }

                if (!automatedMarketMakerPairs[to]) {
                    require(
                        balanceOf(to) + amount <= maxWalletAmount,
                        "AntiWhale: Balance exceeds max Wallet limit"
                    );
                }
            }

            uint256 feeAmount = amount.mul(fees).div(100);
            amount = amount.sub(feeAmount);
            super._transfer(from, address(this), feeAmount);
        }

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

    function swapAndSendToMarketing (uint256 tokens) private lockTheSwap {
        swapTokensForEth(tokens); 
       (bool os, ) = payable(marketingWallet).call{value: address(this).balance}("");
       require(os,"transaction failed");

    }
   

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

    
}

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"},{"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":"buyFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimStuckEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"}],"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":[{"internalType":"uint16","name":"_market","type":"uint16"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_market","type":"uint16"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountInWei","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mWallet","type":"address"}],"name":"updateMarketWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052652d79883d2000600a5569d3c21bcecceda1000000600b556103e8600b54600f62000030919062000720565b6200003c919062000740565b600c556064600b54600262000052919062000720565b6200005e919062000740565b600d55600e8054600160301b600160d01b03191679cae200423476faa8a33a883b1a28f835b8b6f4150000000000001790553480156200009d57600080fd5b506040518060400160405280601581526020017f4d6f6e6b6579207365652c204d6f6e6b657920646f00000000000000000000008152506040518060400160405280600681526020016521a0a2a9a0a960d11b815250816003908162000104919062000807565b50600462000113828262000807565b505050620001306200012a6200039260201b60201c565b62000396565b60088054600561ffff1991821617909155600e805460098054601994169390931790925563ffffffff19909116621900051790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a01559160048083019260209291908290030181865afa158015620001ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e09190620008d3565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002549190620008d3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c89190620008d3565b600680546001600160a01b038086166001600160a01b0319928316179092556007805492841692909116919091179055905062000307816001620003e8565b620003266200031e6005546001600160a01b031690565b6001620004da565b62000333306001620004da565b600e546200035690660100000000000090046001600160a01b03166001620004da565b600e805460ff60201b19166401000000001790556200038a620003816005546001600160a01b031690565b600b5462000620565b50506200091b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff90911615150362000486576040805162461bcd60e51b81526020600482015260248101919091527f4341455341523a204175746f6d61746564206d61726b6574206d616b6572207060448201527f61697220697320616c72656164792073657420746f20746861742076616c756560648201526084015b60405180910390fd5b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200047d565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503620005c15760405162461bcd60e51b815260206004820152603060248201527f4341455341523a204163636f756e7420697320616c726561647920746865207660448201526f185b1d59481bd988195e18db1d59195960821b60648201526084016200047d565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200047d565b80600260008282546200068c919062000905565b90915550506001600160a01b03821660009081526020819052604081208054839290620006bb90849062000905565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200073a576200073a6200070a565b92915050565b6000826200075e57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200078e57607f821691505b602082108103620007af57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200070557600081815260208120601f850160051c81016020861015620007de5750805b601f850160051c820191505b81811015620007ff57828155600101620007ea565b505050505050565b81516001600160401b0381111562000823576200082362000763565b6200083b8162000834845462000779565b84620007b5565b602080601f8311600181146200087357600084156200085a5750858301515b600019600386901b1c1916600185901b178555620007ff565b600085815260208120601f198616915b82811015620008a45788860151825594840194600190910190840162000883565b5085821015620008c35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008e657600080fd5b81516001600160a01b0381168114620008fe57600080fd5b9392505050565b808201808211156200073a576200073a6200070a565b61284b806200092b6000396000f3fe60806040526004361061021e5760003560e01c8063715018a611610123578063a9059cbb116100ab578063c851cc321161006f578063c851cc3214610658578063dd62ed3e14610678578063ec28438a146106be578063f2fde38b146106de578063f9d0831a146106fe57600080fd5b8063a9059cbb146105b2578063aa4bde28146105d2578063ad73fc3e146105e8578063b62496f514610608578063c02466681461063857600080fd5b80638da5cb5b116100f25780638da5cb5b1461051f57806395d89b411461053d5780639a7a23d6146105525780639d0014b114610572578063a457c2d71461059257600080fd5b8063715018a6146104bf5780637537a47f146104d45780638a8c523c146104f45780638c0b5e221461050957600080fd5b806339509351116101a65780634d474d42116101755780634d474d42146103ee5780634fbee1931461040e5780635d0044ca146104475780636ddd17131461046757806370a082311461048957600080fd5b8063395093511461037357806343c348a51461039357806347062402146103b357806349bd5a5e146103ce57600080fd5b80631694505e116101ed5780631694505e146102bc57806318160ddd146102f457806323b872dd146103095780632b14ca5614610329578063313ce5671461035757600080fd5b80630445b6671461022a57806306fdde0314610253578063095ea7b31461027557806312e322b3146102a557600080fd5b3661022557005b600080fd5b34801561023657600080fd5b50610240600a5481565b6040519081526020015b60405180910390f35b34801561025f57600080fd5b5061026861071e565b60405161024a91906123b4565b34801561028157600080fd5b50610295610290366004612417565b6107b0565b604051901515815260200161024a565b3480156102b157600080fd5b506102ba6107c7565b005b3480156102c857600080fd5b506006546102dc906001600160a01b031681565b6040516001600160a01b03909116815260200161024a565b34801561030057600080fd5b50600254610240565b34801561031557600080fd5b50610295610324366004612443565b61089d565b34801561033557600080fd5b506009546103449061ffff1681565b60405161ffff909116815260200161024a565b34801561036357600080fd5b506040516012815260200161024a565b34801561037f57600080fd5b5061029561038e366004612417565b610947565b34801561039f57600080fd5b506102ba6103ae366004612484565b610983565b3480156103bf57600080fd5b506008546103449061ffff1681565b3480156103da57600080fd5b506007546102dc906001600160a01b031681565b3480156103fa57600080fd5b506102ba6104093660046124a8565b610a1d565b34801561041a57600080fd5b506102956104293660046124a8565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561045357600080fd5b506102ba6104623660046124c5565b610adf565b34801561047357600080fd5b50600e5461029590640100000000900460ff1681565b34801561049557600080fd5b506102406104a43660046124a8565b6001600160a01b031660009081526020819052604090205490565b3480156104cb57600080fd5b506102ba610baa565b3480156104e057600080fd5b506102ba6104ef3660046124ec565b610be0565b34801561050057600080fd5b506102ba610c35565b34801561051557600080fd5b50610240600c5481565b34801561052b57600080fd5b506005546001600160a01b03166102dc565b34801561054957600080fd5b50610268610c78565b34801561055e57600080fd5b506102ba61056d3660046124ec565b610c87565b34801561057e57600080fd5b506102ba61058d3660046124c5565b610d55565b34801561059e57600080fd5b506102956105ad366004612417565b610de7565b3480156105be57600080fd5b506102956105cd366004612417565b610e80565b3480156105de57600080fd5b50610240600d5481565b3480156105f457600080fd5b506102ba610603366004612484565b610e8d565b34801561061457600080fd5b506102956106233660046124a8565b60116020526000908152604090205460ff1681565b34801561064457600080fd5b506102ba6106533660046124ec565b610f39565b34801561066457600080fd5b506102ba6106733660046124a8565b61104b565b34801561068457600080fd5b50610240610693366004612525565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ca57600080fd5b506102ba6106d93660046124c5565b61141f565b3480156106ea57600080fd5b506102ba6106f93660046124a8565b6114e8565b34801561070a57600080fd5b506102ba6107193660046124a8565b611580565b60606003805461072d90612553565b80601f016020809104026020016040519081016040528092919081815260200182805461075990612553565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bd3384846116eb565b5060015b92915050565b6005546001600160a01b031633146107fa5760405162461bcd60e51b81526004016107f19061258d565b60405180910390fd5b600e54604051600091600160301b90046001600160a01b03169047908381818185875af1925050503d806000811461084e576040519150601f19603f3d011682016040523d82523d6000602084013e610853565b606091505b505090508061089a5760405162461bcd60e51b8152602060048201526013602482015272195d1a081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016107f1565b50565b60006108aa84848461180f565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107f1565b61093c85338584036116eb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107bd91859061097e9086906125d8565b6116eb565b6005546001600160a01b031633146109ad5760405162461bcd60e51b81526004016107f19061258d565b6008805461ffff831661ffff199182168117909255600e805490911682179055600a101561089a5760405162461bcd60e51b815260206004820152601a60248201527f4d6158206275792066656573206c696d6974202069732031302500000000000060448201526064016107f1565b6005546001600160a01b03163314610a475760405162461bcd60e51b81526004016107f19061258d565b6001600160a01b038116610ab05760405162461bcd60e51b815260206004820152602a60248201527f6d61726b6574696e672077616c6c65742063616e206e6f742062652061207a65604482015269726f206164647265737360b01b60648201526084016107f1565b600e80546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b6005546001600160a01b03163314610b095760405162461bcd60e51b81526004016107f19061258d565b68056bc75e2d63100000610b1c60025490565b610b2691906125eb565b811015610b925760405162461bcd60e51b815260206004820152603460248201527f4d61782057616c6c657420616d6f756e742073686f756c64206265203125206f60448201527372206d6f7265206f662074686520737570706c7960601b60648201526084016107f1565b610ba481670de0b6b3a764000061260d565b600d5550565b6005546001600160a01b03163314610bd45760405162461bcd60e51b81526004016107f19061258d565b610bde6000611e52565b565b6005546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016107f19061258d565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c5f5760405162461bcd60e51b81526004016107f19061258d565b600e805465ff0000000000191665010000000000179055565b60606004805461072d90612553565b6005546001600160a01b03163314610cb15760405162461bcd60e51b81526004016107f19061258d565b6007546001600160a01b0390811690831603610d475760405162461bcd60e51b815260206004820152604960248201527f4341455341523a2054686520756e697377617020706169722063616e6e6f742060448201527f62652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d606482015268616b6572506169727360b81b608482015260a4016107f1565b610d518282611ea4565b5050565b6005546001600160a01b03163314610d7f5760405162461bcd60e51b81526004016107f19061258d565b633b9aca008111610de25760405162461bcd60e51b815260206004820152602760248201527f7468726573686f6c642073686f756c642062652067726561746f72207468616e6044820152662031206777656960c81b60648201526084016107f1565b600a55565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e695760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f1565b610e7633858584036116eb565b5060019392505050565b60006107bd33848461180f565b6005546001600160a01b03163314610eb75760405162461bcd60e51b81526004016107f19061258d565b6009805461ffff191661ffff838116918217909255600e805463ffff00001916620100009283021790819055600f919004909116111561089a5760405162461bcd60e51b815260206004820152601a60248201527f4d6158206275792066656573206c696d6974202069732031352500000000000060448201526064016107f1565b6005546001600160a01b03163314610f635760405162461bcd60e51b81526004016107f19061258d565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610fec5760405162461bcd60e51b815260206004820152603060248201527f4341455341523a204163636f756e7420697320616c726561647920746865207660448201526f185b1d59481bd988195e18db1d59195960821b60648201526084016107f1565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110755760405162461bcd60e51b81526004016107f19061258d565b6006546001600160a01b03908116908216036110e75760405162461bcd60e51b815260206004820152602b60248201527f4341455341523a2054686520726f7574657220616c726561647920686173207460448201526a686174206164647265737360a81b60648201526084016107f1565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015611143573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111679190612624565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ed9190612624565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c9190612624565b90506001600160a01b0381166113fe57600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e39190612624565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611345573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113699190612624565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113da9190612624565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b600780546001600160a01b0383166001600160a01b03199091161790555050565b6005546001600160a01b031633146114495760405162461bcd60e51b81526004016107f19061258d565b683635c9adc5dea0000061145c60025490565b61146691906125eb565b8110156114d05760405162461bcd60e51b815260206004820152603260248201527f4d617820547820616d6f756e742073686f756c6420626520302e3125206f66206044820152716d6f7265206f662074686520737570706c7960701b60648201526084016107f1565b6114e281670de0b6b3a764000061260d565b600c5550565b6005546001600160a01b031633146115125760405162461bcd60e51b81526004016107f19061258d565b6001600160a01b0381166115775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f1565b61089a81611e52565b6005546001600160a01b031633146115aa5760405162461bcd60e51b81526004016107f19061258d565b306001600160a01b038216036115e457610d516115cf6005546001600160a01b031690565b30600090815260208190526040902054610e80565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561162d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116519190612641565b9050816001600160a01b031663a9059cbb6116746005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156116c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e5919061265a565b50505050565b6001600160a01b03831661174d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f1565b6001600160a01b0382166117ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118715760405162461bcd60e51b8152602060048201526024808201527f484f55523a207472616e736665722066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f1565b6001600160a01b0382166118d25760405162461bcd60e51b815260206004820152602260248201527f484f55523a207472616e7366657220746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f1565b600e5465010000000000900460ff168061190457506001600160a01b0383166000908152600f602052604090205460ff165b6119505760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c65642079657400000000000000000060448201526064016107f1565b806000036119695761196483836000611f90565b505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061199e5761199e61268d565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1b9190612624565b81600181518110611a2e57611a2e61268d565b6001600160a01b039290921660209283029190910182015230600090815290819052604081205415611b0a576006546001600160a01b031663d06ca61f611a8a306001600160a01b031660009081526020819052604090205490565b846040518363ffffffff1660e01b8152600401611aa89291906126e7565b600060405180830381865afa158015611ac5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611aed9190810190612708565b600181518110611aff57611aff61268d565b602002602001015190505b30600090815260208190526040902054600a54600e549083101590640100000000900460ff168015611b465750600754600160a01b900460ff16155b8015611b6057506007546001600160a01b03888116911614155b8015611b695750805b15611b7a5781611b7881612163565b505b6001600160a01b0387166000908152600f602052604090205460019060ff1680611bbc57506001600160a01b0387166000908152600f602052604090205460ff165b15611bc5575060005b8015611e3d576001600160a01b03871660009081526011602052604081205460ff1615611bff5750600e5462010000900461ffff16611c29565b6001600160a01b03891660009081526011602052604090205460ff1615611c295750600e5461ffff165b6001600160a01b03891660009081526010602052604090205460ff16158015611c6b57506001600160a01b03881660009081526010602052604090205460ff16155b15611e0a576001600160a01b03881660009081526011602052604090205460ff1615611ce857600c54871115611ce35760405162461bcd60e51b815260206004820152601960248201527f53656c6c2065786365656473204d6178205478206c696d69740000000000000060448201526064016107f1565b611d5b565b6001600160a01b03891660009081526011602052604090205460ff1615611d5b57600c54871115611d5b5760405162461bcd60e51b815260206004820152601860248201527f4275792065786365656473204d6178205478206c696d6974000000000000000060448201526064016107f1565b6001600160a01b03881660009081526011602052604090205460ff16611e0a57600d5487611d9e8a6001600160a01b031660009081526020819052604090205490565b611da891906125d8565b1115611e0a5760405162461bcd60e51b815260206004820152602b60248201527f416e74695768616c653a2042616c616e63652065786365656473206d6178205760448201526a185b1b195d081b1a5b5a5d60aa1b60648201526084016107f1565b6000611e216064611e1b8a8561222f565b90612242565b9050611e2d888261224e565b9750611e3a8a3083611f90565b50505b611e48888888611f90565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503611f3c576040805162461bcd60e51b81526020600482015260248101919091527f4341455341523a204175746f6d61746564206d61726b6574206d616b6572207060448201527f61697220697320616c72656164792073657420746f20746861742076616c756560648201526084016107f1565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ff45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107f1565b6001600160a01b0382166120565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107f1565b6001600160a01b038316600090815260208190526040902054818110156120ce5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f1565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121059084906125d8565b9091555050811561215e57826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161215591815260200190565b60405180910390a35b6116e5565b6007805460ff60a01b1916600160a01b17905561217f8161225a565b600e54604051600091600160301b90046001600160a01b03169047908381818185875af1925050503d80600081146121d3576040519150601f19603f3d011682016040523d82523d6000602084013e6121d8565b606091505b505090508061221e5760405162461bcd60e51b81526020600482015260126024820152711d1c985b9cd858dd1a5bdb8819985a5b195960721b60448201526064016107f1565b50506007805460ff60a01b19169055565b600061223b828461260d565b9392505050565b600061223b82846125eb565b600061223b82846127c6565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061228f5761228f61268d565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156122e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061230c9190612624565b8160018151811061231f5761231f61268d565b6001600160a01b03928316602091820292909201015260065461234591309116846116eb565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061237e9085906000908690309042906004016127d9565b600060405180830381600087803b15801561239857600080fd5b505af11580156123ac573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156123e1578581018301518582016040015282016123c5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461089a57600080fd5b6000806040838503121561242a57600080fd5b823561243581612402565b946020939093013593505050565b60008060006060848603121561245857600080fd5b833561246381612402565b9250602084013561247381612402565b929592945050506040919091013590565b60006020828403121561249657600080fd5b813561ffff8116811461223b57600080fd5b6000602082840312156124ba57600080fd5b813561223b81612402565b6000602082840312156124d757600080fd5b5035919050565b801515811461089a57600080fd5b600080604083850312156124ff57600080fd5b823561250a81612402565b9150602083013561251a816124de565b809150509250929050565b6000806040838503121561253857600080fd5b823561254381612402565b9150602083013561251a81612402565b600181811c9082168061256757607f821691505b60208210810361258757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c1576107c16125c2565b60008261260857634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176107c1576107c16125c2565b60006020828403121561263657600080fd5b815161223b81612402565b60006020828403121561265357600080fd5b5051919050565b60006020828403121561266c57600080fd5b815161223b816124de565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156126dc5781516001600160a01b0316875295820195908201906001016126b7565b509495945050505050565b82815260406020820152600061270060408301846126a3565b949350505050565b6000602080838503121561271b57600080fd5b825167ffffffffffffffff8082111561273357600080fd5b818501915085601f83011261274757600080fd5b81518181111561275957612759612677565b8060051b604051601f19603f8301168101818110858211171561277e5761277e612677565b60405291825284820192508381018501918883111561279c57600080fd5b938501935b828510156127ba578451845293850193928501926127a1565b98975050505050505050565b818103818111156107c1576107c16125c2565b85815284602082015260a0604082015260006127f860a08301866126a3565b6001600160a01b039490941660608301525060800152939250505056fea264697066735822122035d15a5333f53fff7589562a0f74406ef9ac797e6b2af6b0dfe2efb25e80d3c464736f6c63430008110033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c8063715018a611610123578063a9059cbb116100ab578063c851cc321161006f578063c851cc3214610658578063dd62ed3e14610678578063ec28438a146106be578063f2fde38b146106de578063f9d0831a146106fe57600080fd5b8063a9059cbb146105b2578063aa4bde28146105d2578063ad73fc3e146105e8578063b62496f514610608578063c02466681461063857600080fd5b80638da5cb5b116100f25780638da5cb5b1461051f57806395d89b411461053d5780639a7a23d6146105525780639d0014b114610572578063a457c2d71461059257600080fd5b8063715018a6146104bf5780637537a47f146104d45780638a8c523c146104f45780638c0b5e221461050957600080fd5b806339509351116101a65780634d474d42116101755780634d474d42146103ee5780634fbee1931461040e5780635d0044ca146104475780636ddd17131461046757806370a082311461048957600080fd5b8063395093511461037357806343c348a51461039357806347062402146103b357806349bd5a5e146103ce57600080fd5b80631694505e116101ed5780631694505e146102bc57806318160ddd146102f457806323b872dd146103095780632b14ca5614610329578063313ce5671461035757600080fd5b80630445b6671461022a57806306fdde0314610253578063095ea7b31461027557806312e322b3146102a557600080fd5b3661022557005b600080fd5b34801561023657600080fd5b50610240600a5481565b6040519081526020015b60405180910390f35b34801561025f57600080fd5b5061026861071e565b60405161024a91906123b4565b34801561028157600080fd5b50610295610290366004612417565b6107b0565b604051901515815260200161024a565b3480156102b157600080fd5b506102ba6107c7565b005b3480156102c857600080fd5b506006546102dc906001600160a01b031681565b6040516001600160a01b03909116815260200161024a565b34801561030057600080fd5b50600254610240565b34801561031557600080fd5b50610295610324366004612443565b61089d565b34801561033557600080fd5b506009546103449061ffff1681565b60405161ffff909116815260200161024a565b34801561036357600080fd5b506040516012815260200161024a565b34801561037f57600080fd5b5061029561038e366004612417565b610947565b34801561039f57600080fd5b506102ba6103ae366004612484565b610983565b3480156103bf57600080fd5b506008546103449061ffff1681565b3480156103da57600080fd5b506007546102dc906001600160a01b031681565b3480156103fa57600080fd5b506102ba6104093660046124a8565b610a1d565b34801561041a57600080fd5b506102956104293660046124a8565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561045357600080fd5b506102ba6104623660046124c5565b610adf565b34801561047357600080fd5b50600e5461029590640100000000900460ff1681565b34801561049557600080fd5b506102406104a43660046124a8565b6001600160a01b031660009081526020819052604090205490565b3480156104cb57600080fd5b506102ba610baa565b3480156104e057600080fd5b506102ba6104ef3660046124ec565b610be0565b34801561050057600080fd5b506102ba610c35565b34801561051557600080fd5b50610240600c5481565b34801561052b57600080fd5b506005546001600160a01b03166102dc565b34801561054957600080fd5b50610268610c78565b34801561055e57600080fd5b506102ba61056d3660046124ec565b610c87565b34801561057e57600080fd5b506102ba61058d3660046124c5565b610d55565b34801561059e57600080fd5b506102956105ad366004612417565b610de7565b3480156105be57600080fd5b506102956105cd366004612417565b610e80565b3480156105de57600080fd5b50610240600d5481565b3480156105f457600080fd5b506102ba610603366004612484565b610e8d565b34801561061457600080fd5b506102956106233660046124a8565b60116020526000908152604090205460ff1681565b34801561064457600080fd5b506102ba6106533660046124ec565b610f39565b34801561066457600080fd5b506102ba6106733660046124a8565b61104b565b34801561068457600080fd5b50610240610693366004612525565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ca57600080fd5b506102ba6106d93660046124c5565b61141f565b3480156106ea57600080fd5b506102ba6106f93660046124a8565b6114e8565b34801561070a57600080fd5b506102ba6107193660046124a8565b611580565b60606003805461072d90612553565b80601f016020809104026020016040519081016040528092919081815260200182805461075990612553565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bd3384846116eb565b5060015b92915050565b6005546001600160a01b031633146107fa5760405162461bcd60e51b81526004016107f19061258d565b60405180910390fd5b600e54604051600091600160301b90046001600160a01b03169047908381818185875af1925050503d806000811461084e576040519150601f19603f3d011682016040523d82523d6000602084013e610853565b606091505b505090508061089a5760405162461bcd60e51b8152602060048201526013602482015272195d1a081d1c985b9cd9995c8819985a5b1959606a1b60448201526064016107f1565b50565b60006108aa84848461180f565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107f1565b61093c85338584036116eb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107bd91859061097e9086906125d8565b6116eb565b6005546001600160a01b031633146109ad5760405162461bcd60e51b81526004016107f19061258d565b6008805461ffff831661ffff199182168117909255600e805490911682179055600a101561089a5760405162461bcd60e51b815260206004820152601a60248201527f4d6158206275792066656573206c696d6974202069732031302500000000000060448201526064016107f1565b6005546001600160a01b03163314610a475760405162461bcd60e51b81526004016107f19061258d565b6001600160a01b038116610ab05760405162461bcd60e51b815260206004820152602a60248201527f6d61726b6574696e672077616c6c65742063616e206e6f742062652061207a65604482015269726f206164647265737360b01b60648201526084016107f1565b600e80546001600160a01b03909216600160301b026601000000000000600160d01b0319909216919091179055565b6005546001600160a01b03163314610b095760405162461bcd60e51b81526004016107f19061258d565b68056bc75e2d63100000610b1c60025490565b610b2691906125eb565b811015610b925760405162461bcd60e51b815260206004820152603460248201527f4d61782057616c6c657420616d6f756e742073686f756c64206265203125206f60448201527372206d6f7265206f662074686520737570706c7960601b60648201526084016107f1565b610ba481670de0b6b3a764000061260d565b600d5550565b6005546001600160a01b03163314610bd45760405162461bcd60e51b81526004016107f19061258d565b610bde6000611e52565b565b6005546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016107f19061258d565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c5f5760405162461bcd60e51b81526004016107f19061258d565b600e805465ff0000000000191665010000000000179055565b60606004805461072d90612553565b6005546001600160a01b03163314610cb15760405162461bcd60e51b81526004016107f19061258d565b6007546001600160a01b0390811690831603610d475760405162461bcd60e51b815260206004820152604960248201527f4341455341523a2054686520756e697377617020706169722063616e6e6f742060448201527f62652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d606482015268616b6572506169727360b81b608482015260a4016107f1565b610d518282611ea4565b5050565b6005546001600160a01b03163314610d7f5760405162461bcd60e51b81526004016107f19061258d565b633b9aca008111610de25760405162461bcd60e51b815260206004820152602760248201527f7468726573686f6c642073686f756c642062652067726561746f72207468616e6044820152662031206777656960c81b60648201526084016107f1565b600a55565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e695760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f1565b610e7633858584036116eb565b5060019392505050565b60006107bd33848461180f565b6005546001600160a01b03163314610eb75760405162461bcd60e51b81526004016107f19061258d565b6009805461ffff191661ffff838116918217909255600e805463ffff00001916620100009283021790819055600f919004909116111561089a5760405162461bcd60e51b815260206004820152601a60248201527f4d6158206275792066656573206c696d6974202069732031352500000000000060448201526064016107f1565b6005546001600160a01b03163314610f635760405162461bcd60e51b81526004016107f19061258d565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610fec5760405162461bcd60e51b815260206004820152603060248201527f4341455341523a204163636f756e7420697320616c726561647920746865207660448201526f185b1d59481bd988195e18db1d59195960821b60648201526084016107f1565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110755760405162461bcd60e51b81526004016107f19061258d565b6006546001600160a01b03908116908216036110e75760405162461bcd60e51b815260206004820152602b60248201527f4341455341523a2054686520726f7574657220616c726561647920686173207460448201526a686174206164647265737360a81b60648201526084016107f1565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015611143573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111679190612624565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ed9190612624565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c9190612624565b90506001600160a01b0381166113fe57600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e39190612624565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611345573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113699190612624565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113da9190612624565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b600780546001600160a01b0383166001600160a01b03199091161790555050565b6005546001600160a01b031633146114495760405162461bcd60e51b81526004016107f19061258d565b683635c9adc5dea0000061145c60025490565b61146691906125eb565b8110156114d05760405162461bcd60e51b815260206004820152603260248201527f4d617820547820616d6f756e742073686f756c6420626520302e3125206f66206044820152716d6f7265206f662074686520737570706c7960701b60648201526084016107f1565b6114e281670de0b6b3a764000061260d565b600c5550565b6005546001600160a01b031633146115125760405162461bcd60e51b81526004016107f19061258d565b6001600160a01b0381166115775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f1565b61089a81611e52565b6005546001600160a01b031633146115aa5760405162461bcd60e51b81526004016107f19061258d565b306001600160a01b038216036115e457610d516115cf6005546001600160a01b031690565b30600090815260208190526040902054610e80565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561162d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116519190612641565b9050816001600160a01b031663a9059cbb6116746005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156116c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e5919061265a565b50505050565b6001600160a01b03831661174d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f1565b6001600160a01b0382166117ae5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118715760405162461bcd60e51b8152602060048201526024808201527f484f55523a207472616e736665722066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f1565b6001600160a01b0382166118d25760405162461bcd60e51b815260206004820152602260248201527f484f55523a207472616e7366657220746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f1565b600e5465010000000000900460ff168061190457506001600160a01b0383166000908152600f602052604090205460ff165b6119505760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c65642079657400000000000000000060448201526064016107f1565b806000036119695761196483836000611f90565b505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061199e5761199e61268d565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1b9190612624565b81600181518110611a2e57611a2e61268d565b6001600160a01b039290921660209283029190910182015230600090815290819052604081205415611b0a576006546001600160a01b031663d06ca61f611a8a306001600160a01b031660009081526020819052604090205490565b846040518363ffffffff1660e01b8152600401611aa89291906126e7565b600060405180830381865afa158015611ac5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611aed9190810190612708565b600181518110611aff57611aff61268d565b602002602001015190505b30600090815260208190526040902054600a54600e549083101590640100000000900460ff168015611b465750600754600160a01b900460ff16155b8015611b6057506007546001600160a01b03888116911614155b8015611b695750805b15611b7a5781611b7881612163565b505b6001600160a01b0387166000908152600f602052604090205460019060ff1680611bbc57506001600160a01b0387166000908152600f602052604090205460ff165b15611bc5575060005b8015611e3d576001600160a01b03871660009081526011602052604081205460ff1615611bff5750600e5462010000900461ffff16611c29565b6001600160a01b03891660009081526011602052604090205460ff1615611c295750600e5461ffff165b6001600160a01b03891660009081526010602052604090205460ff16158015611c6b57506001600160a01b03881660009081526010602052604090205460ff16155b15611e0a576001600160a01b03881660009081526011602052604090205460ff1615611ce857600c54871115611ce35760405162461bcd60e51b815260206004820152601960248201527f53656c6c2065786365656473204d6178205478206c696d69740000000000000060448201526064016107f1565b611d5b565b6001600160a01b03891660009081526011602052604090205460ff1615611d5b57600c54871115611d5b5760405162461bcd60e51b815260206004820152601860248201527f4275792065786365656473204d6178205478206c696d6974000000000000000060448201526064016107f1565b6001600160a01b03881660009081526011602052604090205460ff16611e0a57600d5487611d9e8a6001600160a01b031660009081526020819052604090205490565b611da891906125d8565b1115611e0a5760405162461bcd60e51b815260206004820152602b60248201527f416e74695768616c653a2042616c616e63652065786365656473206d6178205760448201526a185b1b195d081b1a5b5a5d60aa1b60648201526084016107f1565b6000611e216064611e1b8a8561222f565b90612242565b9050611e2d888261224e565b9750611e3a8a3083611f90565b50505b611e48888888611f90565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503611f3c576040805162461bcd60e51b81526020600482015260248101919091527f4341455341523a204175746f6d61746564206d61726b6574206d616b6572207060448201527f61697220697320616c72656164792073657420746f20746861742076616c756560648201526084016107f1565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ff45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107f1565b6001600160a01b0382166120565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107f1565b6001600160a01b038316600090815260208190526040902054818110156120ce5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f1565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906121059084906125d8565b9091555050811561215e57826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161215591815260200190565b60405180910390a35b6116e5565b6007805460ff60a01b1916600160a01b17905561217f8161225a565b600e54604051600091600160301b90046001600160a01b03169047908381818185875af1925050503d80600081146121d3576040519150601f19603f3d011682016040523d82523d6000602084013e6121d8565b606091505b505090508061221e5760405162461bcd60e51b81526020600482015260126024820152711d1c985b9cd858dd1a5bdb8819985a5b195960721b60448201526064016107f1565b50506007805460ff60a01b19169055565b600061223b828461260d565b9392505050565b600061223b82846125eb565b600061223b82846127c6565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061228f5761228f61268d565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156122e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061230c9190612624565b8160018151811061231f5761231f61268d565b6001600160a01b03928316602091820292909201015260065461234591309116846116eb565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061237e9085906000908690309042906004016127d9565b600060405180830381600087803b15801561239857600080fd5b505af11580156123ac573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156123e1578581018301518582016040015282016123c5565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461089a57600080fd5b6000806040838503121561242a57600080fd5b823561243581612402565b946020939093013593505050565b60008060006060848603121561245857600080fd5b833561246381612402565b9250602084013561247381612402565b929592945050506040919091013590565b60006020828403121561249657600080fd5b813561ffff8116811461223b57600080fd5b6000602082840312156124ba57600080fd5b813561223b81612402565b6000602082840312156124d757600080fd5b5035919050565b801515811461089a57600080fd5b600080604083850312156124ff57600080fd5b823561250a81612402565b9150602083013561251a816124de565b809150509250929050565b6000806040838503121561253857600080fd5b823561254381612402565b9150602083013561251a81612402565b600181811c9082168061256757607f821691505b60208210810361258757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c1576107c16125c2565b60008261260857634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176107c1576107c16125c2565b60006020828403121561263657600080fd5b815161223b81612402565b60006020828403121561265357600080fd5b5051919050565b60006020828403121561266c57600080fd5b815161223b816124de565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b838110156126dc5781516001600160a01b0316875295820195908201906001016126b7565b509495945050505050565b82815260406020820152600061270060408301846126a3565b949350505050565b6000602080838503121561271b57600080fd5b825167ffffffffffffffff8082111561273357600080fd5b818501915085601f83011261274757600080fd5b81518181111561275957612759612677565b8060051b604051601f19603f8301168101818110858211171561277e5761277e612677565b60405291825284820192508381018501918883111561279c57600080fd5b938501935b828510156127ba578451845293850193928501926127a1565b98975050505050505050565b818103818111156107c1576107c16125c2565b85815284602082015260a0604082015260006127f860a08301866126a3565b6001600160a01b039490941660608301525060800152939250505056fea264697066735822122035d15a5333f53fff7589562a0f74406ef9ac797e6b2af6b0dfe2efb25e80d3c464736f6c63430008110033

Deployed Bytecode Sourcemap

34809:10871:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35191:44;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;35191:44:0;;;;;;;;24754:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26921:169::-;;;;;;;;;;-1:-1:-1;26921:169:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;26921:169:0;1205:187:1;39209:182:0;;;;;;;;;;;;;:::i;:::-;;34885:41;;;;;;;;;;-1:-1:-1;34885:41:0;;;;-1:-1:-1;;;;;34885:41:0;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;34885:41:0;1397:229:1;25874:108:0;;;;;;;;;;-1:-1:-1;25962:12:0;;25874:108;;27572:492;;;;;;;;;;-1:-1:-1;27572:492:0;;;;;:::i;:::-;;:::i;35152:22::-;;;;;;;;;;-1:-1:-1;35152:22:0;;;;;;;;;;;2266:6:1;2254:19;;;2236:38;;2224:2;2209:18;35152:22:0;2092:188:1;25716:93:0;;;;;;;;;;-1:-1:-1;25716:93:0;;25799:2;2427:36:1;;2415:2;2400:18;25716:93:0;2285:184:1;28473:215:0;;;;;;;;;;-1:-1:-1;28473:215:0;;;;;:::i;:::-;;:::i;40387:238::-;;;;;;;;;;-1:-1:-1;40387:238:0;;;;;:::i;:::-;;:::i;35125:20::-;;;;;;;;;;-1:-1:-1;35125:20:0;;;;;;;;34933:29;;;;;;;;;;-1:-1:-1;34933:29:0;;;;-1:-1:-1;;;;;34933:29:0;;;41082:201;;;;;;;;;;-1:-1:-1;41082:201:0;;;;;:::i;:::-;;:::i;40903:126::-;;;;;;;;;;-1:-1:-1;40903:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40993:28:0;40969:4;40993:28;;;:19;:28;;;;;;;;;40903:126;41378:213;;;;;;;;;;-1:-1:-1;41378:213:0;;;;;:::i;:::-;;:::i;35641:23::-;;;;;;;;;;-1:-1:-1;35641:23:0;;;;;;;;;;;26045:127;;;;;;;;;;-1:-1:-1;26045:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;26146:18:0;26119:7;26146:18;;;;;;;;;;;;26045:127;18175:103;;;;;;;;;;;;;:::i;39432:136::-;;;;;;;;;;-1:-1:-1;39432:136:0;;;;;:::i;:::-;;:::i;39583:95::-;;;;;;;;;;;;;:::i;35394:50::-;;;;;;;;;;;;;;;;17524:87;;;;;;;;;;-1:-1:-1;17597:6:0;;-1:-1:-1;;;;;17597:6:0;17524:87;;24973:104;;;;;;;;;;;;;:::i;39686:320::-;;;;;;;;;;-1:-1:-1;39686:320:0;;;;;:::i;:::-;;:::i;41921:192::-;;;;;;;;;;-1:-1:-1;41921:192:0;;;;;:::i;:::-;;:::i;29191:413::-;;;;;;;;;;-1:-1:-1;29191:413:0;;;;;:::i;:::-;;:::i;26385:175::-;;;;;;;;;;-1:-1:-1;26385:175:0;;;;;:::i;:::-;;:::i;35473:52::-;;;;;;;;;;;;;;;;40638:233;;;;;;;;;;-1:-1:-1;40638:233:0;;;;;:::i;:::-;;:::i;36128:57::-;;;;;;;;;;-1:-1:-1;36128:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38454:295;;;;;;;;;;-1:-1:-1;38454:295:0;;;;;:::i;:::-;;:::i;37816:630::-;;;;;;;;;;-1:-1:-1;37816:630:0;;;;;:::i;:::-;;:::i;26623:151::-;;;;;;;;;;-1:-1:-1;26623:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;26739:18:0;;;26712:7;26739:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26623:151;41650:207;;;;;;;;;;-1:-1:-1;41650:207:0;;;;;:::i;:::-;;:::i;18433:201::-;;;;;;;;;;-1:-1:-1;18433:201:0;;;;;:::i;:::-;;:::i;38812:352::-;;;;;;;;;;-1:-1:-1;38812:352:0;;;;;:::i;:::-;;:::i;24754:100::-;24808:13;24841:5;24834:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24754:100;:::o;26921:169::-;27004:4;27021:39;16324:10;27044:7;27053:6;27021:8;:39::i;:::-;-1:-1:-1;27078:4:0;26921:169;;;;;:::o;39209:182::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;;;;;;;;;39281:15:::1;::::0;:54:::1;::::0;39267:9:::1;::::0;-1:-1:-1;;;39281:15:0;::::1;-1:-1:-1::0;;;;;39281:15:0::1;::::0;39309:21:::1;::::0;39267:9;39281:54;39267:9;39281:54;39309:21;39281:15;:54:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39266:69;;;39355:4;39346:37;;;::::0;-1:-1:-1;;;39346:37:0;;5457:2:1;39346:37:0::1;::::0;::::1;5439:21:1::0;5496:2;5476:18;;;5469:30;-1:-1:-1;;;5515:18:1;;;5508:49;5574:18;;39346:37:0::1;5255:343:1::0;39346:37:0::1;39255:136;39209:182::o:0;27572:492::-;27712:4;27729:36;27739:6;27747:9;27758:6;27729:9;:36::i;:::-;-1:-1:-1;;;;;27805:19:0;;27778:24;27805:19;;;:11;:19;;;;;;;;16324:10;27805:33;;;;;;;;27857:26;;;;27849:79;;;;-1:-1:-1;;;27849:79:0;;5805:2:1;27849:79:0;;;5787:21:1;5844:2;5824:18;;;5817:30;5883:34;5863:18;;;5856:62;-1:-1:-1;;;5934:18:1;;;5927:38;5982:19;;27849:79:0;5603:404:1;27849:79:0;27964:57;27973:6;16324:10;28014:6;27995:16;:25;27964:8;:57::i;:::-;-1:-1:-1;28052:4:0;;27572:492;-1:-1:-1;;;;27572:492:0:o;28473:215::-;16324:10;28561:4;28610:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28610:34:0;;;;;;;;;;28561:4;;28578:80;;28601:7;;28610:47;;28647:10;;28610:47;:::i;:::-;28578:8;:80::i;40387:238::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;40480:6:::1;:29:::0;;::::1;::::0;::::1;-1:-1:-1::0;;40480:29:0;;::::1;::::0;::::1;::::0;;;40529:11:::1;:21:::0;;;;::::1;::::0;::::1;::::0;;40585:2:::1;-1:-1:-1::0;40570:17:0::1;40562:55;;;::::0;-1:-1:-1;;;40562:55:0;;6476:2:1;40562:55:0::1;::::0;::::1;6458:21:1::0;6515:2;6495:18;;;6488:30;6554:28;6534:18;;;6527:56;6600:18;;40562:55:0::1;6274:350:1::0;41082:201:0;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41162:21:0;::::1;41153:77;;;::::0;-1:-1:-1;;;41153:77:0;;6831:2:1;41153:77:0::1;::::0;::::1;6813:21:1::0;6870:2;6850:18;;;6843:30;6909:34;6889:18;;;6882:62;-1:-1:-1;;;6960:18:1;;;6953:40;7010:19;;41153:77:0::1;6629:406:1::0;41153:77:0::1;41241:15;:34:::0;;-1:-1:-1;;;;;41241:34:0;;::::1;-1:-1:-1::0;;;41241:34:0::1;-1:-1:-1::0;;;;;;41241:34:0;;::::1;::::0;;;::::1;::::0;;41082:201::o;41378:213::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;41480:4:::1;41464:13;25962:12:::0;;;25874:108;41464:13:::1;:20;;;;:::i;:::-;41454:6;:30;;41446:95;;;::::0;-1:-1:-1;;;41446:95:0;;7464:2:1;41446:95:0::1;::::0;::::1;7446:21:1::0;7503:2;7483:18;;;7476:30;7542:34;7522:18;;;7515:62;-1:-1:-1;;;7593:18:1;;;7586:50;7653:19;;41446:95:0::1;7262:416:1::0;41446:95:0::1;41570:13;:6:::0;41579:4:::1;41570:13;:::i;:::-;41552:15;:31:::0;-1:-1:-1;41378:213:0:o;18175:103::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;18240:30:::1;18267:1;18240:18;:30::i;:::-;18175:103::o:0;39432:136::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39520:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;39520:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39432:136::o;39583:95::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;39638:16:::1;:23:::0;;-1:-1:-1;;39638:23:0::1;::::0;::::1;::::0;;39583:95::o;24973:104::-;25029:13;25062:7;25055:14;;;;;:::i;39686:320::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;39830:13:::1;::::0;-1:-1:-1;;;;;39830:13:0;;::::1;39822:21:::0;;::::1;::::0;39800:144:::1;;;::::0;-1:-1:-1;;;39800:144:0;;8058:2:1;39800:144:0::1;::::0;::::1;8040:21:1::0;8097:2;8077:18;;;8070:30;8136:34;8116:18;;;8109:62;8207:34;8187:18;;;8180:62;-1:-1:-1;;;8258:19:1;;;8251:40;8308:19;;39800:144:0::1;7856:477:1::0;39800:144:0::1;39957:41;39986:4;39992:5;39957:28;:41::i;:::-;39686:320:::0;;:::o;41921:192::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;42020:3:::1;42006:11;:17;41997:70;;;::::0;-1:-1:-1;;;41997:70:0;;8540:2:1;41997:70:0::1;::::0;::::1;8522:21:1::0;8579:2;8559:18;;;8552:30;8618:34;8598:18;;;8591:62;-1:-1:-1;;;8669:18:1;;;8662:37;8716:19;;41997:70:0::1;8338:403:1::0;41997:70:0::1;42077:13;:28:::0;41921:192::o;29191:413::-;16324:10;29284:4;29328:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29328:34:0;;;;;;;;;;29381:35;;;;29373:85;;;;-1:-1:-1;;;29373:85:0;;8948:2:1;29373:85:0;;;8930:21:1;8987:2;8967:18;;;8960:30;9026:34;9006:18;;;8999:62;-1:-1:-1;;;9077:18:1;;;9070:35;9122:19;;29373:85:0;8746:401:1;29373:85:0;29494:67;16324:10;29517:7;29545:15;29526:16;:34;29494:8;:67::i;:::-;-1:-1:-1;29592:4:0;;29191:413;-1:-1:-1;;;29191:413:0:o;26385:175::-;26471:4;26488:42;16324:10;26512:9;26523:6;26488:9;:42::i;40638:233::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;40732:7:::1;:30:::0;;-1:-1:-1;;40732:30:0::1;;::::0;;::::1;::::0;;::::1;::::0;;;40774:12:::1;:22:::0;;-1:-1:-1;;40774:22:0::1;::::0;;;::::1;;::::0;;;;40831:2:::1;40815:12:::0;;::::1;::::0;;::::1;:18;;40807:56;;;::::0;-1:-1:-1;;;40807:56:0;;9354:2:1;40807:56:0::1;::::0;::::1;9336:21:1::0;9393:2;9373:18;;;9366:30;9432:28;9412:18;;;9405:56;9478:18;;40807:56:0::1;9152:350:1::0;38454:295:0;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38547:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;38539:100:::1;;;::::0;-1:-1:-1;;;38539:100:0;;9709:2:1;38539:100:0::1;::::0;::::1;9691:21:1::0;9748:2;9728:18;;;9721:30;9787:34;9767:18;;;9760:62;-1:-1:-1;;;9838:18:1;;;9831:46;9894:19;;38539:100:0::1;9507:412:1::0;38539:100:0::1;-1:-1:-1::0;;;;;38650:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38650:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38707:34;;1345:41:1;;;38707:34:0::1;::::0;1318:18:1;38707:34:0::1;;;;;;;38454:295:::0;;:::o;37816:630::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;37914:15:::1;::::0;-1:-1:-1;;;;;37914:15:0;;::::1;37892:38:::0;;::::1;::::0;37884:94:::1;;;::::0;-1:-1:-1;;;37884:94:0;;10126:2:1;37884:94:0::1;::::0;::::1;10108:21:1::0;10165:2;10145:18;;;10138:30;10204:34;10184:18;;;10177:62;-1:-1:-1;;;10255:18:1;;;10248:41;10306:19;;37884:94:0::1;9924:407:1::0;37884:94:0::1;37993:15;:48:::0;;-1:-1:-1;;;;;;37993:48:0::1;-1:-1:-1::0;;;;;37993:48:0;::::1;::::0;;::::1;::::0;;;38103:25:::1;::::0;;-1:-1:-1;;;38103:25:0;;;;-1:-1:-1;;37993:48:0;38103:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;37993:48;38103:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38085:52:0::1;;38146:4;38166:15;;;;;;;;;-1:-1:-1::0;;;;;38166:15:0::1;-1:-1:-1::0;;;;;38166:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38085:104;::::0;-1:-1:-1;;;;;;38085:104:0::1;::::0;;;;;;-1:-1:-1;;;;;10822:15:1;;;38085:104:0::1;::::0;::::1;10804:34:1::0;10874:15;;10854:18;;;10847:43;10739:18;;38085:104:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38053:136:::0;-1:-1:-1;;;;;;38204:22:0;::::1;38200:239;;38288:15;;;;;;;;;-1:-1:-1::0;;;;;38288:15:0::1;-1:-1:-1::0;;;;;38288:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38270:55:0::1;;38334:4;38355:15;;;;;;;;;-1:-1:-1::0;;;;;38355:15:0::1;-1:-1:-1::0;;;;;38355:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38270:108;::::0;-1:-1:-1;;;;;;38270:108:0::1;::::0;;;;;;-1:-1:-1;;;;;10822:15:1;;;38270:108:0::1;::::0;::::1;10804:34:1::0;10874:15;;10854:18;;;10847:43;10739:18;;38270:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38241:13;:137:::0;;-1:-1:-1;;;;;;38241:137:0::1;-1:-1:-1::0;;;;;38241:137:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;39686:320:0:o;38200:239::-:1;38403:13;:24:::0;;-1:-1:-1;;;;;38403:24:0;::::1;-1:-1:-1::0;;;;;;38403:24:0;;::::1;;::::0;;37877:569:::1;37816:630:::0;:::o;41650:207::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;41752:4:::1;41736:13;25962:12:::0;;;25874:108;41736:13:::1;:20;;;;:::i;:::-;41726:6;:30;;41718:93;;;::::0;-1:-1:-1;;;41718:93:0;;11103:2:1;41718:93:0::1;::::0;::::1;11085:21:1::0;11142:2;11122:18;;;11115:30;11181:34;11161:18;;;11154:62;-1:-1:-1;;;11232:18:1;;;11225:48;11290:19;;41718:93:0::1;10901:414:1::0;41718:93:0::1;41836:13;:6:::0;41845:4:::1;41836:13;:::i;:::-;41822:11;:27:::0;-1:-1:-1;41650:207:0:o;18433:201::-;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18522:22:0;::::1;18514:73;;;::::0;-1:-1:-1;;;18514:73:0;;11522:2:1;18514:73:0::1;::::0;::::1;11504:21:1::0;11561:2;11541:18;;;11534:30;11600:34;11580:18;;;11573:62;-1:-1:-1;;;11651:18:1;;;11644:36;11697:19;;18514:73:0::1;11320:402:1::0;18514:73:0::1;18598:28;18617:8;18598:18;:28::i;38812:352::-:0;17597:6;;-1:-1:-1;;;;;17597:6:0;16324:10;17744:23;17736:68;;;;-1:-1:-1;;;17736:68:0;;;;;;;:::i;:::-;38906:4:::1;-1:-1:-1::0;;;;;38888:23:0;::::1;::::0;38884:273:::1;;38927:43;38936:7;17597:6:::0;;-1:-1:-1;;;;;17597:6:0;;17524:87;38936:7:::1;38963:4;26119:7:::0;26146:18;;;;;;;;;;;26385:175;:::i;38884:273::-:1;39062:35;::::0;-1:-1:-1;;;39062:35:0;;39091:4:::1;39062:35;::::0;::::1;1569:51:1::0;39026:6:0;;38999:17:::1;::::0;-1:-1:-1;;;;;39062:20:0;::::1;::::0;::::1;::::0;1542:18:1;;39062:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39044:53;;39108:10;-1:-1:-1::0;;;;;39108:19:0::1;;39128:7;17597:6:::0;;-1:-1:-1;;;;;17597:6:0;;17524:87;39128:7:::1;39108:37;::::0;-1:-1:-1;;;;;;39108:37:0::1;::::0;;;;;;-1:-1:-1;;;;;12108:32:1;;;39108:37:0::1;::::0;::::1;12090:51:1::0;12157:18;;;12150:34;;;12063:18;;39108:37:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38988:169;;38812:352:::0;:::o;32905:380::-;-1:-1:-1;;;;;33041:19:0;;33033:68;;;;-1:-1:-1;;;33033:68:0;;12647:2:1;33033:68:0;;;12629:21:1;12686:2;12666:18;;;12659:30;12725:34;12705:18;;;12698:62;-1:-1:-1;;;12776:18:1;;;12769:34;12820:19;;33033:68:0;12445:400:1;33033:68:0;-1:-1:-1;;;;;33120:21:0;;33112:68;;;;-1:-1:-1;;;33112:68:0;;13052:2:1;33112:68:0;;;13034:21:1;13091:2;13071:18;;;13064:30;13130:34;13110:18;;;13103:62;-1:-1:-1;;;13181:18:1;;;13174:32;13223:19;;33112:68:0;12850:398:1;33112:68:0;-1:-1:-1;;;;;33193:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33245:32;;160:25:1;;;33245:32:0;;133:18:1;33245:32:0;;;;;;;32905:380;;;:::o;42121:2694::-;-1:-1:-1;;;;;42253:18:0;;42245:67;;;;-1:-1:-1;;;42245:67:0;;13455:2:1;42245:67:0;;;13437:21:1;13494:2;13474:18;;;13467:30;13533:34;13513:18;;;13506:62;-1:-1:-1;;;13584:18:1;;;13577:34;13628:19;;42245:67:0;13253:400:1;42245:67:0;-1:-1:-1;;;;;42331:16:0;;42323:63;;;;-1:-1:-1;;;42323:63:0;;13860:2:1;42323:63:0;;;13842:21:1;13899:2;13879:18;;;13872:30;13938:34;13918:18;;;13911:62;-1:-1:-1;;;13989:18:1;;;13982:32;14031:19;;42323:63:0;13658:398:1;42323:63:0;42415:16;;;;;;;;:45;;-1:-1:-1;;;;;;42435:25:0;;;;;;:19;:25;;;;;;;;42415:45;42406:105;;;;-1:-1:-1;;;42406:105:0;;14263:2:1;42406:105:0;;;14245:21:1;14302:2;14282:18;;;14275:30;14341:25;14321:18;;;14314:53;14384:18;;42406:105:0;14061:347:1;42406:105:0;42528:6;42538:1;42528:11;42524:93;;42556:28;42572:4;42578:2;42582:1;42556:15;:28::i;:::-;42121:2694;;;:::o;42524:93::-;42657:16;;;42671:1;42657:16;;;;;;;;42629:25;;42657:16;;;;;;;;;;-1:-1:-1;42657:16:0;42629:44;;42706:4;42684:8;42693:1;42684:11;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42684:27:0;;;:11;;;;;;;;;;:27;;;;42736:15;;:22;;;-1:-1:-1;;;42736:22:0;;;;:15;;;;;:20;;:22;;;;;42684:11;;42736:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42722:8;42731:1;42722:11;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42722:36:0;;;;:11;;;;;;;;;;:36;42822:4;42771:16;26146:18;;;;;;;;;;;-1:-1:-1;42800:137:0;;42857:15;;-1:-1:-1;;;;;42857:15:0;:29;42887:24;42905:4;-1:-1:-1;;;;;26146:18:0;26119:7;26146:18;;;;;;;;;;;;26045:127;42887:24;42913:8;42857:65;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42857:65:0;;;;;;;;;;;;:::i;:::-;42923:1;42857:68;;;;;;;;:::i;:::-;;;;;;;42846:79;;42800:137;42996:4;42947:28;26146:18;;;;;;;;;;;43069:13;;43113:11;;43044:38;;;;;43113:11;;;;;:37;;;;-1:-1:-1;43142:8:0;;-1:-1:-1;;;43142:8:0;;;;43141:9;43113:37;:75;;;;-1:-1:-1;43175:13:0;;-1:-1:-1;;;;;43167:21:0;;;43175:13;;43167:21;;43113:75;:115;;;;;43205:23;43113:115;43095:278;;;43290:20;43325:34;43290:20;43325:22;:34::i;:::-;43240:133;43095:278;-1:-1:-1;;;;;43506:25:0;;43385:12;43506:25;;;:19;:25;;;;;;43400:4;;43506:25;;;:52;;-1:-1:-1;;;;;;43535:23:0;;;;;;:19;:23;;;;;;;;43506:52;43502:100;;;-1:-1:-1;43585:5:0;43502:100;43618:7;43614:1148;;;-1:-1:-1;;;;;43685:29:0;;43642:12;43685:29;;;:25;:29;;;;;;;;43681:220;;;-1:-1:-1;43742:12:0;;;;;;;43681:220;;;-1:-1:-1;;;;;43797:31:0;;;;;;:25;:31;;;;;;;;43793:108;;;-1:-1:-1;43856:11:0;;;;43793:108;-1:-1:-1;;;;;43922:26:0;;;;;;:20;:26;;;;;;;;43921:27;:56;;;;-1:-1:-1;;;;;;43953:24:0;;;;;;:20;:24;;;;;;;;43952:25;43921:56;43917:665;;;-1:-1:-1;;;;;44002:29:0;;;;;;:25;:29;;;;;;;;43998:300;;;44074:11;;44064:6;:21;;44056:59;;;;-1:-1:-1;;;44056:59:0;;16792:2:1;44056:59:0;;;16774:21:1;16831:2;16811:18;;;16804:30;16870:27;16850:18;;;16843:55;16915:18;;44056:59:0;16590:349:1;44056:59:0;43998:300;;;-1:-1:-1;;;;;44145:31:0;;;;;;:25;:31;;;;;;;;44141:157;;;44217:11;;44207:6;:21;;44199:58;;;;-1:-1:-1;;;44199:58:0;;17146:2:1;44199:58:0;;;17128:21:1;17185:2;17165:18;;;17158:30;17224:26;17204:18;;;17197:54;17268:18;;44199:58:0;16944:348:1;44199:58:0;-1:-1:-1;;;;;44323:29:0;;;;;;:25;:29;;;;;;;;44318:249;;44437:15;;44427:6;44411:13;44421:2;-1:-1:-1;;;;;26146:18:0;26119:7;26146:18;;;;;;;;;;;;26045:127;44411:13;:22;;;;:::i;:::-;:41;;44377:170;;;;-1:-1:-1;;;44377:170:0;;17499:2:1;44377:170:0;;;17481:21:1;17538:2;17518:18;;;17511:30;17577:34;17557:18;;;17550:62;-1:-1:-1;;;17628:18:1;;;17621:41;17679:19;;44377:170:0;17297:407:1;44377:170:0;44598:17;44618:25;44639:3;44618:16;:6;44629:4;44618:10;:16::i;:::-;:20;;:25::i;:::-;44598:45;-1:-1:-1;44667:21:0;:6;44598:45;44667:10;:21::i;:::-;44658:30;;44703:47;44719:4;44733;44740:9;44703:15;:47::i;:::-;43627:1135;;43614:1148;44774:33;44790:4;44796:2;44800:6;44774:15;:33::i;:::-;42234:2581;;;;;42121:2694;;;:::o;18794:191::-;18887:6;;;-1:-1:-1;;;;;18904:17:0;;;-1:-1:-1;;;;;;18904:17:0;;;;;;;18937:40;;18887:6;;;18904:17;18887:6;;18937:40;;18868:16;;18937:40;18857:128;18794:191;:::o;40014:353::-;-1:-1:-1;;;;;40119:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;40097:154;;;;;-1:-1:-1;;;40097:154:0;;17911:2:1;40097:154:0;;;17893:21:1;17930:18;;;17923:30;;;;17989:34;17969:18;;;17962:62;18060:34;18040:18;;;18033:62;18112:19;;40097:154:0;17709:428:1;40097:154:0;-1:-1:-1;;;;;40262:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40262:39:0;;;;;;;;;;40319:40;;40262:39;;:31;40319:40;;;40014:353;;:::o;30094:763::-;-1:-1:-1;;;;;30234:20:0;;30226:70;;;;-1:-1:-1;;;30226:70:0;;18344:2:1;30226:70:0;;;18326:21:1;18383:2;18363:18;;;18356:30;18422:34;18402:18;;;18395:62;-1:-1:-1;;;18473:18:1;;;18466:35;18518:19;;30226:70:0;18142:401:1;30226:70:0;-1:-1:-1;;;;;30315:23:0;;30307:71;;;;-1:-1:-1;;;30307:71:0;;18750:2:1;30307:71:0;;;18732:21:1;18789:2;18769:18;;;18762:30;18828:34;18808:18;;;18801:62;-1:-1:-1;;;18879:18:1;;;18872:33;18922:19;;30307:71:0;18548:399:1;30307:71:0;-1:-1:-1;;;;;30475:17:0;;30451:21;30475:17;;;;;;;;;;;30511:23;;;;30503:74;;;;-1:-1:-1;;;30503:74:0;;19154:2:1;30503:74:0;;;19136:21:1;19193:2;19173:18;;;19166:30;19232:34;19212:18;;;19205:62;-1:-1:-1;;;19283:18:1;;;19276:36;19329:19;;30503:74:0;18952:402:1;30503:74:0;-1:-1:-1;;;;;30613:17:0;;;:9;:17;;;;;;;;;;;30633:22;;;30613:42;;30677:20;;;;;;;;:30;;30649:6;;30613:9;30677:30;;30649:6;;30677:30;:::i;:::-;;;;-1:-1:-1;;30724:10:0;;30720:71;;30771:9;-1:-1:-1;;;;;30754:35:0;30763:6;-1:-1:-1;;;;;30754:35:0;;30782:6;30754:35;;;;160:25:1;;148:2;133:18;;14:177;30754:35:0;;;;;;;;30720:71;30803:46;42121:2694;44823:244;36514:8;:15;;-1:-1:-1;;;;36514:15:0;-1:-1:-1;;;36514:15:0;;;44903:24:::1;44920:6:::0;44903:16:::1;:24::i;:::-;44960:15;::::0;44952:63:::1;::::0;44939:7:::1;::::0;-1:-1:-1;;;44960:15:0;::::1;-1:-1:-1::0;;;;;44960:15:0::1;::::0;44989:21:::1;::::0;44939:7;44952:63;44939:7;44952:63;44989:21;44960:15;44952:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44938:77;;;45033:2;45025:32;;;::::0;-1:-1:-1;;;45025:32:0;;19561:2:1;45025:32:0::1;::::0;::::1;19543:21:1::0;19600:2;19580:18;;;19573:30;-1:-1:-1;;;19619:18:1;;;19612:48;19677:18;;45025:32:0::1;19359:342:1::0;45025:32:0::1;-1:-1:-1::0;;36552:8:0;:16;;-1:-1:-1;;;;36552:16:0;;;44823:244::o;12138:98::-;12196:7;12223:5;12227:1;12223;:5;:::i;:::-;12216:12;12138:98;-1:-1:-1;;;12138:98:0:o;12537:::-;12595:7;12622:5;12626:1;12622;:5;:::i;11781:98::-;11839:7;11866:5;11870:1;11866;:5;:::i;45080:589::-;45230:16;;;45244:1;45230:16;;;;;;;;45206:21;;45230:16;;;;;;;;;;-1:-1:-1;45230:16:0;45206:40;;45275:4;45257;45262:1;45257:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45257:23:0;;;:7;;;;;;;;;;:23;;;;45301:15;;:22;;;-1:-1:-1;;;45301:22:0;;;;:15;;;;;:20;;:22;;;;;45257:7;;45301:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45291:4;45296:1;45291:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45291:32:0;;;:7;;;;;;;;;:32;45368:15;;45336:62;;45353:4;;45368:15;45386:11;45336:8;:62::i;:::-;45437:15;;:224;;-1:-1:-1;;;45437:224:0;;-1:-1:-1;;;;;45437:15:0;;;;:66;;:224;;45518:11;;45437:15;;45588:4;;45615;;45635:15;;45437:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45135:534;45080:589;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2474:272::-;2532:6;2585:2;2573:9;2564:7;2560:23;2556:32;2553:52;;;2601:1;2598;2591:12;2553:52;2640:9;2627:23;2690:6;2683:5;2679:18;2672:5;2669:29;2659:57;;2712:1;2709;2702:12;2959:247;3018:6;3071:2;3059:9;3050:7;3046:23;3042:32;3039:52;;;3087:1;3084;3077:12;3039:52;3126:9;3113:23;3145:31;3170:5;3145:31;:::i;3211:180::-;3270:6;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;-1:-1:-1;3362:23:1;;3211:180;-1:-1:-1;3211:180:1:o;3396:118::-;3482:5;3475:13;3468:21;3461:5;3458:32;3448:60;;3504:1;3501;3494:12;3519:382;3584:6;3592;3645:2;3633:9;3624:7;3620:23;3616:32;3613:52;;;3661:1;3658;3651:12;3613:52;3700:9;3687:23;3719:31;3744:5;3719:31;:::i;:::-;3769:5;-1:-1:-1;3826:2:1;3811:18;;3798:32;3839:30;3798:32;3839:30;:::i;:::-;3888:7;3878:17;;;3519:382;;;;;:::o;3906:388::-;3974:6;3982;4035:2;4023:9;4014:7;4010:23;4006:32;4003:52;;;4051:1;4048;4041:12;4003:52;4090:9;4077:23;4109:31;4134:5;4109:31;:::i;:::-;4159:5;-1:-1:-1;4216:2:1;4201:18;;4188:32;4229:33;4188:32;4229:33;:::i;4299:380::-;4378:1;4374:12;;;;4421;;;4442:61;;4496:4;4488:6;4484:17;4474:27;;4442:61;4549:2;4541:6;4538:14;4518:18;4515:38;4512:161;;4595:10;4590:3;4586:20;4583:1;4576:31;4630:4;4627:1;4620:15;4658:4;4655:1;4648:15;4512:161;;4299:380;;;:::o;4684:356::-;4886:2;4868:21;;;4905:18;;;4898:30;4964:34;4959:2;4944:18;;4937:62;5031:2;5016:18;;4684:356::o;6012:127::-;6073:10;6068:3;6064:20;6061:1;6054:31;6104:4;6101:1;6094:15;6128:4;6125:1;6118:15;6144:125;6209:9;;;6230:10;;;6227:36;;;6243:18;;:::i;7040:217::-;7080:1;7106;7096:132;;7150:10;7145:3;7141:20;7138:1;7131:31;7185:4;7182:1;7175:15;7213:4;7210:1;7203:15;7096:132;-1:-1:-1;7242:9:1;;7040:217::o;7683:168::-;7756:9;;;7787;;7804:15;;;7798:22;;7784:37;7774:71;;7825:18;;:::i;10336:251::-;10406:6;10459:2;10447:9;10438:7;10434:23;10430:32;10427:52;;;10475:1;10472;10465:12;10427:52;10507:9;10501:16;10526:31;10551:5;10526:31;:::i;11727:184::-;11797:6;11850:2;11838:9;11829:7;11825:23;11821:32;11818:52;;;11866:1;11863;11856:12;11818:52;-1:-1:-1;11889:16:1;;11727:184;-1:-1:-1;11727:184:1:o;12195:245::-;12262:6;12315:2;12303:9;12294:7;12290:23;12286:32;12283:52;;;12331:1;12328;12321:12;12283:52;12363:9;12357:16;12382:28;12404:5;12382:28;:::i;14413:127::-;14474:10;14469:3;14465:20;14462:1;14455:31;14505:4;14502:1;14495:15;14529:4;14526:1;14519:15;14545:127;14606:10;14601:3;14597:20;14594:1;14587:31;14637:4;14634:1;14627:15;14661:4;14658:1;14651:15;14677:461;14730:3;14768:5;14762:12;14795:6;14790:3;14783:19;14821:4;14850:2;14845:3;14841:12;14834:19;;14887:2;14880:5;14876:14;14908:1;14918:195;14932:6;14929:1;14926:13;14918:195;;;14997:13;;-1:-1:-1;;;;;14993:39:1;14981:52;;15053:12;;;;15088:15;;;;15029:1;14947:9;14918:195;;;-1:-1:-1;15129:3:1;;14677:461;-1:-1:-1;;;;;14677:461:1:o;15143:332::-;15350:6;15339:9;15332:25;15393:2;15388;15377:9;15373:18;15366:30;15313:4;15413:56;15465:2;15454:9;15450:18;15442:6;15413:56;:::i;:::-;15405:64;15143:332;-1:-1:-1;;;;15143:332:1:o;15480:1105::-;15575:6;15606:2;15649;15637:9;15628:7;15624:23;15620:32;15617:52;;;15665:1;15662;15655:12;15617:52;15698:9;15692:16;15727:18;15768:2;15760:6;15757:14;15754:34;;;15784:1;15781;15774:12;15754:34;15822:6;15811:9;15807:22;15797:32;;15867:7;15860:4;15856:2;15852:13;15848:27;15838:55;;15889:1;15886;15879:12;15838:55;15918:2;15912:9;15940:2;15936;15933:10;15930:36;;;15946:18;;:::i;:::-;15992:2;15989:1;15985:10;16024:2;16018:9;16087:2;16083:7;16078:2;16074;16070:11;16066:25;16058:6;16054:38;16142:6;16130:10;16127:22;16122:2;16110:10;16107:18;16104:46;16101:72;;;16153:18;;:::i;:::-;16189:2;16182:22;16239:18;;;16273:15;;;;-1:-1:-1;16315:11:1;;;16311:20;;;16343:19;;;16340:39;;;16375:1;16372;16365:12;16340:39;16399:11;;;;16419:135;16435:6;16430:3;16427:15;16419:135;;;16501:10;;16489:23;;16452:12;;;;16532;;;;16419:135;;;16573:6;15480:1105;-1:-1:-1;;;;;;;;15480:1105:1:o;19706:128::-;19773:9;;;19794:11;;;19791:37;;;19808:18;;:::i;19839:582::-;20138:6;20127:9;20120:25;20181:6;20176:2;20165:9;20161:18;20154:34;20224:3;20219:2;20208:9;20204:18;20197:31;20101:4;20245:57;20297:3;20286:9;20282:19;20274:6;20245:57;:::i;:::-;-1:-1:-1;;;;;20338:32:1;;;;20333:2;20318:18;;20311:60;-1:-1:-1;20402:3:1;20387:19;20380:35;20237:65;19839:582;-1:-1:-1;;;19839:582:1:o

Swarm Source

ipfs://35d15a5333f53fff7589562a0f74406ef9ac797e6b2af6b0dfe2efb25e80d3c4
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.