ETH Price: $2,919.09 (+0.04%)
Gas: 3 Gwei

Token

MultiChainCapital (MCC)
 

Overview

Max Total Supply

1,000,000,000,000 MCC

Holders

10,683

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0 MCC

Value
$0.00
0x1793a9d2752a0e65ea66e1d5f536d59717d622a4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MultiChainCapital

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-19
*/

/**
Multi-Chain Capital: $MCC
-You buy on Ethereum, we farm on multiple chains and return the profits to $MCC holders.

Tokenomics:
10% of each buy goes to existing holders.
10% of each sell goes into multi-chain farming to add to the treasury and buy back MCC tokens.

Website:
https://multichaincapital.eth.link

Telegram:
https://t.me/MultiChainCapital

Twitter:
https://twitter.com/MChainCapital

Medium:
https://multichaincapital.medium.com
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;

    abstract contract Context {
        function _msgSender() internal view virtual returns (address payable) {
            return msg.sender;
        }

        function _msgData() internal view virtual returns (bytes memory) {
            this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
            return msg.data;
        }
    }

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

    library SafeMath {
        /**
        * @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) {
            uint256 c = a + b;
            require(c >= a, "SafeMath: addition overflow");

            return c;
        }

        /**
        * @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 sub(a, b, "SafeMath: subtraction overflow");
        }

        /**
        * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
        * overflow (when the result is negative).
        *
        * Counterpart to Solidity's `-` operator.
        *
        * Requirements:
        *
        * - Subtraction cannot overflow.
        */
        function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
            require(b <= a, errorMessage);
            uint256 c = a - b;

            return c;
        }

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

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

            return c;
        }

        /**
        * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
            return div(a, b, "SafeMath: division by zero");
        }

        /**
        * @dev Returns the integer division of two unsigned integers. Reverts 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) {
            require(b > 0, errorMessage);
            uint256 c = a / b;
            // assert(a == b * c + a % b); // There is no case in which this doesn't hold

            return c;
        }

        /**
        * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
        * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
        }

        /**
        * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
        * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
            require(b != 0, errorMessage);
            return a % b;
        }
    }

    library Address {
        /**
        * @dev Returns true if `account` is a contract.
        *
        * [IMPORTANT]
        * ====
        * It is unsafe to assume that an address for which this function returns
        * false is an externally-owned account (EOA) and not a contract.
        *
        * Among others, `isContract` will return false for the following
        * types of addresses:
        *
        *  - an externally-owned account
        *  - a contract in construction
        *  - an address where a contract will be created
        *  - an address where a contract lived, but was destroyed
        * ====
        */
        function isContract(address account) internal view returns (bool) {
            // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
            // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
            // for accounts without code, i.e. `keccak256('')`
            bytes32 codehash;
            bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
            // solhint-disable-next-line no-inline-assembly
            assembly { codehash := extcodehash(account) }
            return (codehash != accountHash && codehash != 0x0);
        }

        /**
        * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
        * `recipient`, forwarding all available gas and reverting on errors.
        *
        * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
        * of certain opcodes, possibly making contracts go over the 2300 gas limit
        * imposed by `transfer`, making them unable to receive funds via
        * `transfer`. {sendValue} removes this limitation.
        *
        * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
        *
        * IMPORTANT: because control is transferred to `recipient`, care must be
        * taken to not create reentrancy vulnerabilities. Consider using
        * {ReentrancyGuard} or the
        * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
        */
        function sendValue(address payable recipient, uint256 amount) internal {
            require(address(this).balance >= amount, "Address: insufficient balance");

            // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
            (bool success, ) = recipient.call{ value: amount }("");
            require(success, "Address: unable to send value, recipient may have reverted");
        }

        /**
        * @dev Performs a Solidity function call using a low level `call`. A
        * plain`call` is an unsafe replacement for a function call: use this
        * function instead.
        *
        * If `target` reverts with a revert reason, it is bubbled up by this
        * function (like regular Solidity function calls).
        *
        * Returns the raw returned data. To convert to the expected return value,
        * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
        *
        * Requirements:
        *
        * - `target` must be a contract.
        * - calling `target` with `data` must not revert.
        *
        * _Available since v3.1._
        */
        function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
        }

        /**
        * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
        * `errorMessage` as a fallback revert reason when `target` reverts.
        *
        * _Available since v3.1._
        */
        function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
            return _functionCallWithValue(target, data, 0, errorMessage);
        }

        /**
        * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
        * but also transferring `value` wei to `target`.
        *
        * Requirements:
        *
        * - the calling contract must have an ETH balance of at least `value`.
        * - the called Solidity function must be `payable`.
        *
        * _Available since v3.1._
        */
        function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
            return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
        }

        /**
        * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
        * with `errorMessage` as a fallback revert reason when `target` reverts.
        *
        * _Available since v3.1._
        */
        function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
            require(address(this).balance >= value, "Address: insufficient balance for call");
            return _functionCallWithValue(target, data, value, errorMessage);
        }

        function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
            require(isContract(target), "Address: call to non-contract");

            // solhint-disable-next-line avoid-low-level-calls
            (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
            if (success) {
                return returndata;
            } else {
                // Look for revert reason and bubble it up if present
                if (returndata.length > 0) {
                    // The easiest way to bubble the revert reason is using memory via assembly

                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        let returndata_size := mload(returndata)
                        revert(add(32, returndata), returndata_size)
                    }
                } else {
                    revert(errorMessage);
                }
            }
        }
    }

    contract Ownable is Context {
        address private _owner;
        address private _previousOwner;
        uint256 private _lockTime;

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

        /**
        * @dev Initializes the contract setting the deployer as the initial owner.
        */
        constructor () internal {
            address msgSender = _msgSender();
            _owner = msgSender;
            emit OwnershipTransferred(address(0), msgSender);
        }

        /**
        * @dev Returns the address of the current owner.
        */
        function owner() public view 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 {
            emit OwnershipTransferred(_owner, address(0));
            _owner = 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");
            emit OwnershipTransferred(_owner, newOwner);
            _owner = newOwner;
        }

        function geUnlockTime() public view returns (uint256) {
            return _lockTime;
        }

        //Locks the contract for owner for the amount of time provided
        function lock(uint256 time) public virtual onlyOwner {
            _previousOwner = _owner;
            _owner = address(0);
            _lockTime = now + time;
            emit OwnershipTransferred(_owner, address(0));
        }

        //Unlocks the contract for owner when _lockTime is exceeds
        function unlock() public virtual {
            require(_previousOwner == msg.sender, "You don't have permission to unlock");
            require(now > _lockTime , "Contract is locked until 7 days");
            emit OwnershipTransferred(_owner, _previousOwner);
            _owner = _previousOwner;
        }
    }

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

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

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

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

    // Contract implementation
    contract MultiChainCapital is Context, IERC20, Ownable {
        using SafeMath for uint256;
        using Address for address;

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

        mapping (address => bool) private _isExcludedFromFee;

        mapping (address => bool) private _isExcluded;
        address[] private _excluded;

        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 1000000000000 * 10**9;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;

        string private _name = 'MultiChainCapital';
        string private _symbol = 'MCC';
        uint8 private _decimals = 9;

        uint256 private _taxFee = 10;
        uint256 private _teamFee = 10;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousTeamFee = _teamFee;

        address payable public _MCCWalletAddress;
        address payable public _marketingWalletAddress;

        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 private _maxTxAmount = 100000000000000e9;
        // We will set a minimum amount of tokens to be swaped => 5M
        uint256 private _numOfTokensToExchangeForTeam = 5 * 10**3 * 10**9;

        event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        event SwapEnabledUpdated(bool enabled);

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

        constructor (address payable MCCWalletAddress, address payable marketingWalletAddress) public {
            _MCCWalletAddress = MCCWalletAddress;
            _marketingWalletAddress = marketingWalletAddress;
            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
            // Create a uniswap pair for this new token
            uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
                .createPair(address(this), _uniswapV2Router.WETH());

            // set the rest of the contract variables
            uniswapV2Router = _uniswapV2Router;

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;

            emit Transfer(address(0), _msgSender(), _tTotal);
        }

        function name() public view returns (string memory) {
            return _name;
        }

        function symbol() public view returns (string memory) {
            return _symbol;
        }

        function decimals() public view returns (uint8) {
            return _decimals;
        }

        function totalSupply() public view override returns (uint256) {
            return _tTotal;
        }

        function balanceOf(address account) public view override returns (uint256) {
            if (_isExcluded[account]) return _tOwned[account];
            return tokenFromReflection(_rOwned[account]);
        }

        function transfer(address recipient, uint256 amount) public override returns (bool) {
            _transfer(_msgSender(), recipient, amount);
            return true;
        }

        function allowance(address owner, address spender) public view override returns (uint256) {
            return _allowances[owner][spender];
        }

        function approve(address spender, uint256 amount) public override returns (bool) {
            _approve(_msgSender(), spender, amount);
            return true;
        }

        function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
            _transfer(sender, recipient, amount);
            _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
            return true;
        }

        function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
            return true;
        }

        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
            return true;
        }

        function isExcluded(address account) public view returns (bool) {
            return _isExcluded[account];
        }

        function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
            _isExcludedFromFee[account] = excluded;
        }

        function totalFees() public view returns (uint256) {
            return _tFeeTotal;
        }

        function deliver(uint256 tAmount) public {
            address sender = _msgSender();
            require(!_isExcluded[sender], "Excluded addresses cannot call this function");
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rTotal = _rTotal.sub(rAmount);
            _tFeeTotal = _tFeeTotal.add(tAmount);
        }

        function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
            require(tAmount <= _tTotal, "Amount must be less than supply");
            if (!deductTransferFee) {
                (uint256 rAmount,,,,,) = _getValues(tAmount);
                return rAmount;
            } else {
                (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
                return rTransferAmount;
            }
        }

        function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
            require(rAmount <= _rTotal, "Amount must be less than total reflections");
            uint256 currentRate =  _getRate();
            return rAmount.div(currentRate);
        }

        function excludeAccount(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
            require(!_isExcluded[account], "Account is already excluded");
            if(_rOwned[account] > 0) {
                _tOwned[account] = tokenFromReflection(_rOwned[account]);
            }
            _isExcluded[account] = true;
            _excluded.push(account);
        }

        function includeAccount(address account) external onlyOwner() {
            require(_isExcluded[account], "Account is already excluded");
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_excluded[i] == account) {
                    _excluded[i] = _excluded[_excluded.length - 1];
                    _tOwned[account] = 0;
                    _isExcluded[account] = false;
                    _excluded.pop();
                    break;
                }
            }
        }

        function removeAllFee() private {
            if(_taxFee == 0 && _teamFee == 0) return;

            _previousTaxFee = _taxFee;
            _previousTeamFee = _teamFee;

            _taxFee = 0;
            _teamFee = 0;
        }

        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _teamFee = _previousTeamFee;
        }

        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }

        function _approve(address owner, address spender, uint256 amount) private {
            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);
        }

        function _transfer(address sender, address recipient, uint256 amount) private {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");

            if(sender != owner() && recipient != owner())
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular team event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));

            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeam;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the team wallet
                swapTokensForEth(contractTokenBalance);

                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToTeam(address(this).balance);
                }
            }

            //indicates if fee should be deducted from transfer
            bool takeFee = true;

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

            //transfer amount, it will take tax and team fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

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

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

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

        function sendETHToTeam(uint256 amount) private {
            _MCCWalletAddress.transfer(amount.div(2));
            _marketingWalletAddress.transfer(amount.div(2));
        }

        // We are exposing these functions to be able to manual swap and send
        // in case the token is highly valued and 5M becomes too much
        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }

        function manualSend() external onlyOwner() {
            uint256 contractETHBalance = address(this).balance;
            sendETHToTeam(contractETHBalance);
        }

        function setSwapEnabled(bool enabled) external onlyOwner(){
            swapEnabled = enabled;
        }

        function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
            if(!takeFee)
                removeAllFee();

            if (_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferFromExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
                _transferToExcluded(sender, recipient, amount);
            } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
                _transferStandard(sender, recipient, amount);
            } else if (_isExcluded[sender] && _isExcluded[recipient]) {
                _transferBothExcluded(sender, recipient, amount);
            } else {
                _transferStandard(sender, recipient, amount);
            }

            if(!takeFee)
                restoreAllFee();
        }

        function _transferStandard(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _takeTeam(tTeam);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _takeTeam(uint256 tTeam) private {
            uint256 currentRate =  _getRate();
            uint256 rTeam = tTeam.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
        }

        function _reflectFee(uint256 rFee, uint256 tFee) private {
            _rTotal = _rTotal.sub(rFee);
            _tFeeTotal = _tFeeTotal.add(tFee);
        }

         //to recieve ETH from uniswapV2Router when swaping
        receive() external payable {}

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
            (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _taxFee, _teamFee);
            uint256 currentRate =  _getRate();
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
            return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
        }

        function _getTValues(uint256 tAmount, uint256 taxFee, uint256 teamFee) private pure returns (uint256, uint256, uint256) {
            uint256 tFee = tAmount.mul(taxFee).div(100);
            uint256 tTeam = tAmount.mul(teamFee).div(100);
            uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
            return (tTransferAmount, tFee, tTeam);
        }

        function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
            uint256 rAmount = tAmount.mul(currentRate);
            uint256 rFee = tFee.mul(currentRate);
            uint256 rTransferAmount = rAmount.sub(rFee);
            return (rAmount, rTransferAmount, rFee);
        }

        function _getRate() private view returns(uint256) {
            (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
            return rSupply.div(tSupply);
        }

        function _getCurrentSupply() private view returns(uint256, uint256) {
            uint256 rSupply = _rTotal;
            uint256 tSupply = _tTotal;
            for (uint256 i = 0; i < _excluded.length; i++) {
                if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
                rSupply = rSupply.sub(_rOwned[_excluded[i]]);
                tSupply = tSupply.sub(_tOwned[_excluded[i]]);
            }
            if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
            return (rSupply, tSupply);
        }

        function _getTaxFee() private view returns(uint256) {
            return _taxFee;
        }

        function _getMaxTxAmount() private view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }

        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25');
            _taxFee = taxFee;
        }

        function _setTeamFee(uint256 teamFee) external onlyOwner() {
            require(teamFee >= 1 && teamFee <= 25, 'teamFee should be in 1 - 25');
            _teamFee = teamFee;
        }

        function _setMCCWallet(address payable MCCWalletAddress) external onlyOwner() {
            _MCCWalletAddress = MCCWalletAddress;
        }

        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            require(maxTxAmount >= 100000000000000e9 , 'maxTxAmount should be greater than 100000000000000e9');
            _maxTxAmount = maxTxAmount;
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"MCCWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_MCCWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"MCCWalletAddress","type":"address"}],"name":"_setMCCWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

