ETH Price: $3,390.37 (-2.60%)
Gas: 1 Gwei

Token

Conspiracy DAO (CDAO)
 

Overview

Max Total Supply

100,000,000,000 CDAO

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,353,032.565011612781656306 CDAO

Value
$0.00
0xd66cf7cb0163ab6fc3ba612133ca162a874595d3
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:
ConspiracyDAO

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 3 : ConspiracyDAO.sol
// ********************************************* //
// ********       Our Social Handles     ****** //
// ******************************************* //




// https://twitter.com/TokenConspiracy

// https://t.me/ConspiracyDAO

// Conspiracydaotoken.com




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


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ConspiracyDAOToken.sol";

contract ConspiracyDAO is ConspiracyDAOToken {
    struct Conspiracy{
        uint256 id;
        address creator;
        string name;
        string description;
        string imageUri;
        uint256 upvotes;
        uint256 downvotes;
    }

    uint256 public createConspiracyCost = 100e18;

    Conspiracy[] private conspiracies;

    // voterAddress => conspiracy Id => upvoted bool
    mapping(address => mapping(uint256 => bool)) private upvoted;
    // voterAddress => conspiracy Id => downvoted bool
    mapping(address => mapping(uint256 => bool)) private downvoted;

    //////////////////////////////////////////
    //////////     Events     ///////////////
    ////////////////////////////////////////
    event CreatedConspiracy(uint256 id, address creator, string name, string description, string imageUri);
    event Upvoted(address upvoter, uint256 conspiracyId, uint256 latestUpvotes, uint256 latestDownvotes);
    event Downvoted(address downvoter, uint256 conspiracyId, uint256 latestUpvotes, uint256 latestDownvotes);

    /**
     * 
     * @param devWallet for adding Deducted Taxes on Token Purchase
     * @param marketingWallet for adding Deducted Taxes on Token Purchase & Token transfers
     * @param initialPeriphery To exclude Tax deductions for Uniswap v3 Position NFT Creator/Pool Creator
     * @param permitPeriphery  To exclude Tax deductions for Uniswap v3 Permit Router
     */
    constructor(address devWallet, address marketingWallet, address initialPeriphery, address permitPeriphery) ConspiracyDAOToken(devWallet, marketingWallet) {
        addPoolPeriphery(initialPeriphery);
        addPoolPeriphery(permitPeriphery);
    }

    //////////////////////////////////////////
    //////////     Modifiers     ////////////
    ////////////////////////////////////////

    modifier shouldNotBeUpvoted(uint256 conspiracyId){
        require(!upvoted[msg.sender][conspiracyId], "You have already Updvoted this conspiracy");
        _;
    }

    modifier shouldNotBeDownvoted(uint256 conspiracyId) {
        require(!downvoted[msg.sender][conspiracyId], "You have already Downvoted this conspiracy");
        _;
    }

    ///////////////////////////////////////////////////
    //////////     External Functions     ////////////
    /////////////////////////////////////////////////

    /**
     * 
     * @param name Conspiracy Name
     * @param description Conspiracy Description
     * @param imageUri Conspiracy Image URI
     * 
     * @notice It checks and deducts the createConspiracyCost from the creators wallet
     */
    function createConspiracy(string calldata name, string calldata description, string calldata imageUri) external {
        address creator = msg.sender;

        require(balanceOf(creator) >= createConspiracyCost, "Your CDAO Token Balance is too low to create a conspiracy!");

        uint256 conspiracyId = conspiracies.length;

        Conspiracy memory conspiracy = Conspiracy({
            name: name,
            id: conspiracyId,
            creator: creator,
            description: description,
            imageUri: imageUri,
            upvotes: 0,
            downvotes: 0
        });

        conspiracies.push(conspiracy);
        emit CreatedConspiracy(conspiracyId, creator, name, description, imageUri);

        // No Tax is Deducted
        _transfer(creator, owner(), createConspiracyCost);
    }

    /**
     * 
     * @param conspiracyId Id of the conspiracy that the user wants to Upvote
     * 
     * @notice This function check if the user has already upvoted and reverts &
     * If the user has downvoted the conspiracy before then it changes it to a upvote
     */
    function upvote(uint256 conspiracyId) external shouldNotBeUpvoted(conspiracyId) {
        address user = msg.sender;
        Conspiracy storage conspiracy = conspiracies[conspiracyId];

        if(downvoted[user][conspiracyId]){
            downvoted[user][conspiracyId] = false;
            conspiracy.downvotes--;
        }
        
        upvoted[user][conspiracyId] = true;
        conspiracy.upvotes++;

        emit Upvoted(user, conspiracyId, conspiracy.upvotes, conspiracy.downvotes);
    }

    /**
     * 
     * @param conspiracyId Id of the conspiracy that the user wants to Downvote
     * 
     * @notice This function check if the user has already Downvoted and reverts &
     * If the user has Upvoted the conspiracy before then it changes it to a Downvote
     */
    function downvote(uint256 conspiracyId) external shouldNotBeDownvoted(conspiracyId){
        address user = msg.sender;
        Conspiracy storage conspiracy = conspiracies[conspiracyId]; 

        if(upvoted[user][conspiracyId]){
            upvoted[user][conspiracyId] = false;
            conspiracy.upvotes--;
        }
        
        downvoted[user][conspiracyId] = true;
        conspiracy.downvotes++;

        emit Downvoted(user, conspiracyId, conspiracy.upvotes, conspiracy.downvotes);
    }

    /**
     * 
     * @param newCreateConspiracyCost New cost for creating conspiracy
     * 
     * @notice Only owner can call this function
     * @notice Multiplies by 1e18 "So enter a normal number and not a token number (without adding 18 extra zeros)"
     */
    function setCreateConspiracyCost(uint256 newCreateConspiracyCost) external onlyOwner {
        createConspiracyCost = newCreateConspiracyCost * 1e18;
    }


    ///////////////////////////////////////////////////
    //////////     External View Functions     ////////////
    /////////////////////////////////////////////////

    function getAllConspiracies() external view returns(Conspiracy[] memory){
        return conspiracies;
    }

    function getConspiracy(uint256 conspiracyId) external view returns(Conspiracy memory){
        return conspiracies[conspiracyId];
    } 

    function getUsersVoteFor(uint256 conspiracyId) external view returns(string memory) {
        address user = msg.sender;
        if(upvoted[user][conspiracyId]){
            return "Upvoted";
        } else if(downvoted[user][conspiracyId]){
            return "Downvoted";
        } else {
            return "Not voted";
        }
    }
}

File 2 of 3 : ConspiracyDAOToken.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC20Modified.sol";

contract ConspiracyDAOToken is ERC20Modified {

    // In percentages
    uint256 public buyTax = 6;
    uint256 public transferTax = 1;

    //////////  Wallets ////////////////////
    address public devWallet;
    address public marketingWallet;

    // To make it compatible with uniswapV3 lp pools
    mapping(address => bool) public isPoolAddress;
    mapping(address => bool) public isPoolPeriphery;

    constructor(address _devWallet, address _marketingWallet) ERC20Modified("Conspiracy DAO", "CDAO") {
        _mint(msg.sender, 100000000000e18);
        devWallet = _devWallet;
        marketingWallet = _marketingWallet;
    }   

    //////////////////////////////////////////
    //////////     EVENTS     ///////////////
    ////////////////////////////////////////
    event DeductedBuyTax(address indexed from, uint256 indexed taxPercentage, uint256 indexed taxAmount);
    event DeductedTransferTax(address indexed from, uint256 indexed taxPercentage, uint256 indexed taxAmount);


    //////////////////////////////////////////
    ////////     FUNCTIONS    ///////////////
    ////////////////////////////////////////

    function transfer(address to, uint256 amount) public override returns(bool){
        // Sanity Checks
        require(amount > 0, "ERC20: transfer amount cannot be Zero");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(msg.sender) >= amount, "ERC20: transfer amount exceeds balance");

        uint256 newTransferAmount = _deductTax(msg.sender, amount);

        _transfer(msg.sender, to, newTransferAmount);
        return true;
    }
    
    function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
        // Sanity Checks
        require(amount > 0, "ERC20: transfer amount cannot be Zero");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        address spender = _msgSender();
        _spendAllowance(from, spender, amount);

        uint256 newTransferAmount = amount;
        
        // Bypasser if the call comes from Uniswap Periphery contracts
        if(!isPoolPeriphery[msg.sender]){
            newTransferAmount = _deductTax(from, amount);
        }
        
        _transfer(from, to, newTransferAmount);
        return true;
    }

    function _deductTax(address from, uint256 amount) internal returns(uint256) {
        uint256 taxAmount;

        // Gas Saving
        address _marketingWallet = marketingWallet;
        address _devWallet = devWallet;

        if(isPoolAddress[msg.sender] && from == msg.sender){            // from == msg.sender is to check if this is transfer() call
            // Buy Tax of 6%
            uint256 currentBuyTax = buyTax;

            taxAmount = (amount * currentBuyTax)/100;

            uint256 splittedTaxAmount = taxAmount/2;
            _balances[_marketingWallet] += splittedTaxAmount;
            _balances[_devWallet] += splittedTaxAmount;

            emit DeductedBuyTax(from, currentBuyTax, taxAmount);
        } else {
            // Transfer Tax of 1%
            uint256 currentTransferTax = transferTax;

            taxAmount = (amount * currentTransferTax)/100;
            _balances[_marketingWallet] += taxAmount;
            emit DeductedTransferTax(from, currentTransferTax, taxAmount);
        }

        _balances[from] -= taxAmount;
   
        return (amount - taxAmount);
    }

    ///////////////////////////////////////////////////
    //////////    Update Functions        ////////////
    /////////////////////////////////////////////////
    function updateDevWallet(address newWalletAddress) external onlyOwner {
        devWallet = newWalletAddress;
    }

    function updateMarketingWallet(address newWalletAddress) external onlyOwner {
        marketingWallet = newWalletAddress;
    }

    function updateBuyTax(uint256 newBuyTax) external onlyOwner {
        buyTax = newBuyTax;
    }

    function updateTransferTax(uint256 newTransferTax) external onlyOwner {
        transferTax = newTransferTax;
    }


    // These functions are used only once while creating any new uniswapV3 Pool
    function addPoolAddress(address _poolAddress) external onlyOwner {
        isPoolAddress[_poolAddress] = true;
    }
    function addPoolPeriphery(address poolPeripheryAddress) public onlyOwner{
        isPoolPeriphery[poolPeripheryAddress] = true;
    }
}