683635c9adc5dea000006009556818ce40f6d0219fffff19600a55610100604052601160c081905270135d5b1d1a50da185a5b90d85c1a5d185b607a1b60e09081526200005091600c91906200041d565b50604080518082019091526003808252624d434360e81b60209092019182526200007d91600d916200041d565b50600e805460ff19166009179055600a600f819055601081905560118190556012556014805461ffff60a01b1916600160a81b17905569152d02c7e14af680000060155565048c27395000601655348015620000d857600080fd5b50604051620030cc380380620030cc83398181016040526040811015620000fe57600080fd5b5080516020909101516000620001136200040a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601380546001600160a01b038085166001600160a01b0319928316179092556014805492841692909116919091179055600a54600360006200019e6200040a565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021557600080fd5b505afa1580156200022a573d6000803e3d6000fd5b505050506040513d60208110156200024157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200029257600080fd5b505afa158015620002a7573d6000803e3d6000fd5b505050506040513d6020811015620002be57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050506040513d60208110156200033d57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200036a6200040e565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003b46200040a565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3505050620004b9565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046057805160ff191683800117855562000490565b8280016001018555821562000490579182015b828111156200049057825182559160200191906001019062000473565b506200049e929150620004a2565b5090565b5b808211156200049e5760008155600101620004a3565b60805160601c60a05160601c612bd5620004f760003980610e515280611c1b52508061098c5280611f2d5280611fe5528061200c5250612bd56000f3fe6080604052600436106102345760003560e01c8063653b9b8a1161012e578063b6c52324116100ab578063f2cc0c181161006f578063f2cc0c181461080d578063f2fde38b14610840578063f429389014610873578063f815a84214610888578063f84354f11461089d5761023b565b8063b6c5232414610734578063cba0e99614610749578063dd4670641461077c578063dd62ed3e146107a6578063e01af92c146107e15761023b565b806395d89b41116100f257806395d89b411461065d578063a457c2d714610672578063a69df4b5146106ab578063a9059cbb146106c0578063af9549e0146106f95761023b565b8063653b9b8a146105d65780636ddd1713146105eb57806370a0823114610600578063715018a6146106335780638da5cb5b146106485761023b565b8063313ce567116101bc5780634549b039116101805780634549b0391461051d57806349bd5a5e1461054f57806351bc3c85146105645780635342acb4146105795780635880b873146105ac5761023b565b8063313ce5671461044757806332f7000b1461047257806339509351146104a55780633bd5d173146104de5780634144d9e4146105085761023b565b806318160ddd1161020357806318160ddd1461036f5780631bbae6e01461038457806323b872dd146103b057806328667162146103f35780632d8381191461041d5761023b565b806306fdde0314610240578063095ea7b3146102ca57806313114a9d146103175780631694505e1461033e5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108d0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610966565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061032c610984565b60408051918252519081900360200190f35b34801561034a57600080fd5b5061035361098a565b604080516001600160a01b039092168252519081900360200190f35b34801561037b57600080fd5b5061032c6109ae565b34801561039057600080fd5b506103ae600480360360208110156103a757600080fd5b50356109b4565b005b3480156103bc57600080fd5b50610303600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a5a565b3480156103ff57600080fd5b506103ae6004803603602081101561041657600080fd5b5035610ae1565b34801561042957600080fd5b5061032c6004803603602081101561044057600080fd5b5035610ba1565b34801561045357600080fd5b5061045c610c03565b6040805160ff9092168252519081900360200190f35b34801561047e57600080fd5b506103ae6004803603602081101561049557600080fd5b50356001600160a01b0316610c0c565b3480156104b157600080fd5b50610303600480360360408110156104c857600080fd5b506001600160a01b038135169060200135610c86565b3480156104ea57600080fd5b506103ae6004803603602081101561050157600080fd5b5035610cd4565b34801561051457600080fd5b50610353610dae565b34801561052957600080fd5b5061032c6004803603604081101561054057600080fd5b50803590602001351515610dbd565b34801561055b57600080fd5b50610353610e4f565b34801561057057600080fd5b506103ae610e73565b34801561058557600080fd5b506103036004803603602081101561059c57600080fd5b50356001600160a01b0316610ee4565b3480156105b857600080fd5b506103ae600480360360208110156105cf57600080fd5b5035610f02565b3480156105e257600080fd5b50610353610fc2565b3480156105f757600080fd5b50610303610fd1565b34801561060c57600080fd5b5061032c6004803603602081101561062357600080fd5b50356001600160a01b0316610fe1565b34801561063f57600080fd5b506103ae611043565b34801561065457600080fd5b506103536110d3565b34801561066957600080fd5b506102556110e2565b34801561067e57600080fd5b506103036004803603604081101561069557600080fd5b506001600160a01b038135169060200135611143565b3480156106b757600080fd5b506103ae6111ab565b3480156106cc57600080fd5b50610303600480360360408110156106e357600080fd5b506001600160a01b038135169060200135611299565b34801561070557600080fd5b506103ae6004803603604081101561071c57600080fd5b506001600160a01b03813516906020013515156112ad565b34801561074057600080fd5b5061032c611330565b34801561075557600080fd5b506103036004803603602081101561076c57600080fd5b50356001600160a01b0316611336565b34801561078857600080fd5b506103ae6004803603602081101561079f57600080fd5b5035611354565b3480156107b257600080fd5b5061032c600480360360408110156107c957600080fd5b506001600160a01b03813581169160200135166113f2565b3480156107ed57600080fd5b506103ae6004803603602081101561080457600080fd5b5035151561141d565b34801561081957600080fd5b506103ae6004803603602081101561083057600080fd5b50356001600160a01b0316611493565b34801561084c57600080fd5b506103ae6004803603602081101561086357600080fd5b50356001600160a01b0316611675565b34801561087f57600080fd5b506103ae61175b565b34801561089457600080fd5b5061032c6117bd565b3480156108a957600080fd5b506103ae600480360360208110156108c057600080fd5b50356001600160a01b03166117c1565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095c5780601f106109315761010080835404028352916020019161095c565b820191906000526020600020905b81548152906001019060200180831161093f57829003601f168201915b5050505050905090565b600061097a610973611982565b8484611986565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6109bc611982565b6000546001600160a01b03908116911614610a0c576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b69152d02c7e14af6800000811015610a555760405162461bcd60e51b81526004018080602001828103825260348152602001806129b36034913960400191505060405180910390fd5b601555565b6000610a67848484611a72565b610ad784610a73611982565b610ad285604051806060016040528060288152602001612a30602891396001600160a01b038a16600090815260056020526040812090610ab1611982565b6001600160a01b031681526020810191909152604001600020549190611ccf565b611986565b5060019392505050565b610ae9611982565b6000546001600160a01b03908116911614610b39576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60018110158015610b4b575060198111155b610b9c576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2032350000000000604482015290519081900360640190fd5b601055565b6000600a54821115610be45760405162461bcd60e51b815260040180806020018281038252602a815260200180612941602a913960400191505060405180910390fd5b6000610bee611d66565b9050610bfa8382611d89565b9150505b919050565b600e5460ff1690565b610c14611982565b6000546001600160a01b03908116911614610c64576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600061097a610c93611982565b84610ad28560056000610ca4611982565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611dd2565b6000610cde611982565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d395760405162461bcd60e51b815260040180806020018281038252602c815260200180612b2c602c913960400191505060405180910390fd5b6000610d4483611e2c565b505050506001600160a01b038416600090815260036020526040902054919250610d7091905082611e88565b6001600160a01b038316600090815260036020526040902055600a54610d969082611e88565b600a55600b54610da69084611dd2565b600b55505050565b6014546001600160a01b031681565b6000600954831115610e16576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e35576000610e2684611e2c565b5093955061097e945050505050565b6000610e4084611e2c565b5092955061097e945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e7b611982565b6000546001600160a01b03908116911614610ecb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6000610ed630610fe1565b9050610ee181611eca565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f0a611982565b6000546001600160a01b03908116911614610f5a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60018110158015610f6c575060198111155b610fbd576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600f55565b6013546001600160a01b031681565b601454600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561102157506001600160a01b038116600090815260046020526040902054610bfe565b6001600160a01b03821660009081526003602052604090205461097e90610ba1565b61104b611982565b6000546001600160a01b0390811691161461109b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a78833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600d8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095c5780601f106109315761010080835404028352916020019161095c565b600061097a611150611982565b84610ad285604051806060016040528060258152602001612b7b602591396005600061117a611982565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ccf565b6001546001600160a01b031633146111f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612b586023913960400191505060405180910390fd5b600254421161124a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a7883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061097a6112a6611982565b8484611a72565b6112b5611982565b6000546001600160a01b03908116911614611305576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61135c611982565b6000546001600160a01b039081169116146113ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a78833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611425611982565b6000546001600160a01b03908116911614611475576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60148054911515600160a81b0260ff60a81b19909216919091179055565b61149b611982565b6000546001600160a01b039081169116146114eb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156115475760405162461bcd60e51b8152600401808060200182810382526022815260200180612b0a6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156115b5576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561160f576001600160a01b0381166000908152600360205260409020546115f590610ba1565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b61167d611982565b6000546001600160a01b039081169116146116cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b0381166117125760405162461bcd60e51b815260040180806020018281038252602681526020018061296b6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a7883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611763611982565b6000546001600160a01b039081169116146117b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b47610ee181612101565b4790565b6117c9611982565b6000546001600160a01b03908116911614611819576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611886576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561197e57816001600160a01b0316600882815481106118aa57fe5b6000918252602090912001546001600160a01b03161415611976576008805460001981019081106118d757fe5b600091825260209091200154600880546001600160a01b0390921691839081106118fd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061194f57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561197e565b600101611889565b5050565b3390565b6001600160a01b0383166119cb5760405162461bcd60e51b8152600401808060200182810382526024815260200180612ae66024913960400191505060405180910390fd5b6001600160a01b038216611a105760405162461bcd60e51b81526004018080602001828103825260228152602001806129916022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ab75760405162461bcd60e51b8152600401808060200182810382526025815260200180612ac16025913960400191505060405180910390fd5b6001600160a01b038216611afc5760405162461bcd60e51b815260040180806020018281038252602381526020018061291e6023913960400191505060405180910390fd5b60008111611b3b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612a986029913960400191505060405180910390fd5b611b436110d3565b6001600160a01b0316836001600160a01b031614158015611b7d5750611b676110d3565b6001600160a01b0316826001600160a01b031614155b15611bc357601554811115611bc35760405162461bcd60e51b81526004018080602001828103825260288152602001806129e76028913960400191505060405180910390fd5b6000611bce30610fe1565b90506015548110611bde57506015545b6016546014549082101590600160a01b900460ff16158015611c095750601454600160a81b900460ff165b8015611c125750805b8015611c5057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611c7057611c5e82611eca565b478015611c6e57611c6e47612101565b505b6001600160a01b03851660009081526006602052604090205460019060ff1680611cb257506001600160a01b03851660009081526006602052604090205460ff165b15611cbb575060005b611cc786868684612186565b505050505050565b60008184841115611d5e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d23578181015183820152602001611d0b565b50505050905090810190601f168015611d505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611d736122fa565b9092509050611d828282611d89565b9250505090565b6000611dcb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061245d565b9392505050565b600082820183811015611dcb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611e498a600f546010546124c2565b9250925092506000611e59611d66565b90506000806000611e6b8e8786612517565b919e509c509a509598509396509194505050505091939550919395565b6000611dcb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ccf565b6014805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683370190505090503081600081518110611f0b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611f8457600080fd5b505afa158015611f98573d6000803e3d6000fd5b505050506040513d6020811015611fae57600080fd5b5051815182906001908110611fbf57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061200a307f000000000000000000000000000000000000000000000000000000000000000084611986565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156120af578181015183820152602001612097565b505050509050019650505050505050600060405180830381600087803b1580156120d857600080fd5b505af11580156120ec573d6000803e3d6000fd5b50506014805460ff60a01b1916905550505050565b6013546001600160a01b03166108fc61211b836002611d89565b6040518115909202916000818181858888f19350505050158015612143573d6000803e3d6000fd5b506014546001600160a01b03166108fc61215e836002611d89565b6040518115909202916000818181858888f1935050505015801561197e573d6000803e3d6000fd5b8061219357612193612553565b6001600160a01b03841660009081526007602052604090205460ff1680156121d457506001600160a01b03831660009081526007602052604090205460ff16155b156121e9576121e4848484612585565b6122e7565b6001600160a01b03841660009081526007602052604090205460ff1615801561222a57506001600160a01b03831660009081526007602052604090205460ff165b1561223a576121e48484846126a9565b6001600160a01b03841660009081526007602052604090205460ff1615801561227c57506001600160a01b03831660009081526007602052604090205460ff16155b1561228c576121e4848484612752565b6001600160a01b03841660009081526007602052604090205460ff1680156122cc57506001600160a01b03831660009081526007602052604090205460ff165b156122dc576121e4848484612796565b6122e7848484612752565b806122f4576122f4612809565b50505050565b600a546009546000918291825b60085481101561242b5782600360006008848154811061232357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612388575081600460006008848154811061236157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561239f57600a5460095494509450505050612459565b6123df60036000600884815481106123b357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e88565b925061242160046000600884815481106123f557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e88565b9150600101612307565b50600954600a5461243b91611d89565b82101561245357600a54600954935093505050612459565b90925090505b9091565b600081836124ac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d23578181015183820152602001611d0b565b5060008385816124b857fe5b0495945050505050565b60008080806124dc60646124d68989612817565b90611d89565b905060006124ef60646124d68a89612817565b90506000612507826125018b86611e88565b90611e88565b9992985090965090945050505050565b60008080806125268786612817565b905060006125348787612817565b905060006125428383611e88565b929992985090965090945050505050565b600f541580156125635750601054155b1561256d57612583565b600f805460115560108054601255600091829055555b565b60008060008060008061259787611e2c565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125c99088611e88565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546125f89087611e88565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126279086611dd2565b6001600160a01b03891660009081526003602052604090205561264981612870565b61265384836128f9565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126bb87611e2c565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126ed9087611e88565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127239084611dd2565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126279086611dd2565b60008060008060008061276487611e2c565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506125f89087611e88565b6000806000806000806127a887611e2c565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127da9088611e88565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126ed9087611e88565b601154600f55601254601055565b6000826128265750600061097e565b8282028284828161283357fe5b0414611dcb5760405162461bcd60e51b8152600401808060200182810382526021815260200180612a0f6021913960400191505060405180910390fd5b600061287a611d66565b905060006128888383612817565b306000908152600360205260409020549091506128a59082611dd2565b3060009081526003602090815260408083209390935560079052205460ff16156128f457306000908152600460205260409020546128e39084611dd2565b306000908152600460205260409020555b505050565b600a546129069083611e88565b600a55600b546129169082611dd2565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e2031303030303030303030303030303065395472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dad924313c1a880a87da422755eb7963f791124709577df6a3e548ba8b4141b064736f6c634300060c0033000000000000000000000000fbf335f8224a102e22abe78d78cc52dc95e074fa00000000000000000000000043853a1999f1dc727f407e22283b16bc0fe7b49b

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063653b9b8a1161012e578063b6c52324116100ab578063f2cc0c181161006f578063f2cc0c181461080d578063f2fde38b14610840578063f429389014610873578063f815a84214610888578063f84354f11461089d5761023b565b8063b6c5232414610734578063cba0e99614610749578063dd4670641461077c578063dd62ed3e146107a6578063e01af92c146107e15761023b565b806395d89b41116100f257806395d89b411461065d578063a457c2d714610672578063a69df4b5146106ab578063a9059cbb146106c0578063af9549e0146106f95761023b565b8063653b9b8a146105d65780636ddd1713146105eb57806370a0823114610600578063715018a6146106335780638da5cb5b146106485761023b565b8063313ce567116101bc5780634549b039116101805780634549b0391461051d57806349bd5a5e1461054f57806351bc3c85146105645780635342acb4146105795780635880b873146105ac5761023b565b8063313ce5671461044757806332f7000b1461047257806339509351146104a55780633bd5d173146104de5780634144d9e4146105085761023b565b806318160ddd1161020357806318160ddd1461036f5780631bbae6e01461038457806323b872dd146103b057806328667162146103f35780632d8381191461041d5761023b565b806306fdde0314610240578063095ea7b3146102ca57806313114a9d146103175780631694505e1461033e5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108d0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610966565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061032c610984565b60408051918252519081900360200190f35b34801561034a57600080fd5b5061035361098a565b604080516001600160a01b039092168252519081900360200190f35b34801561037b57600080fd5b5061032c6109ae565b34801561039057600080fd5b506103ae600480360360208110156103a757600080fd5b50356109b4565b005b3480156103bc57600080fd5b50610303600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a5a565b3480156103ff57600080fd5b506103ae6004803603602081101561041657600080fd5b5035610ae1565b34801561042957600080fd5b5061032c6004803603602081101561044057600080fd5b5035610ba1565b34801561045357600080fd5b5061045c610c03565b6040805160ff9092168252519081900360200190f35b34801561047e57600080fd5b506103ae6004803603602081101561049557600080fd5b50356001600160a01b0316610c0c565b3480156104b157600080fd5b50610303600480360360408110156104c857600080fd5b506001600160a01b038135169060200135610c86565b3480156104ea57600080fd5b506103ae6004803603602081101561050157600080fd5b5035610cd4565b34801561051457600080fd5b50610353610dae565b34801561052957600080fd5b5061032c6004803603604081101561054057600080fd5b50803590602001351515610dbd565b34801561055b57600080fd5b50610353610e4f565b34801561057057600080fd5b506103ae610e73565b34801561058557600080fd5b506103036004803603602081101561059c57600080fd5b50356001600160a01b0316610ee4565b3480156105b857600080fd5b506103ae600480360360208110156105cf57600080fd5b5035610f02565b3480156105e257600080fd5b50610353610fc2565b3480156105f757600080fd5b50610303610fd1565b34801561060c57600080fd5b5061032c6004803603602081101561062357600080fd5b50356001600160a01b0316610fe1565b34801561063f57600080fd5b506103ae611043565b34801561065457600080fd5b506103536110d3565b34801561066957600080fd5b506102556110e2565b34801561067e57600080fd5b506103036004803603604081101561069557600080fd5b506001600160a01b038135169060200135611143565b3480156106b757600080fd5b506103ae6111ab565b3480156106cc57600080fd5b50610303600480360360408110156106e357600080fd5b506001600160a01b038135169060200135611299565b34801561070557600080fd5b506103ae6004803603604081101561071c57600080fd5b506001600160a01b03813516906020013515156112ad565b34801561074057600080fd5b5061032c611330565b34801561075557600080fd5b506103036004803603602081101561076c57600080fd5b50356001600160a01b0316611336565b34801561078857600080fd5b506103ae6004803603602081101561079f57600080fd5b5035611354565b3480156107b257600080fd5b5061032c600480360360408110156107c957600080fd5b506001600160a01b03813581169160200135166113f2565b3480156107ed57600080fd5b506103ae6004803603602081101561080457600080fd5b5035151561141d565b34801561081957600080fd5b506103ae6004803603602081101561083057600080fd5b50356001600160a01b0316611493565b34801561084c57600080fd5b506103ae6004803603602081101561086357600080fd5b50356001600160a01b0316611675565b34801561087f57600080fd5b506103ae61175b565b34801561089457600080fd5b5061032c6117bd565b3480156108a957600080fd5b506103ae600480360360208110156108c057600080fd5b50356001600160a01b03166117c1565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095c5780601f106109315761010080835404028352916020019161095c565b820191906000526020600020905b81548152906001019060200180831161093f57829003601f168201915b5050505050905090565b600061097a610973611982565b8484611986565b5060015b92915050565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b6109bc611982565b6000546001600160a01b03908116911614610a0c576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b69152d02c7e14af6800000811015610a555760405162461bcd60e51b81526004018080602001828103825260348152602001806129b36034913960400191505060405180910390fd5b601555565b6000610a67848484611a72565b610ad784610a73611982565b610ad285604051806060016040528060288152602001612a30602891396001600160a01b038a16600090815260056020526040812090610ab1611982565b6001600160a01b031681526020810191909152604001600020549190611ccf565b611986565b5060019392505050565b610ae9611982565b6000546001600160a01b03908116911614610b39576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60018110158015610b4b575060198111155b610b9c576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2032350000000000604482015290519081900360640190fd5b601055565b6000600a54821115610be45760405162461bcd60e51b815260040180806020018281038252602a815260200180612941602a913960400191505060405180910390fd5b6000610bee611d66565b9050610bfa8382611d89565b9150505b919050565b600e5460ff1690565b610c14611982565b6000546001600160a01b03908116911614610c64576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600061097a610c93611982565b84610ad28560056000610ca4611982565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611dd2565b6000610cde611982565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d395760405162461bcd60e51b815260040180806020018281038252602c815260200180612b2c602c913960400191505060405180910390fd5b6000610d4483611e2c565b505050506001600160a01b038416600090815260036020526040902054919250610d7091905082611e88565b6001600160a01b038316600090815260036020526040902055600a54610d969082611e88565b600a55600b54610da69084611dd2565b600b55505050565b6014546001600160a01b031681565b6000600954831115610e16576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e35576000610e2684611e2c565b5093955061097e945050505050565b6000610e4084611e2c565b5092955061097e945050505050565b7f000000000000000000000000dca79f1f78b866988081de8a06f92b5e5d31685781565b610e7b611982565b6000546001600160a01b03908116911614610ecb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6000610ed630610fe1565b9050610ee181611eca565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b610f0a611982565b6000546001600160a01b03908116911614610f5a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60018110158015610f6c575060198111155b610fbd576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600f55565b6013546001600160a01b031681565b601454600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561102157506001600160a01b038116600090815260046020526040902054610bfe565b6001600160a01b03821660009081526003602052604090205461097e90610ba1565b61104b611982565b6000546001600160a01b0390811691161461109b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a78833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600d8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095c5780601f106109315761010080835404028352916020019161095c565b600061097a611150611982565b84610ad285604051806060016040528060258152602001612b7b602591396005600061117a611982565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ccf565b6001546001600160a01b031633146111f45760405162461bcd60e51b8152600401808060200182810382526023815260200180612b586023913960400191505060405180910390fd5b600254421161124a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a7883398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061097a6112a6611982565b8484611a72565b6112b5611982565b6000546001600160a01b03908116911614611305576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526007602052604090205460ff1690565b61135c611982565b6000546001600160a01b039081169116146113ac576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a78833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611425611982565b6000546001600160a01b03908116911614611475576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b60148054911515600160a81b0260ff60a81b19909216919091179055565b61149b611982565b6000546001600160a01b039081169116146114eb576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156115475760405162461bcd60e51b8152600401808060200182810382526022815260200180612b0a6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156115b5576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561160f576001600160a01b0381166000908152600360205260409020546115f590610ba1565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b61167d611982565b6000546001600160a01b039081169116146116cd576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b0381166117125760405162461bcd60e51b815260040180806020018281038252602681526020018061296b6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a7883398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611763611982565b6000546001600160a01b039081169116146117b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b47610ee181612101565b4790565b6117c9611982565b6000546001600160a01b03908116911614611819576040805162461bcd60e51b81526020600482018190526024820152600080516020612a58833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611886576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561197e57816001600160a01b0316600882815481106118aa57fe5b6000918252602090912001546001600160a01b03161415611976576008805460001981019081106118d757fe5b600091825260209091200154600880546001600160a01b0390921691839081106118fd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061194f57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561197e565b600101611889565b5050565b3390565b6001600160a01b0383166119cb5760405162461bcd60e51b8152600401808060200182810382526024815260200180612ae66024913960400191505060405180910390fd5b6001600160a01b038216611a105760405162461bcd60e51b81526004018080602001828103825260228152602001806129916022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ab75760405162461bcd60e51b8152600401808060200182810382526025815260200180612ac16025913960400191505060405180910390fd5b6001600160a01b038216611afc5760405162461bcd60e51b815260040180806020018281038252602381526020018061291e6023913960400191505060405180910390fd5b60008111611b3b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612a986029913960400191505060405180910390fd5b611b436110d3565b6001600160a01b0316836001600160a01b031614158015611b7d5750611b676110d3565b6001600160a01b0316826001600160a01b031614155b15611bc357601554811115611bc35760405162461bcd60e51b81526004018080602001828103825260288152602001806129e76028913960400191505060405180910390fd5b6000611bce30610fe1565b90506015548110611bde57506015545b6016546014549082101590600160a01b900460ff16158015611c095750601454600160a81b900460ff165b8015611c125750805b8015611c5057507f000000000000000000000000dca79f1f78b866988081de8a06f92b5e5d3168576001600160a01b0316856001600160a01b031614155b15611c7057611c5e82611eca565b478015611c6e57611c6e47612101565b505b6001600160a01b03851660009081526006602052604090205460019060ff1680611cb257506001600160a01b03851660009081526006602052604090205460ff165b15611cbb575060005b611cc786868684612186565b505050505050565b60008184841115611d5e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d23578181015183820152602001611d0b565b50505050905090810190601f168015611d505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611d736122fa565b9092509050611d828282611d89565b9250505090565b6000611dcb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061245d565b9392505050565b600082820183811015611dcb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611e498a600f546010546124c2565b9250925092506000611e59611d66565b90506000806000611e6b8e8786612517565b919e509c509a509598509396509194505050505091939550919395565b6000611dcb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ccf565b6014805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683370190505090503081600081518110611f0b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611f8457600080fd5b505afa158015611f98573d6000803e3d6000fd5b505050506040513d6020811015611fae57600080fd5b5051815182906001908110611fbf57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061200a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611986565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156120af578181015183820152602001612097565b505050509050019650505050505050600060405180830381600087803b1580156120d857600080fd5b505af11580156120ec573d6000803e3d6000fd5b50506014805460ff60a01b1916905550505050565b6013546001600160a01b03166108fc61211b836002611d89565b6040518115909202916000818181858888f19350505050158015612143573d6000803e3d6000fd5b506014546001600160a01b03166108fc61215e836002611d89565b6040518115909202916000818181858888f1935050505015801561197e573d6000803e3d6000fd5b8061219357612193612553565b6001600160a01b03841660009081526007602052604090205460ff1680156121d457506001600160a01b03831660009081526007602052604090205460ff16155b156121e9576121e4848484612585565b6122e7565b6001600160a01b03841660009081526007602052604090205460ff1615801561222a57506001600160a01b03831660009081526007602052604090205460ff165b1561223a576121e48484846126a9565b6001600160a01b03841660009081526007602052604090205460ff1615801561227c57506001600160a01b03831660009081526007602052604090205460ff16155b1561228c576121e4848484612752565b6001600160a01b03841660009081526007602052604090205460ff1680156122cc57506001600160a01b03831660009081526007602052604090205460ff165b156122dc576121e4848484612796565b6122e7848484612752565b806122f4576122f4612809565b50505050565b600a546009546000918291825b60085481101561242b5782600360006008848154811061232357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612388575081600460006008848154811061236157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561239f57600a5460095494509450505050612459565b6123df60036000600884815481106123b357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e88565b925061242160046000600884815481106123f557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e88565b9150600101612307565b50600954600a5461243b91611d89565b82101561245357600a54600954935093505050612459565b90925090505b9091565b600081836124ac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d23578181015183820152602001611d0b565b5060008385816124b857fe5b0495945050505050565b60008080806124dc60646124d68989612817565b90611d89565b905060006124ef60646124d68a89612817565b90506000612507826125018b86611e88565b90611e88565b9992985090965090945050505050565b60008080806125268786612817565b905060006125348787612817565b905060006125428383611e88565b929992985090965090945050505050565b600f541580156125635750601054155b1561256d57612583565b600f805460115560108054601255600091829055555b565b60008060008060008061259787611e2c565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125c99088611e88565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546125f89087611e88565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126279086611dd2565b6001600160a01b03891660009081526003602052604090205561264981612870565b61265384836128f9565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126bb87611e2c565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126ed9087611e88565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127239084611dd2565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126279086611dd2565b60008060008060008061276487611e2c565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506125f89087611e88565b6000806000806000806127a887611e2c565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127da9088611e88565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126ed9087611e88565b601154600f55601254601055565b6000826128265750600061097e565b8282028284828161283357fe5b0414611dcb5760405162461bcd60e51b8152600401808060200182810382526021815260200180612a0f6021913960400191505060405180910390fd5b600061287a611d66565b905060006128888383612817565b306000908152600360205260409020549091506128a59082611dd2565b3060009081526003602090815260408083209390935560079052205460ff16156128f457306000908152600460205260409020546128e39084611dd2565b306000908152600460205260409020555b505050565b600a546129069083611e88565b600a55600b546129169082611dd2565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573736d61785478416d6f756e742073686f756c642062652067726561746572207468616e2031303030303030303030303030303065395472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dad924313c1a880a87da422755eb7963f791124709577df6a3e548ba8b4141b064736f6c634300060c0033

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

000000000000000000000000fbf335f8224a102e22abe78d78cc52dc95e074fa00000000000000000000000043853a1999f1dc727f407e22283b16bc0fe7b49b

-----Decoded View---------------
Arg [0] : MCCWalletAddress (address): 0xFBf335f8224a102e22abE78D78CC52dc95e074Fa
Arg [1] : marketingWalletAddress (address): 0x43853A1999f1dC727f407e22283b16BC0FE7B49b

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000fbf335f8224a102e22abe78d78cc52dc95e074fa
Arg [1] : 00000000000000000000000043853a1999f1dc727f407e22283b16bc0fe7b49b


Deployed Bytecode Sourcemap

26979:18849:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29713:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30717:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30717:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32065:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28114:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28114:51:0;;;;;;;;;;;;;;30026:103;;;;;;;;;;;;;:::i;45588:233::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45588:233:0;;:::i;:::-;;30902:329;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30902:329:0;;;;;;;;;;;;;;;;;:::i;45235:188::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45235:188:0;;:::i;33073:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33073:269:0;;:::i;29923:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45435:141;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45435:141:0;-1:-1:-1;;;;;45435:141:0;;:::i;31243:230::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31243:230:0;;;;;;;;:::i;32172:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32172:405:0;;:::i;28055:46::-;;;;;;;;;;;;;:::i;32589:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32589:472:0;;;;;;;;;:::i;28176:38::-;;;;;;;;;;;;;:::i;38259:168::-;;;;;;;;;;;;;:::i;34764:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34764:131:0;-1:-1:-1;;;;;34764:131:0;;:::i;45042:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45042:181:0;;:::i;28004:40::-;;;;;;;;;;;;;:::i;28257:30::-;;;;;;;;;;;;;:::i;30141:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30141:210:0;-1:-1:-1;;;;;30141:210:0;;:::i;16825:160::-;;;;;;;;;;;;;:::i;16123:87::-;;;;;;;;;;;;;:::i;29816:95::-;;;;;;;;;;;;;:::i;31485:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31485:281:0;;;;;;;;:::i;17924:313::-;;;;;;;;;;;;;:::i;30363:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30363:179:0;;;;;;;;:::i;31908:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31908:145:0;;;;;;;;;;:::i;17429:97::-;;;;;;;;;;;;;:::i;31778:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31778:118:0;-1:-1:-1;;;;;31778:118:0;;:::i;17610:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17610:234:0;;:::i;30554:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30554:151:0;;;;;;;;;;:::i;38619:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38619:106:0;;;;:::i;33354:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33354:475:0;-1:-1:-1;;;;;33354:475:0;;:::i;17157:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17157:260:0;-1:-1:-1;;;;;17157:260:0;;:::i;38439:168::-;;;;;;;;;;;;;:::i;44912:118::-;;;;;;;;;;;;;:::i;33841:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33841:522:0;-1:-1:-1;;;;;33841:522:0;;:::i;29713:91::-;29787:5;29780:12;;;;;;;;-1:-1:-1;;29780:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29750:13;;29780:12;;29787:5;;29780:12;;29787:5;29780:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29713:91;:::o;30717:173::-;30792:4;30813:39;30822:12;:10;:12::i;:::-;30836:7;30845:6;30813:8;:39::i;:::-;-1:-1:-1;30874:4:0;30717:173;;;;;:::o;32065:95::-;32138:10;;32065:95;:::o;28114:51::-;;;:::o;30026:103::-;30110:7;;30026:103;:::o;45588:233::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;45693:17:::1;45678:11;:32;;45670:98;;;;-1:-1:-1::0;;;45670:98:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45783:12;:26:::0;45588:233::o;30902:329::-;31000:4;31021:36;31031:6;31039:9;31050:6;31021:9;:36::i;:::-;31072:121;31081:6;31089:12;:10;:12::i;:::-;31103:89;31141:6;31103:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31103:19:0;;;;;;:11;:19;;;;;;31123:12;:10;:12::i;:::-;-1:-1:-1;;;;;31103:33:0;;;;;;;;;;;;-1:-1:-1;31103:33:0;;;:89;:37;:89::i;:::-;31072:8;:121::i;:::-;-1:-1:-1;31215:4:0;30902:329;;;;;:::o;45235:188::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;45328:1:::1;45317:7;:12;;:29;;;;;45344:2;45333:7;:13;;45317:29;45309:69;;;::::0;;-1:-1:-1;;;45309:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;45393:8;:18:::0;45235:188::o;33073:269::-;33139:7;33182;;33171;:18;;33163:73;;;;-1:-1:-1;;;33163:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33251:19;33274:10;:8;:10::i;:::-;33251:33;-1:-1:-1;33306:24:0;:7;33251:33;33306:11;:24::i;:::-;33299:31;;;33073:269;;;;:::o;29923:91::-;29993:9;;;;29923:91;:::o;45435:141::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;45528:17:::1;:36:::0;;-1:-1:-1;;;;;;45528:36:0::1;-1:-1:-1::0;;;;;45528:36:0;;;::::1;::::0;;;::::1;::::0;;45435:141::o;31243:230::-;31331:4;31352:83;31361:12;:10;:12::i;:::-;31375:7;31384:50;31423:10;31384:11;:25;31396:12;:10;:12::i;:::-;-1:-1:-1;;;;;31384:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31384:25:0;;;:34;;;;;;;;;;;:38;:50::i;32172:405::-;32228:14;32245:12;:10;:12::i;:::-;-1:-1:-1;;;;;32281:19:0;;;;;;:11;:19;;;;;;32228:29;;-1:-1:-1;32281:19:0;;32280:20;32272:77;;;;-1:-1:-1;;;32272:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32365:15;32389:19;32400:7;32389:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32441:15:0;;;;;;:7;:15;;;;;;32364:44;;-1:-1:-1;32441:28:0;;:15;-1:-1:-1;32364:44:0;32441:19;:28::i;:::-;-1:-1:-1;;;;;32423:15:0;;;;;;:7;:15;;;;;:46;32494:7;;:20;;32506:7;32494:11;:20::i;:::-;32484:7;:30;32542:10;;:23;;32557:7;32542:14;:23::i;:::-;32529:10;:36;-1:-1:-1;;;32172:405:0:o;28055:46::-;;;-1:-1:-1;;;;;28055:46:0;;:::o;32589:472::-;32679:7;32722;;32711;:18;;32703:62;;;;;-1:-1:-1;;;32703:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32785:17;32780:270;;32824:15;32848:19;32859:7;32848:10;:19::i;:::-;-1:-1:-1;32823:44:0;;-1:-1:-1;32886:14:0;;-1:-1:-1;;;;;32886:14:0;32780:270;32943:23;32974:19;32985:7;32974:10;:19::i;:::-;-1:-1:-1;32941:52:0;;-1:-1:-1;33012:22:0;;-1:-1:-1;;;;;33012:22:0;28176:38;;;:::o;38259:168::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;38317:23:::1;38343:24;38361:4;38343:9;:24::i;:::-;38317:50;;38382:33;38399:15;38382:16;:33::i;:::-;16435:1;38259:168::o:0;34764:131::-;-1:-1:-1;;;;;34856:27:0;34828:4;34856:27;;;:18;:27;;;;;;;;;34764:131::o;45042:181::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;45132:1:::1;45122:6;:11;;:27;;;;;45147:2;45137:6;:12;;45122:27;45114:66;;;::::0;;-1:-1:-1;;;45114:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;45195:7;:16:::0;45042:181::o;28004:40::-;;;-1:-1:-1;;;;;28004:40:0;;:::o;28257:30::-;;;-1:-1:-1;;;28257:30:0;;;;;:::o;30141:210::-;-1:-1:-1;;;;;30235:20:0;;30207:7;30235:20;;;:11;:20;;;;;;;;30231:49;;;-1:-1:-1;;;;;;30264:16:0;;;;;;:7;:16;;;;;;30257:23;;30231:49;-1:-1:-1;;;;;30322:16:0;;;;;;:7;:16;;;;;;30302:37;;:19;:37::i;16825:160::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;16936:1:::1;16920:6:::0;;16899:40:::1;::::0;-1:-1:-1;;;;;16920:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16899:40:0;16936:1;;16899:40:::1;16971:1;16954:19:::0;;-1:-1:-1;;;;;;16954:19:0::1;::::0;;16825:160::o;16123:87::-;16161:7;16192:6;-1:-1:-1;;;;;16192:6:0;16123:87;:::o;29816:95::-;29892:7;29885:14;;;;;;;;-1:-1:-1;;29885:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29855:13;;29885:14;;29892:7;;29885:14;;29892:7;29885:14;;;;;;;;;;;;;;;;;;;;;;;;31485:281;31578:4;31599:129;31608:12;:10;:12::i;:::-;31622:7;31631:96;31670:15;31631:96;;;;;;;;;;;;;;;;;:11;:25;31643:12;:10;:12::i;:::-;-1:-1:-1;;;;;31631:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31631:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17924:313::-;17980:14;;-1:-1:-1;;;;;17980:14:0;17998:10;17980:28;17972:76;;;;-1:-1:-1;;;17972:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18077:9;;18071:3;:15;18063:60;;;;;-1:-1:-1;;;18063:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18172:14;;;18164:6;;18143:44;;-1:-1:-1;;;;;18172:14:0;;;;18164:6;;;;-1:-1:-1;;;;;;;;;;;18143:44:0;;18211:14;;;18202:23;;-1:-1:-1;;;;;;18202:23:0;-1:-1:-1;;;;;18211:14:0;;;18202:23;;;;;;17924:313::o;30363:179::-;30441:4;30462:42;30472:12;:10;:12::i;:::-;30486:9;30497:6;30462:9;:42::i;31908:145::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32003:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;32003:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31908:145::o;17429:97::-;17505:9;;17429:97;:::o;31778:118::-;-1:-1:-1;;;;;31864:20:0;31836:4;31864:20;;;:11;:20;;;;;;;;;31778:118::o;17610:234::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;17695:6:::1;::::0;;;17678:23;;-1:-1:-1;;;;;;17678:23:0;;::::1;-1:-1:-1::0;;;;;17695:6:0;::::1;17678:23;::::0;;;17716:19:::1;::::0;;17762:3:::1;:10:::0;::::1;17750:9;:22:::0;17792:40:::1;::::0;17695:6;;-1:-1:-1;;;;;;;;;;;17792:40:0;17695:6;;17792:40:::1;17610:234:::0;:::o;30554:151::-;-1:-1:-1;;;;;30666:18:0;;;30635:7;30666:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30554:151::o;38619:106::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;38692:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;38692:21:0::1;-1:-1:-1::0;;;;38692:21:0;;::::1;::::0;;;::::1;::::0;;38619:106::o;33354:475::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;33450:42:::1;-1:-1:-1::0;;;;;33439:53:0;::::1;;;33431:100;;;;-1:-1:-1::0;;;33431:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33555:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33554:21;33546:61;;;::::0;;-1:-1:-1;;;33546:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33625:16:0;::::1;33644:1;33625:16:::0;;;:7:::1;:16;::::0;;;;;:20;33622:116:::1;;-1:-1:-1::0;;;;;33705:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33685:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33666:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33622:116:::1;-1:-1:-1::0;;;;;33752:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33752:27:0::1;33775:4;33752:27:::0;;::::1;::::0;;;33794:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33794:23:0::1;::::0;;::::1;::::0;;33354:475::o;17157:260::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17250:22:0;::::1;17242:73;;;;-1:-1:-1::0;;;17242:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17356:6;::::0;;17335:38:::1;::::0;-1:-1:-1;;;;;17335:38:0;;::::1;::::0;17356:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17335:38:0;::::1;17388:6;:17:::0;;-1:-1:-1;;;;;;17388:17:0::1;-1:-1:-1::0;;;;;17388:17:0;;;::::1;::::0;;;::::1;::::0;;17157:260::o;38439:168::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;38526:21:::1;38562:33;38526:21:::0;38562:13:::1;:33::i;44912:118::-:0;44997:21;44912:118;:::o;33841:522::-;16371:12;:10;:12::i;:::-;16361:6;;-1:-1:-1;;;;;16361:6:0;;;:22;;;16353:67;;;;;-1:-1:-1;;;16353:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16353:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33926:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33918:60;;;::::0;;-1:-1:-1;;;33918:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33998:9;33993:359;34017:9;:16:::0;34013:20;::::1;33993:359;;;34079:7;-1:-1:-1::0;;;;;34063:23:0::1;:9;34073:1;34063:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34063:12:0::1;:23;34059:278;;;34126:9;34136:16:::0;;-1:-1:-1;;34136:20:0;;;34126:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34111:9:::1;:12:::0;;-1:-1:-1;;;;;34126:31:0;;::::1;::::0;34121:1;;34111:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34111:46:0::1;-1:-1:-1::0;;;;;34111:46:0;;::::1;;::::0;;34180:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34223:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34223:28:0::1;::::0;;34274:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34274:15:0;;;;;-1:-1:-1;;;;;;34274:15:0::1;::::0;;;;;34312:5:::1;;34059:278;34035:3;;33993:359;;;;33841:522:::0;:::o;580:114::-;672:10;580:114;:::o;34907:357::-;-1:-1:-1;;;;;35004:19:0;;34996:68;;;;-1:-1:-1;;;34996:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35087:21:0;;35079:68;;;;-1:-1:-1;;;35079:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35164:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35220:32;;;;;;;;;;;;;;;;;34907:357;;;:::o;35276:1964::-;-1:-1:-1;;;;;35377:20:0;;35369:70;;;;-1:-1:-1;;;35369:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35462:23:0;;35454:71;;;;-1:-1:-1;;;35454:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35557:1;35548:6;:10;35540:64;;;;-1:-1:-1;;;35540:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35634:7;:5;:7::i;:::-;-1:-1:-1;;;;;35624:17:0;:6;-1:-1:-1;;;;;35624:17:0;;;:41;;;;;35658:7;:5;:7::i;:::-;-1:-1:-1;;;;;35645:20:0;:9;-1:-1:-1;;;;;35645:20:0;;;35624:41;35621:138;;;35702:12;;35692:6;:22;;35684:75;;;;-1:-1:-1;;;35684:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36042:28;36073:24;36091:4;36073:9;:24::i;:::-;36042:55;;36141:12;;36117:20;:36;36114:124;;-1:-1:-1;36210:12:0;;36114:124;36305:29;;36354:6;;36281:53;;;;;-1:-1:-1;;;36354:6:0;;;;36353:7;:22;;;;-1:-1:-1;36364:11:0;;-1:-1:-1;;;36364:11:0;;;;36353:22;:45;;;;;36379:19;36353:45;:72;;;;;36412:13;-1:-1:-1;;;;;36402:23:0;:6;-1:-1:-1;;;;;36402:23:0;;;36353:72;36349:436;;;36536:38;36553:20;36536:16;:38::i;:::-;36624:21;36667:22;;36664:106;;36714:36;36728:21;36714:13;:36::i;:::-;36349:436;;-1:-1:-1;;;;;36993:26:0;;36866:12;36993:26;;;:18;:26;;;;;;36881:4;;36993:26;;;:59;;-1:-1:-1;;;;;;37023:29:0;;;;;;:18;:29;;;;;;;;36993:59;36990:113;;;-1:-1:-1;37082:5:0;36990:113;37181:47;37196:6;37203:9;37213:6;37220:7;37181:14;:47::i;:::-;35276:1964;;;;;;:::o;5107:208::-;5193:7;5233:12;5225:6;;;;5217:29;;;;-1:-1:-1;;;5217:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5273:5:0;;;5107:208::o;43898:175::-;43939:7;43964:15;43981;44000:19;:17;:19::i;:::-;43963:56;;-1:-1:-1;43963:56:0;-1:-1:-1;44041:20:0;43963:56;;44041:11;:20::i;:::-;44034:27;;;;43898:175;:::o;6637:140::-;6695:7;6726:39;6730:1;6733;6726:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6719:46;6637:140;-1:-1:-1;;;6637:140:0:o;4110:197::-;4168:7;4204:5;;;4232:6;;;;4224:46;;;;;-1:-1:-1;;;4224:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;42656:481;42715:7;42724;42733;42742;42751;42760;42785:23;42810:12;42824:13;42841:39;42853:7;42862;;42871:8;;42841:11;:39::i;:::-;42784:96;;;;;;42895:19;42918:10;:8;:10::i;:::-;42895:33;;42944:15;42961:23;42986:12;43002:39;43014:7;43023:4;43029:11;43002;:39::i;:::-;42943:98;;-1:-1:-1;42943:98:0;-1:-1:-1;42943:98:0;-1:-1:-1;43096:15:0;;-1:-1:-1;43113:4:0;;-1:-1:-1;43119:5:0;;-1:-1:-1;;;;;42656:481:0;;;;;;;:::o;4625:144::-;4683:7;4714:43;4718:1;4721;4714:43;;;;;;;;;;;;;;;;;:3;:43::i;37252:656::-;28666:6;:13;;-1:-1:-1;;;;28666:13:0;-1:-1:-1;;;28666:13:0;;;37421:16:::1;::::0;;37435:1:::1;37421:16:::0;;;37397:21:::1;37421:16:::0;;::::1;::::0;;37397:21;37421:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;37421:16:0::1;37397:40;;37470:4;37452;37457:1;37452:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;37452:23:0::1;;;-1:-1:-1::0;;;;;37452:23:0::1;;;::::0;::::1;37500:15;-1:-1:-1::0;;;;;37500:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37500:22:0;37490:7;;:4;;37495:1:::1;::::0;37490:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;37490:32:0::1;;;-1:-1:-1::0;;;;;37490:32:0::1;;;::::0;::::1;37539:62;37556:4;37571:15;37589:11;37539:8;:62::i;:::-;37648:15;-1:-1:-1::0;;;;;37648:66:0::1;;37733:11;37763:1;37811:4;37842;37866:15;37648:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;37648:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28710:6:0;:14;;-1:-1:-1;;;;28710:14:0;;;-1:-1:-1;;;;37252:656:0:o;37920:177::-;37982:17;;-1:-1:-1;;;;;37982:17:0;:41;38009:13;:6;38020:1;38009:10;:13::i;:::-;37982:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38038:23:0;;-1:-1:-1;;;;;38038:23:0;:47;38071:13;:6;38082:1;38071:10;:13::i;:::-;38038:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38737:883;38853:7;38849:44;;38879:14;:12;:14::i;:::-;-1:-1:-1;;;;;38914:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;38938:22:0;;;;;;:11;:22;;;;;;;;38937:23;38914:46;38910:637;;;38981:48;39003:6;39011:9;39022:6;38981:21;:48::i;:::-;38910:637;;;-1:-1:-1;;;;;39056:19:0;;;;;;:11;:19;;;;;;;;39055:20;:46;;;;-1:-1:-1;;;;;;39079:22:0;;;;;;:11;:22;;;;;;;;39055:46;39051:496;;;39122:46;39142:6;39150:9;39161:6;39122:19;:46::i;39051:496::-;-1:-1:-1;;;;;39195:19:0;;;;;;:11;:19;;;;;;;;39194:20;:47;;;;-1:-1:-1;;;;;;39219:22:0;;;;;;:11;:22;;;;;;;;39218:23;39194:47;39190:357;;;39262:44;39280:6;39288:9;39299:6;39262:17;:44::i;39190:357::-;-1:-1:-1;;;;;39332:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;39355:22:0;;;;;;:11;:22;;;;;;;;39332:45;39328:219;;;39398:48;39420:6;39428:9;39439:6;39398:21;:48::i;39328:219::-;39487:44;39505:6;39513:9;39524:6;39487:17;:44::i;:::-;39567:7;39563:45;;39593:15;:13;:15::i;:::-;38737:883;;;;:::o;44085:595::-;44186:7;;44226;;44135;;;;;44248:305;44272:9;:16;44268:20;;44248:305;;;44342:7;44318;:21;44326:9;44336:1;44326:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44326:12:0;44318:21;;;;;;;;;;;;;:31;;:66;;;44377:7;44353;:21;44361:9;44371:1;44361:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44361:12:0;44353:21;;;;;;;;;;;;;:31;44318:66;44314:97;;;44394:7;;44403;;44386:25;;;;;;;;;44314:97;44440:34;44452:7;:21;44460:9;44470:1;44460:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44460:12:0;44452:21;;;;;;;;;;;;;44440:7;;:11;:34::i;:::-;44430:44;;44503:34;44515:7;:21;44523:9;44533:1;44523:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44523:12:0;44515:21;;;;;;;;;;;;;44503:7;;:11;:34::i;:::-;44493:44;-1:-1:-1;44290:3:0;;44248:305;;;-1:-1:-1;44593:7:0;;44581;;:20;;:11;:20::i;:::-;44571:7;:30;44567:61;;;44611:7;;44620;;44603:25;;;;;;;;44567:61;44651:7;;-1:-1:-1;44660:7:0;-1:-1:-1;44085:595:0;;;:::o;7314:298::-;7400:7;7439:12;7432:5;7424:28;;;;-1:-1:-1;;;7424:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7467:9;7483:1;7479;:5;;;;;;;7314:298;-1:-1:-1;;;;;7314:298:0:o;43149:371::-;43242:7;;;;43299:28;43323:3;43299:19;:7;43311:6;43299:11;:19::i;:::-;:23;;:28::i;:::-;43284:43;-1:-1:-1;43342:13:0;43358:29;43383:3;43358:20;:7;43370;43358:11;:20::i;:29::-;43342:45;-1:-1:-1;43402:23:0;43428:28;43342:45;43428:17;:7;43440:4;43428:11;:17::i;:::-;:21;;:28::i;:::-;43402:54;43496:4;;-1:-1:-1;43502:5:0;;-1:-1:-1;43149:371:0;;-1:-1:-1;;;;;43149:371:0:o;43532:354::-;43627:7;;;;43687:24;:7;43699:11;43687;:24::i;:::-;43669:42;-1:-1:-1;43726:12:0;43741:21;:4;43750:11;43741:8;:21::i;:::-;43726:36;-1:-1:-1;43777:23:0;43803:17;:7;43726:36;43803:11;:17::i;:::-;43843:7;;;;-1:-1:-1;43869:4:0;;-1:-1:-1;43532:354:0;;-1:-1:-1;;;;;43532:354:0:o;34375:238::-;34425:7;;:12;:29;;;;-1:-1:-1;34441:8:0;;:13;34425:29;34422:41;;;34456:7;;34422:41;34497:7;;;34479:15;:25;34538:8;;;34519:16;:27;-1:-1:-1;34563:11:0;;;;34589:12;34375:238;:::o;40763:580::-;40870:15;40887:23;40912:12;40926:23;40951:12;40965:13;40982:19;40993:7;40982:10;:19::i;:::-;-1:-1:-1;;;;;41034:15:0;;;;;;:7;:15;;;;;;40869:132;;-1:-1:-1;40869:132:0;;-1:-1:-1;40869:132:0;;-1:-1:-1;40869:132:0;-1:-1:-1;40869:132:0;-1:-1:-1;40869:132:0;-1:-1:-1;41034:28:0;;41054:7;41034:19;:28::i;:::-;-1:-1:-1;;;;;41016:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41095:7;:15;;;;:28;;41115:7;41095:19;:28::i;:::-;-1:-1:-1;;;;;41077:15:0;;;;;;;:7;:15;;;;;;:46;;;;41159:18;;;;;;;:39;;41182:15;41159:22;:39::i;:::-;-1:-1:-1;;;;;41138:18:0;;;;;;:7;:18;;;;;:60;41213:16;41223:5;41213:9;:16::i;:::-;41244:23;41256:4;41262;41244:11;:23::i;:::-;41304:9;-1:-1:-1;;;;;41287:44:0;41296:6;-1:-1:-1;;;;;41287:44:0;;41315:15;41287:44;;;;;;;;;;;;;;;;;;40763:580;;;;;;;;;:::o;40159:592::-;40264:15;40281:23;40306:12;40320:23;40345:12;40359:13;40376:19;40387:7;40376:10;:19::i;:::-;-1:-1:-1;;;;;40428:15:0;;;;;;:7;:15;;;;;;40263:132;;-1:-1:-1;40263:132:0;;-1:-1:-1;40263:132:0;;-1:-1:-1;40263:132:0;-1:-1:-1;40263:132:0;-1:-1:-1;40263:132:0;-1:-1:-1;40428:28:0;;40263:132;40428:19;:28::i;:::-;-1:-1:-1;;;;;40410:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;40492:18;;;;;:7;:18;;;;;:39;;40515:15;40492:22;:39::i;:::-;-1:-1:-1;;;;;40471:18:0;;;;;;:7;:18;;;;;;;;:60;;;;40567:7;:18;;;;:39;;40590:15;40567:22;:39::i;39632:515::-;39735:15;39752:23;39777:12;39791:23;39816:12;39830:13;39847:19;39858:7;39847:10;:19::i;:::-;-1:-1:-1;;;;;39899:15:0;;;;;;:7;:15;;;;;;39734:132;;-1:-1:-1;39734:132:0;;-1:-1:-1;39734:132:0;;-1:-1:-1;39734:132:0;-1:-1:-1;39734:132:0;-1:-1:-1;39734:132:0;-1:-1:-1;39899:28:0;;39734:132;39899:19;:28::i;41355:655::-;41462:15;41479:23;41504:12;41518:23;41543:12;41557:13;41574:19;41585:7;41574:10;:19::i;:::-;-1:-1:-1;;;;;41626:15:0;;;;;;:7;:15;;;;;;41461:132;;-1:-1:-1;41461:132:0;;-1:-1:-1;41461:132:0;;-1:-1:-1;41461:132:0;-1:-1:-1;41461:132:0;-1:-1:-1;41461:132:0;-1:-1:-1;41626:28:0;;41646:7;41626:19;:28::i;:::-;-1:-1:-1;;;;;41608:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41687:7;:15;;;;:28;;41707:7;41687:19;:28::i;34625:127::-;34683:15;;34673:7;:25;34724:16;;34713:8;:27;34625:127::o;5609:511::-;5667:7;5928:6;5924:55;;-1:-1:-1;5962:1:0;5955:8;;5924:55;6007:5;;;6011:1;6007;:5;:1;6035:5;;;;;:10;6027:56;;;;-1:-1:-1;;;6027:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42022:349;42079:19;42102:10;:8;:10::i;:::-;42079:33;-1:-1:-1;42127:13:0;42143:22;:5;42079:33;42143:9;:22::i;:::-;42221:4;42205:22;;;;:7;:22;;;;;;42127:38;;-1:-1:-1;42205:33:0;;42127:38;42205:26;:33::i;:::-;42196:4;42180:22;;;;:7;:22;;;;;;;;:58;;;;42256:11;:26;;;;;;42253:106;;;42342:4;42326:22;;;;:7;:22;;;;;;:33;;42353:5;42326:26;:33::i;:::-;42317:4;42301:22;;;;:7;:22;;;;;:58;42253:106;42022:349;;;:::o;42383:159::-;42465:7;;:17;;42477:4;42465:11;:17::i;:::-;42455:7;:27;42510:10;;:20;;42525:4;42510:14;:20::i;:::-;42497:10;:33;-1:-1:-1;;42383:159:0:o

Swarm Source

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