File 3 of 3 : ERC20Modified.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
    }

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"devWallet","type":"address"},{"internalType":"address","name":"marketingWallet","type":"address"},{"internalType":"address","name":"initialPeriphery","type":"address"},{"internalType":"address","name":"permitPeriphery","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":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"creator","type":"address"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"description","type":"string"},{"indexed":false,"internalType":"string","name":"imageUri","type":"string"}],"name":"CreatedConspiracy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"taxPercentage","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"DeductedBuyTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"taxPercentage","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"DeductedTransferTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"downvoter","type":"address"},{"indexed":false,"internalType":"uint256","name":"conspiracyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"latestUpvotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"latestDownvotes","type":"uint256"}],"name":"Downvoted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"upvoter","type":"address"},{"indexed":false,"internalType":"uint256","name":"conspiracyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"latestUpvotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"latestDownvotes","type":"uint256"}],"name":"Upvoted","type":"event"},{"inputs":[{"internalType":"address","name":"_poolAddress","type":"address"}],"name":"addPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolPeripheryAddress","type":"address"}],"name":"addPoolPeriphery","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":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"imageUri","type":"string"}],"name":"createConspiracy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createConspiracyCost","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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"conspiracyId","type":"uint256"}],"name":"downvote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllConspiracies","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"imageUri","type":"string"},{"internalType":"uint256","name":"upvotes","type":"uint256"},{"internalType":"uint256","name":"downvotes","type":"uint256"}],"internalType":"struct ConspiracyDAO.Conspiracy[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"conspiracyId","type":"uint256"}],"name":"getConspiracy","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"imageUri","type":"string"},{"internalType":"uint256","name":"upvotes","type":"uint256"},{"internalType":"uint256","name":"downvotes","type":"uint256"}],"internalType":"struct ConspiracyDAO.Conspiracy","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"conspiracyId","type":"uint256"}],"name":"getUsersVoteFor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"","type":"address"}],"name":"isPoolAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPoolPeriphery","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCreateConspiracyCost","type":"uint256"}],"name":"setCreateConspiracyCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWalletAddress","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWalletAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTransferTax","type":"uint256"}],"name":"updateTransferTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"conspiracyId","type":"uint256"}],"name":"upvote","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260068055600160075568056bc75e2d63100000600c553480156200002757600080fd5b50604051620045fe380380620045fe83398181016040528101906200004d919062000571565b83836040518060400160405280600e81526020017f436f6e737069726163792044414f0000000000000000000000000000000000008152506040518060400160405280600481526020017f4344414f00000000000000000000000000000000000000000000000000000000815250620000db620000cf620001d060201b60201c565b620001d860201b60201c565b8160049081620000ec91906200085d565b508060059081620000fe91906200085d565b50505062000120336c01431e0fae6d7217caa00000006200029c60201b60201c565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620001b582620003e260201b60201c565b620001c681620003e260201b60201c565b5050505062000ad1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200030e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030590620009a5565b60405180910390fd5b8060036000828254620003229190620009f6565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d6919062000a42565b60405180910390a35050565b620003f26200044d60201b60201c565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6200045d620001d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000483620004de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d39062000aaf565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000539826200050c565b9050919050565b6200054b816200052c565b81146200055757600080fd5b50565b6000815190506200056b8162000540565b92915050565b600080600080608085870312156200058e576200058d62000507565b5b60006200059e878288016200055a565b9450506020620005b1878288016200055a565b9350506040620005c4878288016200055a565b9250506060620005d7878288016200055a565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066557607f821691505b6020821081036200067b576200067a6200061d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a6565b620006f18683620006a6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200073e62000738620007328462000709565b62000713565b62000709565b9050919050565b6000819050919050565b6200075a836200071d565b62000772620007698262000745565b848454620006b3565b825550505050565b600090565b620007896200077a565b620007968184846200074f565b505050565b5b81811015620007be57620007b26000826200077f565b6001810190506200079c565b5050565b601f8211156200080d57620007d78162000681565b620007e28462000696565b81016020851015620007f2578190505b6200080a620008018562000696565b8301826200079b565b50505b505050565b600082821c905092915050565b6000620008326000198460080262000812565b1980831691505092915050565b60006200084d83836200081f565b9150826002028217905092915050565b6200086882620005e3565b67ffffffffffffffff811115620008845762000883620005ee565b5b6200089082546200064c565b6200089d828285620007c2565b600060209050601f831160018114620008d55760008415620008c0578287015190505b620008cc85826200083f565b8655506200093c565b601f198416620008e58662000681565b60005b828110156200090f57848901518255600182019150602085019450602081019050620008e8565b868310156200092f57848901516200092b601f8916826200081f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200098d601f8362000944565b91506200099a8262000955565b602082019050919050565b60006020820190508181036000830152620009c0816200097e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a038262000709565b915062000a108362000709565b925082820190508082111562000a2b5762000a2a620009c7565b5b92915050565b62000a3c8162000709565b82525050565b600060208201905062000a59600083018462000a31565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a9760208362000944565b915062000aa48262000a5f565b602082019050919050565b6000602082019050818103600083015262000aca8162000a88565b9050919050565b613b1d8062000ae16000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806375f0a8741161011a578063af774db2116100ad578063e77f35c41161007c578063e77f35c414610601578063e7c37eef1461061d578063ec17d5dc1461064d578063f2fde38b1461066b578063f31fdad41461068757610206565b8063af774db214610555578063c5cb44af14610585578063dcbaf1d4146105b5578063dd62ed3e146105d157610206565b806395d89b41116100e957806395d89b41146104bb578063a457c2d7146104d9578063a9059cbb14610509578063aacebbe31461053957610206565b806375f0a874146104435780638124f7ac146104615780638da5cb5b1461047f5780638ea5220f1461049d57610206565b8063395093511161019d5780634f7041a51161016c5780634f7041a5146103b1578063555952a2146103cf5780635a308510146103ed57806370a0823114610409578063715018a61461043957610206565b8063395093511461032d578063434998441461035d578063436d33401461037957806349272fcf1461039557610206565b80631816467f116101d95780631816467f1461029357806323b872dd146102af5780632842d757146102df578063313ce5671461030f57610206565b806301ddf0701461020b57806306fdde0314610227578063095ea7b31461024557806318160ddd14610275575b600080fd5b6102256004803603810190610220919061271b565b6106a3565b005b61022f610922565b60405161023c91906127d8565b60405180910390f35b61025f600480360381019061025a9190612858565b6109b4565b60405161026c91906128b3565b60405180910390f35b61027d6109d7565b60405161028a91906128dd565b60405180910390f35b6102ad60048036038101906102a891906128f8565b6109e1565b005b6102c960048036038101906102c49190612925565b610a2d565b6040516102d691906128b3565b60405180910390f35b6102f960048036038101906102f491906128f8565b610bbd565b60405161030691906128b3565b60405180910390f35b610317610bdd565b6040516103249190612994565b60405180910390f35b61034760048036038101906103429190612858565b610be6565b60405161035491906128b3565b60405180910390f35b610377600480360381019061037291906128f8565b610c1d565b005b610393600480360381019061038e919061271b565b610c80565b005b6103af60048036038101906103aa91906128f8565b610c92565b005b6103b9610cf5565b6040516103c691906128dd565b60405180910390f35b6103d7610cfb565b6040516103e491906128dd565b60405180910390f35b61040760048036038101906104029190612a14565b610d01565b005b610423600480360381019061041e91906128f8565b610fb1565b60405161043091906128dd565b60405180910390f35b610441610ffa565b005b61044b61100e565b6040516104589190612ad7565b60405180910390f35b610469611034565b60405161047691906128dd565b60405180910390f35b61048761103a565b6040516104949190612ad7565b60405180910390f35b6104a5611063565b6040516104b29190612ad7565b60405180910390f35b6104c3611089565b6040516104d091906127d8565b60405180910390f35b6104f360048036038101906104ee9190612858565b61111b565b60405161050091906128b3565b60405180910390f35b610523600480360381019061051e9190612858565b611192565b60405161053091906128b3565b60405180910390f35b610553600480360381019061054e91906128f8565b6112b4565b005b61056f600480360381019061056a91906128f8565b611300565b60405161057c91906128b3565b60405180910390f35b61059f600480360381019061059a919061271b565b611320565b6040516105ac91906127d8565b60405180910390f35b6105cf60048036038101906105ca919061271b565b6114a8565b005b6105eb60048036038101906105e69190612af2565b6114cd565b6040516105f891906128dd565b60405180910390f35b61061b6004803603810190610616919061271b565b611554565b005b6106376004803603810190610632919061271b565b611566565b6040516106449190612c44565b60405180910390f35b6106556117cc565b6040516106629190612dd2565b60405180910390f35b610685600480360381019061068091906128f8565b611a55565b005b6106a1600480360381019061069c919061271b565b611ad8565b005b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff1615610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990612e66565b60405180910390fd5b60003390506000600d848154811061075d5761075c612e86565b5b90600052602060002090600702019050600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060009054906101000a900460ff1615610854576000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff02191690831515021790555080600601600081548092919061084e90612ee4565b91905055505b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff0219169083151502179055508060050160008154809291906108d290612f0d565b91905055507f0dee9d6ba58de7f7556f426a604a9648b53a0d234b4d7dda2cfd96cbfea5e1a18285836005015484600601546040516109149493929190612f55565b60405180910390a150505050565b60606004805461093190612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90612fc9565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b6000806109bf611d57565b90506109cc818585611d5f565b600191505092915050565b6000600354905090565b6109e9611f28565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808211610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061306c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad7906130fe565b60405180910390fd5b81610aea85610fb1565b1015610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290613190565b60405180910390fd5b6000610b35611d57565b9050610b42858285611fa6565b6000839050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ba557610ba28685612032565b90505b610bb0868683612361565b6001925050509392505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b600080610bf1611d57565b9050610c12818585610c0385896114cd565b610c0d91906131b0565b611d5f565b600191505092915050565b610c25611f28565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c88611f28565b8060068190555050565b610c9a611f28565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60065481565b600c5481565b6000339050600c54610d1282610fb1565b1015610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613256565b60405180910390fd5b6000600d80549050905060006040518060e001604052808381526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050815260200188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050815260200186868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081526020016000815260200160008152509050600d8190806001815401808255809150506001900390600052602060002090600702016000909190919091506000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002019081610f0a9190613451565b506060820151816003019081610f209190613451565b506080820151816004019081610f369190613451565b5060a0820151816005015560c0820151816006015550507ffea152e4fcb2210999755fe1ad89d1631798a6bd95bd9f6bee6869e02615ac2c82848b8b8b8b8b8b604051610f8a98979695949392919061355f565b60405180910390a1610fa683610f9e61103a565b600c54612361565b505050505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611002611f28565b61100c60006125c4565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606005805461109890612fc9565b80601f01602080910402602001604051908101604052809291908181526020018280546110c490612fc9565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b5050505050905090565b600080611126611d57565b9050600061113482866114cd565b905083811015611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111709061363f565b60405180910390fd5b6111868286868403611d5f565b60019250505092915050565b60008082116111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd9061306c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c906130fe565b60405180910390fd5b8161124f33610fb1565b1015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790613190565b60405180910390fd5b600061129c3384612032565b90506112a9338583612361565b600191505092915050565b6112bc611f28565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60606000339050600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060009054906101000a900460ff16156113c8576040518060400160405280600781526020017f5570766f746564000000000000000000000000000000000000000000000000008152509150506114a3565b600f60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060009054906101000a900460ff1615611469576040518060400160405280600981526020017f446f776e766f74656400000000000000000000000000000000000000000000008152509150506114a3565b6040518060400160405280600981526020017f4e6f7420766f74656400000000000000000000000000000000000000000000008152509150505b919050565b6114b0611f28565b670de0b6b3a7640000816114c4919061365f565b600c8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61155c611f28565b8060078190555050565b61156e612688565b600d828154811061158257611581612e86565b5b90600052602060002090600702016040518060e0016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201805461160b90612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461163790612fc9565b80156116845780601f1061165957610100808354040283529160200191611684565b820191906000526020600020905b81548152906001019060200180831161166757829003601f168201915b5050505050815260200160038201805461169d90612fc9565b80601f01602080910402602001604051908101604052809291908181526020018280546116c990612fc9565b80156117165780601f106116eb57610100808354040283529160200191611716565b820191906000526020600020905b8154815290600101906020018083116116f957829003601f168201915b5050505050815260200160048201805461172f90612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461175b90612fc9565b80156117a85780601f1061177d576101008083540402835291602001916117a8565b820191906000526020600020905b81548152906001019060200180831161178b57829003601f168201915b50505050508152602001600582015481526020016006820154815250509050919050565b6060600d805480602002602001604051908101604052809291908181526020016000905b82821015611a4c57838290600052602060002090600702016040518060e0016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201805461188390612fc9565b80601f01602080910402602001604051908101604052809291908181526020018280546118af90612fc9565b80156118fc5780601f106118d1576101008083540402835291602001916118fc565b820191906000526020600020905b8154815290600101906020018083116118df57829003601f168201915b5050505050815260200160038201805461191590612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461194190612fc9565b801561198e5780601f106119635761010080835404028352916020019161198e565b820191906000526020600020905b81548152906001019060200180831161197157829003601f168201915b505050505081526020016004820180546119a790612fc9565b80601f01602080910402602001604051908101604052809291908181526020018280546119d390612fc9565b8015611a205780601f106119f557610100808354040283529160200191611a20565b820191906000526020600020905b815481529060010190602001808311611a0357829003601f168201915b5050505050815260200160058201548152602001600682015481525050815260200190600101906117f0565b50505050905090565b611a5d611f28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390613713565b60405180910390fd5b611ad5816125c4565b50565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff1615611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e906137a5565b60405180910390fd5b60003390506000600d8481548110611b9257611b91612e86565b5b90600052602060002090600702019050600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060009054906101000a900460ff1615611c89576000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff021916908315150217905550806005016000815480929190611c8390612ee4565b91905055505b6001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff021916908315150217905550806006016000815480929190611d0790612f0d565b91905055507f3761f389501a93b3c91e208547a15b10a2684ce514ab74a64e51d9266d1624d5828583600501548460060154604051611d499493929190612f55565b60405180910390a150505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc590613837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e34906138c9565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f1b91906128dd565b60405180910390a3505050565b611f30611d57565b73ffffffffffffffffffffffffffffffffffffffff16611f4e61103a565b73ffffffffffffffffffffffffffffffffffffffff1614611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90613935565b60405180910390fd5b565b6000611fb284846114cd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461202c578181101561201e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612015906139a1565b60405180910390fd5b61202b8484848403611d5f565b5b50505050565b6000806000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561210757503373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15612236576000600654905060648187612121919061365f565b61212b91906139f0565b9350600060028561213c91906139f0565b905080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218d91906131b0565b9250508190555080600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e391906131b0565b9250508190555084828973ffffffffffffffffffffffffffffffffffffffff167f7808936470436b462fc55712fdca1fb1ef8d80e9574120b978aca455b66fcea860405160405180910390a450506122f4565b600060075490506064818761224b919061365f565b61225591906139f0565b935083600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a691906131b0565b9250508190555083818873ffffffffffffffffffffffffffffffffffffffff167fffa932ce5bfa33bcac4764bcef407be89388c18ed7434f66eaabdebf99a938ef60405160405180910390a4505b82600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123439190613a21565b9250508190555082856123569190613a21565b935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613ac7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361243f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612436906130fe565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90613190565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125b691906128dd565b60405180910390a350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6040518060e0016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160608152602001606081526020016060815260200160008152602001600081525090565b600080fd5b600080fd5b6000819050919050565b6126f8816126e5565b811461270357600080fd5b50565b600081359050612715816126ef565b92915050565b600060208284031215612731576127306126db565b5b600061273f84828501612706565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612782578082015181840152602081019050612767565b60008484015250505050565b6000601f19601f8301169050919050565b60006127aa82612748565b6127b48185612753565b93506127c4818560208601612764565b6127cd8161278e565b840191505092915050565b600060208201905081810360008301526127f2818461279f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612825826127fa565b9050919050565b6128358161281a565b811461284057600080fd5b50565b6000813590506128528161282c565b92915050565b6000806040838503121561286f5761286e6126db565b5b600061287d85828601612843565b925050602061288e85828601612706565b9150509250929050565b60008115159050919050565b6128ad81612898565b82525050565b60006020820190506128c860008301846128a4565b92915050565b6128d7816126e5565b82525050565b60006020820190506128f260008301846128ce565b92915050565b60006020828403121561290e5761290d6126db565b5b600061291c84828501612843565b91505092915050565b60008060006060848603121561293e5761293d6126db565b5b600061294c86828701612843565b935050602061295d86828701612843565b925050604061296e86828701612706565b9150509250925092565b600060ff82169050919050565b61298e81612978565b82525050565b60006020820190506129a96000830184612985565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126129d4576129d36129af565b5b8235905067ffffffffffffffff8111156129f1576129f06129b4565b5b602083019150836001820283011115612a0d57612a0c6129b9565b5b9250929050565b60008060008060008060608789031215612a3157612a306126db565b5b600087013567ffffffffffffffff811115612a4f57612a4e6126e0565b5b612a5b89828a016129be565b9650965050602087013567ffffffffffffffff811115612a7e57612a7d6126e0565b5b612a8a89828a016129be565b9450945050604087013567ffffffffffffffff811115612aad57612aac6126e0565b5b612ab989828a016129be565b92509250509295509295509295565b612ad18161281a565b82525050565b6000602082019050612aec6000830184612ac8565b92915050565b60008060408385031215612b0957612b086126db565b5b6000612b1785828601612843565b9250506020612b2885828601612843565b9150509250929050565b612b3b816126e5565b82525050565b612b4a8161281a565b82525050565b600082825260208201905092915050565b6000612b6c82612748565b612b768185612b50565b9350612b86818560208601612764565b612b8f8161278e565b840191505092915050565b600060e083016000830151612bb26000860182612b32565b506020830151612bc56020860182612b41565b5060408301518482036040860152612bdd8282612b61565b91505060608301518482036060860152612bf78282612b61565b91505060808301518482036080860152612c118282612b61565b91505060a0830151612c2660a0860182612b32565b5060c0830151612c3960c0860182612b32565b508091505092915050565b60006020820190508181036000830152612c5e8184612b9a565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600060e083016000830151612caa6000860182612b32565b506020830151612cbd6020860182612b41565b5060408301518482036040860152612cd58282612b61565b91505060608301518482036060860152612cef8282612b61565b91505060808301518482036080860152612d098282612b61565b91505060a0830151612d1e60a0860182612b32565b5060c0830151612d3160c0860182612b32565b508091505092915050565b6000612d488383612c92565b905092915050565b6000602082019050919050565b6000612d6882612c66565b612d728185612c71565b935083602082028501612d8485612c82565b8060005b85811015612dc05784840389528151612da18582612d3c565b9450612dac83612d50565b925060208a01995050600181019050612d88565b50829750879550505050505092915050565b60006020820190508181036000830152612dec8184612d5d565b905092915050565b7f596f75206861766520616c726561647920557064766f7465642074686973206360008201527f6f6e737069726163790000000000000000000000000000000000000000000000602082015250565b6000612e50602983612753565b9150612e5b82612df4565b604082019050919050565b60006020820190508181036000830152612e7f81612e43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612eef826126e5565b915060008203612f0257612f01612eb5565b5b600182039050919050565b6000612f18826126e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4a57612f49612eb5565b5b600182019050919050565b6000608082019050612f6a6000830187612ac8565b612f7760208301866128ce565b612f8460408301856128ce565b612f9160608301846128ce565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fe157607f821691505b602082108103612ff457612ff3612f9a565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742063616e6e6f7420626560008201527f205a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613056602583612753565b915061306182612ffa565b604082019050919050565b6000602082019050818103600083015261308581613049565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130e8602383612753565b91506130f38261308c565b604082019050919050565b60006020820190508181036000830152613117816130db565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061317a602683612753565b91506131858261311e565b604082019050919050565b600060208201905081810360008301526131a98161316d565b9050919050565b60006131bb826126e5565b91506131c6836126e5565b92508282019050808211156131de576131dd612eb5565b5b92915050565b7f596f7572204344414f20546f6b656e2042616c616e636520697320746f6f206c60008201527f6f7720746f20637265617465206120636f6e7370697261637921000000000000602082015250565b6000613240603a83612753565b915061324b826131e4565b604082019050919050565b6000602082019050818103600083015261326f81613233565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ca565b61331186836132ca565b95508019841693508086168417925050509392505050565b6000819050919050565b600061334e613349613344846126e5565b613329565b6126e5565b9050919050565b6000819050919050565b61336883613333565b61337c61337482613355565b8484546132d7565b825550505050565b600090565b613391613384565b61339c81848461335f565b505050565b5b818110156133c0576133b5600082613389565b6001810190506133a2565b5050565b601f821115613405576133d6816132a5565b6133df846132ba565b810160208510156133ee578190505b6134026133fa856132ba565b8301826133a1565b50505b505050565b600082821c905092915050565b60006134286000198460080261340a565b1980831691505092915050565b60006134418383613417565b9150826002028217905092915050565b61345a82612748565b67ffffffffffffffff81111561347357613472613276565b5b61347d8254612fc9565b6134888282856133c4565b600060209050601f8311600181146134bb57600084156134a9578287015190505b6134b38582613435565b86555061351b565b601f1984166134c9866132a5565b60005b828110156134f1578489015182556001820191506020850194506020810190506134cc565b8683101561350e578489015161350a601f891682613417565b8355505b6001600288020188555050505b505050505050565b82818337600083830152505050565b600061353e8385612753565b935061354b838584613523565b6135548361278e565b840190509392505050565b600060a082019050613574600083018b6128ce565b613581602083018a612ac8565b818103604083015261359481888a613532565b905081810360608301526135a9818688613532565b905081810360808301526135be818486613532565b90509998505050505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613629602583612753565b9150613634826135cd565b604082019050919050565b600060208201905081810360008301526136588161361c565b9050919050565b600061366a826126e5565b9150613675836126e5565b9250828202613683816126e5565b9150828204841483151761369a57613699612eb5565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136fd602683612753565b9150613708826136a1565b604082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f596f75206861766520616c726561647920446f776e766f74656420746869732060008201527f636f6e7370697261637900000000000000000000000000000000000000000000602082015250565b600061378f602a83612753565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613821602483612753565b915061382c826137c5565b604082019050919050565b6000602082019050818103600083015261385081613814565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006138b3602283612753565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061391f602083612753565b915061392a826138e9565b602082019050919050565b6000602082019050818103600083015261394e81613912565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061398b601d83612753565b915061399682613955565b602082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139fb826126e5565b9150613a06836126e5565b925082613a1657613a156139c1565b5b828204905092915050565b6000613a2c826126e5565b9150613a37836126e5565b9250828203905081811115613a4f57613a4e612eb5565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613ab1602583612753565b9150613abc82613a55565b604082019050919050565b60006020820190508181036000830152613ae081613aa4565b905091905056fea2646970667358221220759e85389997efa5d928f0dc5bdf0ca26bec7eeefd8de7b6ade15ea20159774764736f6c63430008120033000000000000000000000000343bfcc99f7aeeb9da7450e10f2fdb4393d6ed900000000000000000000000004cfe91e24257cbe21ec7a2be489b37643f159d74000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806375f0a8741161011a578063af774db2116100ad578063e77f35c41161007c578063e77f35c414610601578063e7c37eef1461061d578063ec17d5dc1461064d578063f2fde38b1461066b578063f31fdad41461068757610206565b8063af774db214610555578063c5cb44af14610585578063dcbaf1d4146105b5578063dd62ed3e146105d157610206565b806395d89b41116100e957806395d89b41146104bb578063a457c2d7146104d9578063a9059cbb14610509578063aacebbe31461053957610206565b806375f0a874146104435780638124f7ac146104615780638da5cb5b1461047f5780638ea5220f1461049d57610206565b8063395093511161019d5780634f7041a51161016c5780634f7041a5146103b1578063555952a2146103cf5780635a308510146103ed57806370a0823114610409578063715018a61461043957610206565b8063395093511461032d578063434998441461035d578063436d33401461037957806349272fcf1461039557610206565b80631816467f116101d95780631816467f1461029357806323b872dd146102af5780632842d757146102df578063313ce5671461030f57610206565b806301ddf0701461020b57806306fdde0314610227578063095ea7b31461024557806318160ddd14610275575b600080fd5b6102256004803603810190610220919061271b565b6106a3565b005b61022f610922565b60405161023c91906127d8565b60405180910390f35b61025f600480360381019061025a9190612858565b6109b4565b60405161026c91906128b3565b60405180910390f35b61027d6109d7565b60405161028a91906128dd565b60405180910390f35b6102ad60048036038101906102a891906128f8565b6109e1565b005b6102c960048036038101906102c49190612925565b610a2d565b6040516102d691906128b3565b60405180910390f35b6102f960048036038101906102f491906128f8565b610bbd565b60405161030691906128b3565b60405180910390f35b610317610bdd565b6040516103249190612994565b60405180910390f35b61034760048036038101906103429190612858565b610be6565b60405161035491906128b3565b60405180910390f35b610377600480360381019061037291906128f8565b610c1d565b005b610393600480360381019061038e919061271b565b610c80565b005b6103af60048036038101906103aa91906128f8565b610c92565b005b6103b9610cf5565b6040516103c691906128dd565b60405180910390f35b6103d7610cfb565b6040516103e491906128dd565b60405180910390f35b61040760048036038101906104029190612a14565b610d01565b005b610423600480360381019061041e91906128f8565b610fb1565b60405161043091906128dd565b60405180910390f35b610441610ffa565b005b61044b61100e565b6040516104589190612ad7565b60405180910390f35b610469611034565b60405161047691906128dd565b60405180910390f35b61048761103a565b6040516104949190612ad7565b60405180910390f35b6104a5611063565b6040516104b29190612ad7565b60405180910390f35b6104c3611089565b6040516104d091906127d8565b60405180910390f35b6104f360048036038101906104ee9190612858565b61111b565b60405161050091906128b3565b60405180910390f35b610523600480360381019061051e9190612858565b611192565b60405161053091906128b3565b60405180910390f35b610553600480360381019061054e91906128f8565b6112b4565b005b61056f600480360381019061056a91906128f8565b611300565b60405161057c91906128b3565b60405180910390f35b61059f600480360381019061059a919061271b565b611320565b6040516105ac91906127d8565b60405180910390f35b6105cf60048036038101906105ca919061271b565b6114a8565b005b6105eb60048036038101906105e69190612af2565b6114cd565b6040516105f891906128dd565b60405180910390f35b61061b6004803603810190610616919061271b565b611554565b005b6106376004803603810190610632919061271b565b611566565b6040516106449190612c44565b60405180910390f35b6106556117cc565b6040516106629190612dd2565b60405180910390f35b610685600480360381019061068091906128f8565b611a55565b005b6106a1600480360381019061069c919061271b565b611ad8565b005b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff1615610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990612e66565b60405180910390fd5b60003390506000600d848154811061075d5761075c612e86565b5b90600052602060002090600702019050600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060009054906101000a900460ff1615610854576000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff02191690831515021790555080600601600081548092919061084e90612ee4565b91905055505b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff0219169083151502179055508060050160008154809291906108d290612f0d565b91905055507f0dee9d6ba58de7f7556f426a604a9648b53a0d234b4d7dda2cfd96cbfea5e1a18285836005015484600601546040516109149493929190612f55565b60405180910390a150505050565b60606004805461093190612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90612fc9565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b6000806109bf611d57565b90506109cc818585611d5f565b600191505092915050565b6000600354905090565b6109e9611f28565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808211610a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a689061306c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad7906130fe565b60405180910390fd5b81610aea85610fb1565b1015610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290613190565b60405180910390fd5b6000610b35611d57565b9050610b42858285611fa6565b6000839050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ba557610ba28685612032565b90505b610bb0868683612361565b6001925050509392505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b600080610bf1611d57565b9050610c12818585610c0385896114cd565b610c0d91906131b0565b611d5f565b600191505092915050565b610c25611f28565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c88611f28565b8060068190555050565b610c9a611f28565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60065481565b600c5481565b6000339050600c54610d1282610fb1565b1015610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613256565b60405180910390fd5b6000600d80549050905060006040518060e001604052808381526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018a8a8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050815260200188888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050815260200186868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081526020016000815260200160008152509050600d8190806001815401808255809150506001900390600052602060002090600702016000909190919091506000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816002019081610f0a9190613451565b506060820151816003019081610f209190613451565b506080820151816004019081610f369190613451565b5060a0820151816005015560c0820151816006015550507ffea152e4fcb2210999755fe1ad89d1631798a6bd95bd9f6bee6869e02615ac2c82848b8b8b8b8b8b604051610f8a98979695949392919061355f565b60405180910390a1610fa683610f9e61103a565b600c54612361565b505050505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611002611f28565b61100c60006125c4565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606005805461109890612fc9565b80601f01602080910402602001604051908101604052809291908181526020018280546110c490612fc9565b80156111115780601f106110e657610100808354040283529160200191611111565b820191906000526020600020905b8154815290600101906020018083116110f457829003601f168201915b5050505050905090565b600080611126611d57565b9050600061113482866114cd565b905083811015611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111709061363f565b60405180910390fd5b6111868286868403611d5f565b60019250505092915050565b60008082116111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd9061306c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c906130fe565b60405180910390fd5b8161124f33610fb1565b1015611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790613190565b60405180910390fd5b600061129c3384612032565b90506112a9338583612361565b600191505092915050565b6112bc611f28565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60606000339050600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060009054906101000a900460ff16156113c8576040518060400160405280600781526020017f5570766f746564000000000000000000000000000000000000000000000000008152509150506114a3565b600f60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060009054906101000a900460ff1615611469576040518060400160405280600981526020017f446f776e766f74656400000000000000000000000000000000000000000000008152509150506114a3565b6040518060400160405280600981526020017f4e6f7420766f74656400000000000000000000000000000000000000000000008152509150505b919050565b6114b0611f28565b670de0b6b3a7640000816114c4919061365f565b600c8190555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61155c611f28565b8060078190555050565b61156e612688565b600d828154811061158257611581612e86565b5b90600052602060002090600702016040518060e0016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201805461160b90612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461163790612fc9565b80156116845780601f1061165957610100808354040283529160200191611684565b820191906000526020600020905b81548152906001019060200180831161166757829003601f168201915b5050505050815260200160038201805461169d90612fc9565b80601f01602080910402602001604051908101604052809291908181526020018280546116c990612fc9565b80156117165780601f106116eb57610100808354040283529160200191611716565b820191906000526020600020905b8154815290600101906020018083116116f957829003601f168201915b5050505050815260200160048201805461172f90612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461175b90612fc9565b80156117a85780601f1061177d576101008083540402835291602001916117a8565b820191906000526020600020905b81548152906001019060200180831161178b57829003601f168201915b50505050508152602001600582015481526020016006820154815250509050919050565b6060600d805480602002602001604051908101604052809291908181526020016000905b82821015611a4c57838290600052602060002090600702016040518060e0016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201805461188390612fc9565b80601f01602080910402602001604051908101604052809291908181526020018280546118af90612fc9565b80156118fc5780601f106118d1576101008083540402835291602001916118fc565b820191906000526020600020905b8154815290600101906020018083116118df57829003601f168201915b5050505050815260200160038201805461191590612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461194190612fc9565b801561198e5780601f106119635761010080835404028352916020019161198e565b820191906000526020600020905b81548152906001019060200180831161197157829003601f168201915b505050505081526020016004820180546119a790612fc9565b80601f01602080910402602001604051908101604052809291908181526020018280546119d390612fc9565b8015611a205780601f106119f557610100808354040283529160200191611a20565b820191906000526020600020905b815481529060010190602001808311611a0357829003601f168201915b5050505050815260200160058201548152602001600682015481525050815260200190600101906117f0565b50505050905090565b611a5d611f28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390613713565b60405180910390fd5b611ad5816125c4565b50565b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff1615611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e906137a5565b60405180910390fd5b60003390506000600d8481548110611b9257611b91612e86565b5b90600052602060002090600702019050600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060009054906101000a900460ff1615611c89576000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff021916908315150217905550806005016000815480929190611c8390612ee4565b91905055505b6001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff021916908315150217905550806006016000815480929190611d0790612f0d565b91905055507f3761f389501a93b3c91e208547a15b10a2684ce514ab74a64e51d9266d1624d5828583600501548460060154604051611d499493929190612f55565b60405180910390a150505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc590613837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e34906138c9565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f1b91906128dd565b60405180910390a3505050565b611f30611d57565b73ffffffffffffffffffffffffffffffffffffffff16611f4e61103a565b73ffffffffffffffffffffffffffffffffffffffff1614611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90613935565b60405180910390fd5b565b6000611fb284846114cd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461202c578181101561201e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612015906139a1565b60405180910390fd5b61202b8484848403611d5f565b5b50505050565b6000806000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561210757503373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15612236576000600654905060648187612121919061365f565b61212b91906139f0565b9350600060028561213c91906139f0565b905080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218d91906131b0565b9250508190555080600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e391906131b0565b9250508190555084828973ffffffffffffffffffffffffffffffffffffffff167f7808936470436b462fc55712fdca1fb1ef8d80e9574120b978aca455b66fcea860405160405180910390a450506122f4565b600060075490506064818761224b919061365f565b61225591906139f0565b935083600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a691906131b0565b9250508190555083818873ffffffffffffffffffffffffffffffffffffffff167fffa932ce5bfa33bcac4764bcef407be89388c18ed7434f66eaabdebf99a938ef60405160405180910390a4505b82600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123439190613a21565b9250508190555082856123569190613a21565b935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613ac7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361243f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612436906130fe565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90613190565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125b691906128dd565b60405180910390a350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6040518060e0016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160608152602001606081526020016060815260200160008152602001600081525090565b600080fd5b600080fd5b6000819050919050565b6126f8816126e5565b811461270357600080fd5b50565b600081359050612715816126ef565b92915050565b600060208284031215612731576127306126db565b5b600061273f84828501612706565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612782578082015181840152602081019050612767565b60008484015250505050565b6000601f19601f8301169050919050565b60006127aa82612748565b6127b48185612753565b93506127c4818560208601612764565b6127cd8161278e565b840191505092915050565b600060208201905081810360008301526127f2818461279f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612825826127fa565b9050919050565b6128358161281a565b811461284057600080fd5b50565b6000813590506128528161282c565b92915050565b6000806040838503121561286f5761286e6126db565b5b600061287d85828601612843565b925050602061288e85828601612706565b9150509250929050565b60008115159050919050565b6128ad81612898565b82525050565b60006020820190506128c860008301846128a4565b92915050565b6128d7816126e5565b82525050565b60006020820190506128f260008301846128ce565b92915050565b60006020828403121561290e5761290d6126db565b5b600061291c84828501612843565b91505092915050565b60008060006060848603121561293e5761293d6126db565b5b600061294c86828701612843565b935050602061295d86828701612843565b925050604061296e86828701612706565b9150509250925092565b600060ff82169050919050565b61298e81612978565b82525050565b60006020820190506129a96000830184612985565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126129d4576129d36129af565b5b8235905067ffffffffffffffff8111156129f1576129f06129b4565b5b602083019150836001820283011115612a0d57612a0c6129b9565b5b9250929050565b60008060008060008060608789031215612a3157612a306126db565b5b600087013567ffffffffffffffff811115612a4f57612a4e6126e0565b5b612a5b89828a016129be565b9650965050602087013567ffffffffffffffff811115612a7e57612a7d6126e0565b5b612a8a89828a016129be565b9450945050604087013567ffffffffffffffff811115612aad57612aac6126e0565b5b612ab989828a016129be565b92509250509295509295509295565b612ad18161281a565b82525050565b6000602082019050612aec6000830184612ac8565b92915050565b60008060408385031215612b0957612b086126db565b5b6000612b1785828601612843565b9250506020612b2885828601612843565b9150509250929050565b612b3b816126e5565b82525050565b612b4a8161281a565b82525050565b600082825260208201905092915050565b6000612b6c82612748565b612b768185612b50565b9350612b86818560208601612764565b612b8f8161278e565b840191505092915050565b600060e083016000830151612bb26000860182612b32565b506020830151612bc56020860182612b41565b5060408301518482036040860152612bdd8282612b61565b91505060608301518482036060860152612bf78282612b61565b91505060808301518482036080860152612c118282612b61565b91505060a0830151612c2660a0860182612b32565b5060c0830151612c3960c0860182612b32565b508091505092915050565b60006020820190508181036000830152612c5e8184612b9a565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600060e083016000830151612caa6000860182612b32565b506020830151612cbd6020860182612b41565b5060408301518482036040860152612cd58282612b61565b91505060608301518482036060860152612cef8282612b61565b91505060808301518482036080860152612d098282612b61565b91505060a0830151612d1e60a0860182612b32565b5060c0830151612d3160c0860182612b32565b508091505092915050565b6000612d488383612c92565b905092915050565b6000602082019050919050565b6000612d6882612c66565b612d728185612c71565b935083602082028501612d8485612c82565b8060005b85811015612dc05784840389528151612da18582612d3c565b9450612dac83612d50565b925060208a01995050600181019050612d88565b50829750879550505050505092915050565b60006020820190508181036000830152612dec8184612d5d565b905092915050565b7f596f75206861766520616c726561647920557064766f7465642074686973206360008201527f6f6e737069726163790000000000000000000000000000000000000000000000602082015250565b6000612e50602983612753565b9150612e5b82612df4565b604082019050919050565b60006020820190508181036000830152612e7f81612e43565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612eef826126e5565b915060008203612f0257612f01612eb5565b5b600182039050919050565b6000612f18826126e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4a57612f49612eb5565b5b600182019050919050565b6000608082019050612f6a6000830187612ac8565b612f7760208301866128ce565b612f8460408301856128ce565b612f9160608301846128ce565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fe157607f821691505b602082108103612ff457612ff3612f9a565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742063616e6e6f7420626560008201527f205a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613056602583612753565b915061306182612ffa565b604082019050919050565b6000602082019050818103600083015261308581613049565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130e8602383612753565b91506130f38261308c565b604082019050919050565b60006020820190508181036000830152613117816130db565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061317a602683612753565b91506131858261311e565b604082019050919050565b600060208201905081810360008301526131a98161316d565b9050919050565b60006131bb826126e5565b91506131c6836126e5565b92508282019050808211156131de576131dd612eb5565b5b92915050565b7f596f7572204344414f20546f6b656e2042616c616e636520697320746f6f206c60008201527f6f7720746f20637265617465206120636f6e7370697261637921000000000000602082015250565b6000613240603a83612753565b915061324b826131e4565b604082019050919050565b6000602082019050818103600083015261326f81613233565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ca565b61331186836132ca565b95508019841693508086168417925050509392505050565b6000819050919050565b600061334e613349613344846126e5565b613329565b6126e5565b9050919050565b6000819050919050565b61336883613333565b61337c61337482613355565b8484546132d7565b825550505050565b600090565b613391613384565b61339c81848461335f565b505050565b5b818110156133c0576133b5600082613389565b6001810190506133a2565b5050565b601f821115613405576133d6816132a5565b6133df846132ba565b810160208510156133ee578190505b6134026133fa856132ba565b8301826133a1565b50505b505050565b600082821c905092915050565b60006134286000198460080261340a565b1980831691505092915050565b60006134418383613417565b9150826002028217905092915050565b61345a82612748565b67ffffffffffffffff81111561347357613472613276565b5b61347d8254612fc9565b6134888282856133c4565b600060209050601f8311600181146134bb57600084156134a9578287015190505b6134b38582613435565b86555061351b565b601f1984166134c9866132a5565b60005b828110156134f1578489015182556001820191506020850194506020810190506134cc565b8683101561350e578489015161350a601f891682613417565b8355505b6001600288020188555050505b505050505050565b82818337600083830152505050565b600061353e8385612753565b935061354b838584613523565b6135548361278e565b840190509392505050565b600060a082019050613574600083018b6128ce565b613581602083018a612ac8565b818103604083015261359481888a613532565b905081810360608301526135a9818688613532565b905081810360808301526135be818486613532565b90509998505050505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613629602583612753565b9150613634826135cd565b604082019050919050565b600060208201905081810360008301526136588161361c565b9050919050565b600061366a826126e5565b9150613675836126e5565b9250828202613683816126e5565b9150828204841483151761369a57613699612eb5565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136fd602683612753565b9150613708826136a1565b604082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f596f75206861766520616c726561647920446f776e766f74656420746869732060008201527f636f6e7370697261637900000000000000000000000000000000000000000000602082015250565b600061378f602a83612753565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613821602483612753565b915061382c826137c5565b604082019050919050565b6000602082019050818103600083015261385081613814565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006138b3602283612753565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061391f602083612753565b915061392a826138e9565b602082019050919050565b6000602082019050818103600083015261394e81613912565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061398b601d83612753565b915061399682613955565b602082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139fb826126e5565b9150613a06836126e5565b925082613a1657613a156139c1565b5b828204905092915050565b6000613a2c826126e5565b9150613a37836126e5565b9250828203905081811115613a4f57613a4e612eb5565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613ab1602583612753565b9150613abc82613a55565b604082019050919050565b60006020820190508181036000830152613ae081613aa4565b905091905056fea2646970667358221220759e85389997efa5d928f0dc5bdf0ca26bec7eeefd8de7b6ade15ea20159774764736f6c63430008120033

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

000000000000000000000000343bfcc99f7aeeb9da7450e10f2fdb4393d6ed900000000000000000000000004cfe91e24257cbe21ec7a2be489b37643f159d74000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3

-----Decoded View---------------
Arg [0] : devWallet (address): 0x343bFcC99f7AEeB9Da7450E10f2FDB4393d6ed90
Arg [1] : marketingWallet (address): 0x4CFe91E24257cBe21eC7A2BE489B37643F159d74
Arg [2] : initialPeriphery (address): 0xC36442b4a4522E871399CD717aBDD847Ab11FE88
Arg [3] : permitPeriphery (address): 0x000000000022D473030F116dDEE9F6B43aC78BA3

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000343bfcc99f7aeeb9da7450e10f2fdb4393d6ed90
Arg [1] : 0000000000000000000000004cfe91e24257cbe21ec7a2be489b37643f159d74
Arg [2] : 000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88
Arg [3] : 000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.