ETH Price: $2,390.18 (-4.58%)

Contract

0x7bA666e4fD74696aeBbEd960D8EFC164aF1134be
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040166561442023-02-18 14:35:11563 days ago1676730911IN
 Create: TerraformsDataHelper
0 ETH0.0568820729.0048629

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TerraformsDataHelper

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-18
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;

library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

struct TokenData {
    uint tokenId;
    uint level;
    uint xCoordinate;
    uint yCoordinate;
    int elevation;
    int structureSpaceX;
    int structureSpaceY;
    int structureSpaceZ;
    string zoneName;
    string[10] zoneColors;
    string[9] characterSet;
}

interface ITerraforms {
  function tokenSupplementalData(uint tokenId) 
    external 
    view
    returns (TokenData memory); 

  function tokenHeightmapIndices(uint tokenId) 
    external 
    view 
    returns (uint[32][32] memory);

  function tokenTerrainValues(uint tokenId) 
    external 
    view 
    returns (int[32][32] memory);

  function tokenToPlacement(uint) 
    external 
    view 
    returns (uint);

  function seed() 
    external 
    view 
    returns (uint);
}

interface ITerraformsData {
  function resourceLevel(uint placement, uint seed) 
    external 
    view
    returns (uint); 

  function characterSet(uint placement, uint seed) 
    external 
    view 
    returns (
      string[9] memory charset,
      uint font, 
      uint fontsize,
      uint index
      );

  function tokenTerrainValues(uint tokenId) 
    external 
    view 
    returns (int[32][32] memory);
}

/// @title Terraforms by Mathcastles Data Helper Contract (not affiliated with Mathcastles) 
/// @author yeetljuice
/// @notice Helper contract to get Terraform data in string format for use in other on-chain generated scripts 
contract TerraformsDataHelper {

  ITerraforms terraforms = ITerraforms(0x4E1f41613c9084FdB9E34E11fAE9412427480e56);
  ITerraformsData terraformsData = ITerraformsData(0xA5aFC9fE76a28fB12C60954Ed6e2e5f8ceF64Ff2);

  function chromaString(uint256 tokenId) public view returns (string memory) {
    uint placement = terraforms.tokenToPlacement(tokenId);
    uint seed = terraforms.seed(); 

    if (uint(keccak256(abi.encodePacked(placement, seed, "activation"))) % 10_000 >= 9_990) {
      return "Plague";
    }

    uint sorter = uint(keccak256(abi.encodePacked(placement, seed)));

    if (sorter % 100 < 60){
      return "Flow";
    } else if (sorter % 100 < 90) {
      return "Pulse";
    } else {
      return "Hyper";
    }
  }

  function resourceString(uint256 tokenId) public view returns (string memory) {
    return Strings.toString(terraformsData.resourceLevel(terraforms.tokenToPlacement(tokenId), terraforms.seed()));
  }

  function biomeString(uint256 tokenId) public view returns (string memory) {
    (,,,uint biome) = terraformsData.characterSet(terraforms.tokenToPlacement(tokenId), terraforms.seed());
    return Strings.toString(biome);
  }

  function zoneNameString(uint256 tokenId) public view returns (string memory) {
    return terraforms.tokenSupplementalData(tokenId).zoneName;
  }

  function zoneColorsString(uint256 tokenId) public view returns (string memory) {
    string[10] memory zc = terraforms.tokenSupplementalData(tokenId).zoneColors;
    string memory s = '["';    
    for (uint i; i < 9; i++) {
        s = string.concat(s, zc[i], '","');
        }
    s = string.concat(s, zc[9], '"]');
    return s;
  }

  function heightmapIndicesString(uint256 tokenId) public view returns (string memory) {
    uint[32][32] memory _arr = terraforms.tokenHeightmapIndices(tokenId);
    uint row;
    uint col;
    string memory rs;
    string memory cs = "[";    
    for (row; row < 32; row++) {        
        rs = "[";
        for (col = 0; col < 31; col++) {
          rs = string.concat(rs, Strings.toString(uint(_arr[row][col])), ",");
        }
        rs = string.concat(rs, Strings.toString(uint(_arr[row][31])), "]");
        if (row < 31) {cs = string.concat(cs, rs, ",");} else {cs = string.concat(cs, rs);}
    }
    cs = string.concat(cs, "]");
    return cs;
  }

  function terrainValuesString(uint256 tokenId) public view returns (string memory) {
    int[32][32] memory _arr = terraforms.tokenTerrainValues(tokenId);
    uint row;
    uint col;
    string memory rs;
    string memory cs = "[";    
    for (row; row < 32; row++) {         
        rs = "[";
        for (col = 0; col < 31; col++) {
          rs = string.concat(rs, toString(_arr[row][col]), ",");
        }
        rs = string.concat(rs, toString(_arr[row][31]), "]");
        if (row < 31) {cs = string.concat(cs, rs, ",");} else {cs = string.concat(cs, rs);}
    }
    cs = string.concat(cs, "]");
    return cs;
  }

  function toString(int256 value) internal pure returns (string memory) {
    if (value < 0) {
      return string.concat("-", Strings.toString(uint256(value*-1)));
    }
    return Strings.toString(uint256(value));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"biomeString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"chromaString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"heightmapIndicesString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resourceString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"terrainValuesString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"zoneColorsString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"zoneNameString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6080604052734e1f41613c9084fdb9e34e11fae9412427480e566000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a5afc9fe76a28fb12c60954ed6e2e5f8cef64ff2600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156100b957600080fd5b506121ce806100c96000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c8063b53c16f01161005b578063b53c16f014610112578063b71547a314610142578063d03fd7a214610172578063ddb6021a146101a25761007d565b806302457f3a146100825780639e99f33d146100b2578063b3cd6c49146100e2575b600080fd5b61009c6004803603810190610097919061129e565b6101d2565b6040516100a99190611364565b60405180910390f35b6100cc60048036038101906100c7919061129e565b610358565b6040516100d99190611364565b60405180910390f35b6100fc60048036038101906100f7919061129e565b61053c565b6040516101099190611364565b60405180910390f35b61012c6004803603810190610127919061129e565b610712565b6040516101399190611364565b60405180910390f35b61015c6004803603810190610157919061129e565b6109e2565b6040516101699190611364565b60405180910390f35b61018c6004803603810190610187919061129e565b610c74565b6040516101999190611364565b60405180910390f35b6101bc60048036038101906101b7919061129e565b610f06565b6040516101c99190611364565b60405180910390f35b606060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166363be6ad4846040518263ffffffff1660e01b81526004016102309190611395565b600060405180830381865afa15801561024d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610276919061182e565b6101200151905060006040518060400160405280600281526020017f5b22000000000000000000000000000000000000000000000000000000000000815250905060005b600981101561031157818382600a81106102d7576102d6611877565b5b60200201516040516020016102ed929190611908565b604051602081830303815290604052915080806103099061196a565b9150506102ba565b5080826009600a811061032757610326611877565b5b602002015160405160200161033d9291906119d9565b60405160208183030381529060405290508092505050919050565b60606000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663eaaaf94760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ab2f711e866040518263ffffffff1660e01b81526004016103f39190611395565b602060405180830381865afa158015610410573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104349190611a0c565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d94792a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561049f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c39190611a0c565b6040518363ffffffff1660e01b81526004016104e0929190611a39565b600060405180830381865afa1580156104fd573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906105269190611a62565b935050505061053481610fb3565b915050919050565b606061070b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638cff2dcc60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ab2f711e866040518263ffffffff1660e01b81526004016105d89190611395565b602060405180830381865afa1580156105f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106199190611a0c565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d94792a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a89190611a0c565b6040518363ffffffff1660e01b81526004016106c5929190611a39565b602060405180830381865afa1580156106e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107069190611a0c565b610fb3565b9050919050565b606060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ab2f711e846040518263ffffffff1660e01b81526004016107709190611395565b602060405180830381865afa15801561078d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b19190611a0c565b905060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d94792a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610821573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108459190611a0c565b90506127066127108383604051602001610860929190611b52565b6040516020818303038152906040528051906020012060001c6108839190611bb8565b106108c7576040518060400160405280600681526020017f506c616775650000000000000000000000000000000000000000000000000000815250925050506109dd565b600082826040516020016108dc929190611be9565b6040516020818303038152906040528051906020012060001c9050603c6064826109069190611bb8565b101561094c576040518060400160405280600481526020017f466c6f770000000000000000000000000000000000000000000000000000000081525093505050506109dd565b605a60648261095b9190611bb8565b10156109a1576040518060400160405280600581526020017f50756c736500000000000000000000000000000000000000000000000000000081525093505050506109dd565b6040518060400160405280600581526020017f487970657200000000000000000000000000000000000000000000000000000081525093505050505b919050565b606060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633107cbac846040518263ffffffff1660e01b8152600401610a409190611395565b61800060405180830381865afa158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190611d79565b9050600080606060006040518060400160405280600181526020017f5b0000000000000000000000000000000000000000000000000000000000000081525090505b6020841015610c45576040518060400160405280600181526020017f5b000000000000000000000000000000000000000000000000000000000000008152509150600092505b601f831015610b805781610b4b868660208110610b2a57610b29611877565b5b60200201518560208110610b4157610b40611877565b5b6020020151610fb3565b604051602001610b5c929190611dcd565b60405160208183030381529060405291508280610b789061196a565b935050610b0a565b81610bb9868660208110610b9757610b96611877565b5b6020020151601f60208110610baf57610bae611877565b5b6020020151610fb3565b604051602001610bca929190611e26565b6040516020818303038152906040529150601f841015610c0d578082604051602001610bf7929190611dcd565b6040516020818303038152906040529050610c32565b8082604051602001610c20929190611e59565b60405160208183030381529060405290505b8380610c3d9061196a565b945050610ac4565b80604051602001610c569190611e7d565b60405160208183030381529060405290508095505050505050919050565b606060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663158ac44e846040518263ffffffff1660e01b8152600401610cd29190611395565b61800060405180830381865afa158015610cf0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d149190612007565b9050600080606060006040518060400160405280600181526020017f5b0000000000000000000000000000000000000000000000000000000000000081525090505b6020841015610ed7576040518060400160405280600181526020017f5b000000000000000000000000000000000000000000000000000000000000008152509150600092505b601f831015610e125781610ddd868660208110610dbc57610dbb611877565b5b60200201518560208110610dd357610dd2611877565b5b602002015161108b565b604051602001610dee929190611dcd565b60405160208183030381529060405291508280610e0a9061196a565b935050610d9c565b81610e4b868660208110610e2957610e28611877565b5b6020020151601f60208110610e4157610e40611877565b5b602002015161108b565b604051602001610e5c929190611e26565b6040516020818303038152906040529150601f841015610e9f578082604051602001610e89929190611dcd565b6040516020818303038152906040529050610ec4565b8082604051602001610eb2929190611e59565b60405160208183030381529060405290505b8380610ecf9061196a565b945050610d56565b80604051602001610ee89190611e7d565b60405160208183030381529060405290508095505050505050919050565b606060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166363be6ad4836040518263ffffffff1660e01b8152600401610f619190611395565b600060405180830381865afa158015610f7e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610fa7919061182e565b61010001519050919050565b606060006001610fc284611101565b01905060008167ffffffffffffffff811115610fe157610fe06113b5565b5b6040519080825280601f01601f1916602001820160405280156110135781602001600182028036833780820191505090505b509050600082602001820190505b600115611080578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161106a57611069611b89565b5b049450600085141561107b57611080565b611021565b819350505050919050565b606060008212156110f0576110ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff836110c59190612035565b610fb3565b6040516020016110da9190612172565b60405160208183030381529060405290506110fc565b6110f982610fb3565b90505b919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061115f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161115557611154611b89565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061119c576d04ee2d6d415b85acef8100000000838161119257611191611b89565b5b0492506020810190505b662386f26fc1000083106111cb57662386f26fc1000083816111c1576111c0611b89565b5b0492506010810190505b6305f5e10083106111f4576305f5e10083816111ea576111e9611b89565b5b0492506008810190505b612710831061121957612710838161120f5761120e611b89565b5b0492506004810190505b6064831061123c576064838161123257611231611b89565b5b0492506002810190505b600a831061124b576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61127b81611268565b811461128657600080fd5b50565b60008135905061129881611272565b92915050565b6000602082840312156112b4576112b361125e565b5b60006112c284828501611289565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113055780820151818401526020810190506112ea565b83811115611314576000848401525b50505050565b6000601f19601f8301169050919050565b6000611336826112cb565b61134081856112d6565b93506113508185602086016112e7565b6113598161131a565b840191505092915050565b6000602082019050818103600083015261137e818461132b565b905092915050565b61138f81611268565b82525050565b60006020820190506113aa6000830184611386565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6113ed8261131a565b810181811067ffffffffffffffff8211171561140c5761140b6113b5565b5b80604052505050565b600061141f611254565b905061142b82826113e4565b919050565b600080fd5b60008151905061144481611272565b92915050565b6000819050919050565b61145d8161144a565b811461146857600080fd5b50565b60008151905061147a81611454565b92915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156114a5576114a46113b5565b5b6114ae8261131a565b9050602081019050919050565b60006114ce6114c98461148a565b611415565b9050828152602081018484840111156114ea576114e9611485565b5b6114f58482856112e7565b509392505050565b600082601f83011261151257611511611480565b5b81516115228482602086016114bb565b91505092915050565b600067ffffffffffffffff821115611546576115456113b5565b5b602082029050919050565b600080fd5b60006115696115648461152b565b611415565b9050806020840283018581111561158357611582611551565b5b835b818110156115ca57805167ffffffffffffffff8111156115a8576115a7611480565b5b8086016115b589826114fd565b85526020850194505050602081019050611585565b5050509392505050565b600082601f8301126115e9576115e8611480565b5b600a6115f6848285611556565b91505092915050565b600067ffffffffffffffff82111561161a576116196113b5565b5b602082029050919050565b6000611638611633846115ff565b611415565b9050806020840283018581111561165257611651611551565b5b835b8181101561169957805167ffffffffffffffff81111561167757611676611480565b5b80860161168489826114fd565b85526020850194505050602081019050611654565b5050509392505050565b600082601f8301126116b8576116b7611480565b5b60096116c5848285611625565b91505092915050565b600061016082840312156116e5576116e46113b0565b5b6116f0610160611415565b9050600061170084828501611435565b600083015250602061171484828501611435565b602083015250604061172884828501611435565b604083015250606061173c84828501611435565b60608301525060806117508482850161146b565b60808301525060a06117648482850161146b565b60a08301525060c06117788482850161146b565b60c08301525060e061178c8482850161146b565b60e08301525061010082015167ffffffffffffffff8111156117b1576117b0611430565b5b6117bd848285016114fd565b6101008301525061012082015167ffffffffffffffff8111156117e3576117e2611430565b5b6117ef848285016115d4565b6101208301525061014082015167ffffffffffffffff81111561181557611814611430565b5b611821848285016116a3565b6101408301525092915050565b6000602082840312156118445761184361125e565b5b600082015167ffffffffffffffff81111561186257611861611263565b5b61186e848285016116ce565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b60006118bc826112cb565b6118c681856118a6565b93506118d68185602086016112e7565b80840191505092915050565b7f222c220000000000000000000000000000000000000000000000000000000000815250565b600061191482856118b1565b915061192082846118b1565b915061192b826118e2565b6003820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061197582611268565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119a8576119a761193b565b5b600182019050919050565b7f225d000000000000000000000000000000000000000000000000000000000000815250565b60006119e582856118b1565b91506119f182846118b1565b91506119fc826119b3565b6002820191508190509392505050565b600060208284031215611a2257611a2161125e565b5b6000611a3084828501611435565b91505092915050565b6000604082019050611a4e6000830185611386565b611a5b6020830184611386565b9392505050565b60008060008060808587031215611a7c57611a7b61125e565b5b600085015167ffffffffffffffff811115611a9a57611a99611263565b5b611aa6878288016116a3565b9450506020611ab787828801611435565b9350506040611ac887828801611435565b9250506060611ad987828801611435565b91505092959194509250565b6000819050919050565b611b00611afb82611268565b611ae5565b82525050565b7f61637469766174696f6e00000000000000000000000000000000000000000000600082015250565b6000611b3c600a836118a6565b9150611b4782611b06565b600a82019050919050565b6000611b5e8285611aef565b602082019150611b6e8284611aef565b602082019150611b7d82611b2f565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611bc382611268565b9150611bce83611268565b925082611bde57611bdd611b89565b5b828206905092915050565b6000611bf58285611aef565b602082019150611c058284611aef565b6020820191508190509392505050565b600067ffffffffffffffff821115611c3057611c2f6113b5565b5b602082029050919050565b600067ffffffffffffffff821115611c5657611c556113b5565b5b602082029050919050565b6000611c74611c6f84611c3b565b611415565b90508060208402830185811115611c8e57611c8d611551565b5b835b81811015611cb75780611ca38882611435565b845260208401935050602081019050611c90565b5050509392505050565b600082601f830112611cd657611cd5611480565b5b6020611ce3848285611c61565b91505092915050565b6000611cff611cfa84611c15565b611415565b9050806104008402830185811115611d1a57611d19611551565b5b835b81811015611d445780611d2f8882611cc1565b84526020840193505061040081019050611d1c565b5050509392505050565b600082601f830112611d6357611d62611480565b5b6020611d70848285611cec565b91505092915050565b60006180008284031215611d9057611d8f61125e565b5b6000611d9e84828501611d4e565b91505092915050565b7f2c00000000000000000000000000000000000000000000000000000000000000815250565b6000611dd982856118b1565b9150611de582846118b1565b9150611df082611da7565b6001820191508190509392505050565b7f5d00000000000000000000000000000000000000000000000000000000000000815250565b6000611e3282856118b1565b9150611e3e82846118b1565b9150611e4982611e00565b6001820191508190509392505050565b6000611e6582856118b1565b9150611e7182846118b1565b91508190509392505050565b6000611e8982846118b1565b9150611e9482611e00565b60018201915081905092915050565b600067ffffffffffffffff821115611ebe57611ebd6113b5565b5b602082029050919050565b600067ffffffffffffffff821115611ee457611ee36113b5565b5b602082029050919050565b6000611f02611efd84611ec9565b611415565b90508060208402830185811115611f1c57611f1b611551565b5b835b81811015611f455780611f31888261146b565b845260208401935050602081019050611f1e565b5050509392505050565b600082601f830112611f6457611f63611480565b5b6020611f71848285611eef565b91505092915050565b6000611f8d611f8884611ea3565b611415565b9050806104008402830185811115611fa857611fa7611551565b5b835b81811015611fd25780611fbd8882611f4f565b84526020840193505061040081019050611faa565b5050509392505050565b600082601f830112611ff157611ff0611480565b5b6020611ffe848285611f7a565b91505092915050565b6000618000828403121561201e5761201d61125e565b5b600061202c84828501611fdc565b91505092915050565b60006120408261144a565b915061204b8361144a565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211600084136000841316161561208a5761208961193b565b5b817f800000000000000000000000000000000000000000000000000000000000000005831260008412600084131616156120c7576120c661193b565b5b827f800000000000000000000000000000000000000000000000000000000000000005821260008413600084121616156121045761210361193b565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff05821260008412600084121616156121415761214061193b565b5b828202905092915050565b7f2d00000000000000000000000000000000000000000000000000000000000000815250565b600061217d8261214c565b60018201915061218d82846118b1565b91508190509291505056fea264697066735822122098113c478d3e9a0c9f63a7407828e431afe5f9714f47bd1f78ba3873b17f1b5864736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061007d5760003560e01c8063b53c16f01161005b578063b53c16f014610112578063b71547a314610142578063d03fd7a214610172578063ddb6021a146101a25761007d565b806302457f3a146100825780639e99f33d146100b2578063b3cd6c49146100e2575b600080fd5b61009c6004803603810190610097919061129e565b6101d2565b6040516100a99190611364565b60405180910390f35b6100cc60048036038101906100c7919061129e565b610358565b6040516100d99190611364565b60405180910390f35b6100fc60048036038101906100f7919061129e565b61053c565b6040516101099190611364565b60405180910390f35b61012c6004803603810190610127919061129e565b610712565b6040516101399190611364565b60405180910390f35b61015c6004803603810190610157919061129e565b6109e2565b6040516101699190611364565b60405180910390f35b61018c6004803603810190610187919061129e565b610c74565b6040516101999190611364565b60405180910390f35b6101bc60048036038101906101b7919061129e565b610f06565b6040516101c99190611364565b60405180910390f35b606060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166363be6ad4846040518263ffffffff1660e01b81526004016102309190611395565b600060405180830381865afa15801561024d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610276919061182e565b6101200151905060006040518060400160405280600281526020017f5b22000000000000000000000000000000000000000000000000000000000000815250905060005b600981101561031157818382600a81106102d7576102d6611877565b5b60200201516040516020016102ed929190611908565b604051602081830303815290604052915080806103099061196a565b9150506102ba565b5080826009600a811061032757610326611877565b5b602002015160405160200161033d9291906119d9565b60405160208183030381529060405290508092505050919050565b60606000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663eaaaf94760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ab2f711e866040518263ffffffff1660e01b81526004016103f39190611395565b602060405180830381865afa158015610410573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104349190611a0c565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d94792a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561049f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c39190611a0c565b6040518363ffffffff1660e01b81526004016104e0929190611a39565b600060405180830381865afa1580156104fd573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906105269190611a62565b935050505061053481610fb3565b915050919050565b606061070b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638cff2dcc60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ab2f711e866040518263ffffffff1660e01b81526004016105d89190611395565b602060405180830381865afa1580156105f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106199190611a0c565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d94792a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610684573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a89190611a0c565b6040518363ffffffff1660e01b81526004016106c5929190611a39565b602060405180830381865afa1580156106e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107069190611a0c565b610fb3565b9050919050565b606060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ab2f711e846040518263ffffffff1660e01b81526004016107709190611395565b602060405180830381865afa15801561078d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b19190611a0c565b905060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d94792a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610821573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108459190611a0c565b90506127066127108383604051602001610860929190611b52565b6040516020818303038152906040528051906020012060001c6108839190611bb8565b106108c7576040518060400160405280600681526020017f506c616775650000000000000000000000000000000000000000000000000000815250925050506109dd565b600082826040516020016108dc929190611be9565b6040516020818303038152906040528051906020012060001c9050603c6064826109069190611bb8565b101561094c576040518060400160405280600481526020017f466c6f770000000000000000000000000000000000000000000000000000000081525093505050506109dd565b605a60648261095b9190611bb8565b10156109a1576040518060400160405280600581526020017f50756c736500000000000000000000000000000000000000000000000000000081525093505050506109dd565b6040518060400160405280600581526020017f487970657200000000000000000000000000000000000000000000000000000081525093505050505b919050565b606060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633107cbac846040518263ffffffff1660e01b8152600401610a409190611395565b61800060405180830381865afa158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190611d79565b9050600080606060006040518060400160405280600181526020017f5b0000000000000000000000000000000000000000000000000000000000000081525090505b6020841015610c45576040518060400160405280600181526020017f5b000000000000000000000000000000000000000000000000000000000000008152509150600092505b601f831015610b805781610b4b868660208110610b2a57610b29611877565b5b60200201518560208110610b4157610b40611877565b5b6020020151610fb3565b604051602001610b5c929190611dcd565b60405160208183030381529060405291508280610b789061196a565b935050610b0a565b81610bb9868660208110610b9757610b96611877565b5b6020020151601f60208110610baf57610bae611877565b5b6020020151610fb3565b604051602001610bca929190611e26565b6040516020818303038152906040529150601f841015610c0d578082604051602001610bf7929190611dcd565b6040516020818303038152906040529050610c32565b8082604051602001610c20929190611e59565b60405160208183030381529060405290505b8380610c3d9061196a565b945050610ac4565b80604051602001610c569190611e7d565b60405160208183030381529060405290508095505050505050919050565b606060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663158ac44e846040518263ffffffff1660e01b8152600401610cd29190611395565b61800060405180830381865afa158015610cf0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d149190612007565b9050600080606060006040518060400160405280600181526020017f5b0000000000000000000000000000000000000000000000000000000000000081525090505b6020841015610ed7576040518060400160405280600181526020017f5b000000000000000000000000000000000000000000000000000000000000008152509150600092505b601f831015610e125781610ddd868660208110610dbc57610dbb611877565b5b60200201518560208110610dd357610dd2611877565b5b602002015161108b565b604051602001610dee929190611dcd565b60405160208183030381529060405291508280610e0a9061196a565b935050610d9c565b81610e4b868660208110610e2957610e28611877565b5b6020020151601f60208110610e4157610e40611877565b5b602002015161108b565b604051602001610e5c929190611e26565b6040516020818303038152906040529150601f841015610e9f578082604051602001610e89929190611dcd565b6040516020818303038152906040529050610ec4565b8082604051602001610eb2929190611e59565b60405160208183030381529060405290505b8380610ecf9061196a565b945050610d56565b80604051602001610ee89190611e7d565b60405160208183030381529060405290508095505050505050919050565b606060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166363be6ad4836040518263ffffffff1660e01b8152600401610f619190611395565b600060405180830381865afa158015610f7e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610fa7919061182e565b61010001519050919050565b606060006001610fc284611101565b01905060008167ffffffffffffffff811115610fe157610fe06113b5565b5b6040519080825280601f01601f1916602001820160405280156110135781602001600182028036833780820191505090505b509050600082602001820190505b600115611080578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161106a57611069611b89565b5b049450600085141561107b57611080565b611021565b819350505050919050565b606060008212156110f0576110ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff836110c59190612035565b610fb3565b6040516020016110da9190612172565b60405160208183030381529060405290506110fc565b6110f982610fb3565b90505b919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061115f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161115557611154611b89565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061119c576d04ee2d6d415b85acef8100000000838161119257611191611b89565b5b0492506020810190505b662386f26fc1000083106111cb57662386f26fc1000083816111c1576111c0611b89565b5b0492506010810190505b6305f5e10083106111f4576305f5e10083816111ea576111e9611b89565b5b0492506008810190505b612710831061121957612710838161120f5761120e611b89565b5b0492506004810190505b6064831061123c576064838161123257611231611b89565b5b0492506002810190505b600a831061124b576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61127b81611268565b811461128657600080fd5b50565b60008135905061129881611272565b92915050565b6000602082840312156112b4576112b361125e565b5b60006112c284828501611289565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113055780820151818401526020810190506112ea565b83811115611314576000848401525b50505050565b6000601f19601f8301169050919050565b6000611336826112cb565b61134081856112d6565b93506113508185602086016112e7565b6113598161131a565b840191505092915050565b6000602082019050818103600083015261137e818461132b565b905092915050565b61138f81611268565b82525050565b60006020820190506113aa6000830184611386565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6113ed8261131a565b810181811067ffffffffffffffff8211171561140c5761140b6113b5565b5b80604052505050565b600061141f611254565b905061142b82826113e4565b919050565b600080fd5b60008151905061144481611272565b92915050565b6000819050919050565b61145d8161144a565b811461146857600080fd5b50565b60008151905061147a81611454565b92915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156114a5576114a46113b5565b5b6114ae8261131a565b9050602081019050919050565b60006114ce6114c98461148a565b611415565b9050828152602081018484840111156114ea576114e9611485565b5b6114f58482856112e7565b509392505050565b600082601f83011261151257611511611480565b5b81516115228482602086016114bb565b91505092915050565b600067ffffffffffffffff821115611546576115456113b5565b5b602082029050919050565b600080fd5b60006115696115648461152b565b611415565b9050806020840283018581111561158357611582611551565b5b835b818110156115ca57805167ffffffffffffffff8111156115a8576115a7611480565b5b8086016115b589826114fd565b85526020850194505050602081019050611585565b5050509392505050565b600082601f8301126115e9576115e8611480565b5b600a6115f6848285611556565b91505092915050565b600067ffffffffffffffff82111561161a576116196113b5565b5b602082029050919050565b6000611638611633846115ff565b611415565b9050806020840283018581111561165257611651611551565b5b835b8181101561169957805167ffffffffffffffff81111561167757611676611480565b5b80860161168489826114fd565b85526020850194505050602081019050611654565b5050509392505050565b600082601f8301126116b8576116b7611480565b5b60096116c5848285611625565b91505092915050565b600061016082840312156116e5576116e46113b0565b5b6116f0610160611415565b9050600061170084828501611435565b600083015250602061171484828501611435565b602083015250604061172884828501611435565b604083015250606061173c84828501611435565b60608301525060806117508482850161146b565b60808301525060a06117648482850161146b565b60a08301525060c06117788482850161146b565b60c08301525060e061178c8482850161146b565b60e08301525061010082015167ffffffffffffffff8111156117b1576117b0611430565b5b6117bd848285016114fd565b6101008301525061012082015167ffffffffffffffff8111156117e3576117e2611430565b5b6117ef848285016115d4565b6101208301525061014082015167ffffffffffffffff81111561181557611814611430565b5b611821848285016116a3565b6101408301525092915050565b6000602082840312156118445761184361125e565b5b600082015167ffffffffffffffff81111561186257611861611263565b5b61186e848285016116ce565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b60006118bc826112cb565b6118c681856118a6565b93506118d68185602086016112e7565b80840191505092915050565b7f222c220000000000000000000000000000000000000000000000000000000000815250565b600061191482856118b1565b915061192082846118b1565b915061192b826118e2565b6003820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061197582611268565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119a8576119a761193b565b5b600182019050919050565b7f225d000000000000000000000000000000000000000000000000000000000000815250565b60006119e582856118b1565b91506119f182846118b1565b91506119fc826119b3565b6002820191508190509392505050565b600060208284031215611a2257611a2161125e565b5b6000611a3084828501611435565b91505092915050565b6000604082019050611a4e6000830185611386565b611a5b6020830184611386565b9392505050565b60008060008060808587031215611a7c57611a7b61125e565b5b600085015167ffffffffffffffff811115611a9a57611a99611263565b5b611aa6878288016116a3565b9450506020611ab787828801611435565b9350506040611ac887828801611435565b9250506060611ad987828801611435565b91505092959194509250565b6000819050919050565b611b00611afb82611268565b611ae5565b82525050565b7f61637469766174696f6e00000000000000000000000000000000000000000000600082015250565b6000611b3c600a836118a6565b9150611b4782611b06565b600a82019050919050565b6000611b5e8285611aef565b602082019150611b6e8284611aef565b602082019150611b7d82611b2f565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611bc382611268565b9150611bce83611268565b925082611bde57611bdd611b89565b5b828206905092915050565b6000611bf58285611aef565b602082019150611c058284611aef565b6020820191508190509392505050565b600067ffffffffffffffff821115611c3057611c2f6113b5565b5b602082029050919050565b600067ffffffffffffffff821115611c5657611c556113b5565b5b602082029050919050565b6000611c74611c6f84611c3b565b611415565b90508060208402830185811115611c8e57611c8d611551565b5b835b81811015611cb75780611ca38882611435565b845260208401935050602081019050611c90565b5050509392505050565b600082601f830112611cd657611cd5611480565b5b6020611ce3848285611c61565b91505092915050565b6000611cff611cfa84611c15565b611415565b9050806104008402830185811115611d1a57611d19611551565b5b835b81811015611d445780611d2f8882611cc1565b84526020840193505061040081019050611d1c565b5050509392505050565b600082601f830112611d6357611d62611480565b5b6020611d70848285611cec565b91505092915050565b60006180008284031215611d9057611d8f61125e565b5b6000611d9e84828501611d4e565b91505092915050565b7f2c00000000000000000000000000000000000000000000000000000000000000815250565b6000611dd982856118b1565b9150611de582846118b1565b9150611df082611da7565b6001820191508190509392505050565b7f5d00000000000000000000000000000000000000000000000000000000000000815250565b6000611e3282856118b1565b9150611e3e82846118b1565b9150611e4982611e00565b6001820191508190509392505050565b6000611e6582856118b1565b9150611e7182846118b1565b91508190509392505050565b6000611e8982846118b1565b9150611e9482611e00565b60018201915081905092915050565b600067ffffffffffffffff821115611ebe57611ebd6113b5565b5b602082029050919050565b600067ffffffffffffffff821115611ee457611ee36113b5565b5b602082029050919050565b6000611f02611efd84611ec9565b611415565b90508060208402830185811115611f1c57611f1b611551565b5b835b81811015611f455780611f31888261146b565b845260208401935050602081019050611f1e565b5050509392505050565b600082601f830112611f6457611f63611480565b5b6020611f71848285611eef565b91505092915050565b6000611f8d611f8884611ea3565b611415565b9050806104008402830185811115611fa857611fa7611551565b5b835b81811015611fd25780611fbd8882611f4f565b84526020840193505061040081019050611faa565b5050509392505050565b600082601f830112611ff157611ff0611480565b5b6020611ffe848285611f7a565b91505092915050565b6000618000828403121561201e5761201d61125e565b5b600061202c84828501611fdc565b91505092915050565b60006120408261144a565b915061204b8361144a565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211600084136000841316161561208a5761208961193b565b5b817f800000000000000000000000000000000000000000000000000000000000000005831260008412600084131616156120c7576120c661193b565b5b827f800000000000000000000000000000000000000000000000000000000000000005821260008413600084121616156121045761210361193b565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff05821260008412600084121616156121415761214061193b565b5b828202905092915050565b7f2d00000000000000000000000000000000000000000000000000000000000000815250565b600061217d8261214c565b60018201915061218d82846118b1565b91508190509291505056fea264697066735822122098113c478d3e9a0c9f63a7407828e431afe5f9714f47bd1f78ba3873b17f1b5864736f6c634300080c0033

Deployed Bytecode Sourcemap

16339:3252:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17693:343;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17308:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17102:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16560:536;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18042:673;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18721:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17540:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17693:343;17757:13;17779:20;17802:10;;;;;;;;;;;:32;;;17835:7;17802:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;;;17779:75;;17861:15;:22;;;;;;;;;;;;;;;;;;;17899:6;17894:82;17911:1;17907;:5;17894:82;;;17948:1;17951:2;17954:1;17951:5;;;;;;;:::i;:::-;;;;;;17934:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17930:34;;17914:3;;;;;:::i;:::-;;;;17894:82;;;;18000:1;18003:2;18006:1;18003:5;;;;;;;:::i;:::-;;;;;;17986:29;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17982:33;;18029:1;18022:8;;;;17693:343;;;:::o;17308:226::-;17367:13;17393:10;17407:14;;;;;;;;;;;:27;;;17435:10;;;;;;;;;;:27;;;17463:7;17435:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17473:10;;;;;;;;;;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17407:84;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17389:102;;;;;17505:23;17522:5;17505:16;:23::i;:::-;17498:30;;;17308:226;;;:::o;17102:200::-;17164:13;17193:103;17210:14;;;;;;;;;;;:28;;;17239:10;;;;;;;;;;:27;;;17267:7;17239:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17277:10;;;;;;;;;;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17210:85;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17193:16;:103::i;:::-;17186:110;;17102:200;;;:::o;16560:536::-;16620:13;16642:14;16659:10;;;;;;;;;;;:27;;;16687:7;16659:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16642:53;;16702:9;16714:10;;;;;;;;;;;:15;;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16702:29;;16822:5;16812:6;16777:9;16788:4;16760:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16750:58;;;;;;16745:64;;:73;;;;:::i;:::-;:82;16741:120;;16838:15;;;;;;;;;;;;;;;;;;;;;;;16741:120;16869:11;16915:9;16926:4;16898:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16888:44;;;;;;16883:50;;16869:64;;16961:2;16955:3;16946:6;:12;;;;:::i;:::-;:17;16942:149;;;16973:13;;;;;;;;;;;;;;;;;;;;;;;;16942:149;17019:2;17013:3;17004:6;:12;;;;:::i;:::-;:17;17000:91;;;17032:14;;;;;;;;;;;;;;;;;;;;;;;;17000:91;17069:14;;;;;;;;;;;;;;;;;;;;;;16560:536;;;;:::o;18042:673::-;18112:13;18134:24;18161:10;;;;;;;;;;;:32;;;18194:7;18161:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18134:68;;18209:8;18224;18239:16;18262;:22;;;;;;;;;;;;;;;;;;;18295:365;18311:2;18305:3;:8;18295:365;;;18341:8;;;;;;;;;;;;;;;;;;;18371:1;18365:7;;18360:123;18380:2;18374:3;:8;18360:123;;;18423:2;18427:38;18449:4;18454:3;18449:9;;;;;;;:::i;:::-;;;;;;18459:3;18449:14;;;;;;;:::i;:::-;;;;;;18427:16;:38::i;:::-;18409:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18404:67;;18384:5;;;;;:::i;:::-;;;;18360:123;;;18512:2;18516:37;18538:4;18543:3;18538:9;;;;;;;:::i;:::-;;;;;;18548:2;18538:13;;;;;;;:::i;:::-;;;;;;18516:16;:37::i;:::-;18498:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18493:66;;18580:2;18574:3;:8;18570:83;;;18604:2;18608;18590:26;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18585:31;;18570:83;;;18644:2;18648;18630:21;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18625:26;;18570:83;18315:5;;;;;:::i;:::-;;;;18295:365;;;18685:2;18671:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;18666:27;;18707:2;18700:9;;;;;;;18042:673;;;:::o;18721:639::-;18788:13;18810:23;18836:10;;;;;;;;;;;:29;;;18866:7;18836:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18810:64;;18881:8;18896;18911:16;18934;:22;;;;;;;;;;;;;;;;;;;18967:338;18983:2;18977:3;:8;18967:338;;;19014:8;;;;;;;;;;;;;;;;;;;19044:1;19038:7;;19033:109;19053:2;19047:3;:8;19033:109;;;19096:2;19100:24;19109:4;19114:3;19109:9;;;;;;;:::i;:::-;;;;;;19119:3;19109:14;;;;;;;:::i;:::-;;;;;;19100:8;:24::i;:::-;19082:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19077:53;;19057:5;;;;;:::i;:::-;;;;19033:109;;;19171:2;19175:23;19184:4;19189:3;19184:9;;;;;;;:::i;:::-;;;;;;19194:2;19184:13;;;;;;;:::i;:::-;;;;;;19175:8;:23::i;:::-;19157:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19152:52;;19225:2;19219:3;:8;19215:83;;;19249:2;19253;19235:26;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19230:31;;19215:83;;;19289:2;19293;19275:21;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19270:26;;19215:83;18987:5;;;;;:::i;:::-;;;;18967:338;;;19330:2;19316:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;19311:27;;19352:2;19345:9;;;;;;;18721:639;;;:::o;17540:147::-;17602:13;17631:10;;;;;;;;;;:32;;;17664:7;17631:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;;17624:57;;17540:147;;;:::o;12974:716::-;13030:13;13081:14;13118:1;13098:17;13109:5;13098:10;:17::i;:::-;:21;13081:38;;13134:20;13168:6;13157:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13134:41;;13190:11;13319:6;13315:2;13311:15;13303:6;13299:28;13292:35;;13356:288;13363:4;13356:288;;;13388:5;;;;;;;;13530:8;13525:2;13518:5;13514:14;13509:30;13504:3;13496:44;13586:2;13577:11;;;;;;:::i;:::-;;;;;13620:1;13611:5;:10;13607:21;;;13623:5;;13607:21;13356:288;;;13665:6;13658:13;;;;;12974:716;;;:::o;19366:222::-;19421:13;19455:1;19447:5;:9;19443:94;;;19493:35;19524:2;19518:5;:8;;;;:::i;:::-;19493:16;:35::i;:::-;19474:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;19467:62;;;;19443:94;19550:32;19575:5;19550:16;:32::i;:::-;19543:39;;19366:222;;;;:::o;9996:922::-;10049:7;10069:14;10086:1;10069:18;;10136:6;10127:5;:15;10123:102;;10172:6;10163:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10123:102;10252:6;10243:5;:15;10239:102;;10288:6;10279:15;;;;;;:::i;:::-;;;;;10323:2;10313:12;;;;10239:102;10368:6;10359:5;:15;10355:102;;10404:6;10395:15;;;;;;:::i;:::-;;;;;10439:2;10429:12;;;;10355:102;10484:5;10475;:14;10471:99;;10519:5;10510:14;;;;;;:::i;:::-;;;;;10553:1;10543:11;;;;10471:99;10597:5;10588;:14;10584:99;;10632:5;10623:14;;;;;;:::i;:::-;;;;;10666:1;10656:11;;;;10584:99;10710:5;10701;:14;10697:99;;10745:5;10736:14;;;;;;:::i;:::-;;;;;10779:1;10769:11;;;;10697:99;10823:5;10814;:14;10810:66;;10859:1;10849:11;;;;10810:66;10904:6;10897:13;;;9996:922;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:99::-;1077:6;1111:5;1105:12;1095:22;;1025:99;;;:::o;1130:169::-;1214:11;1248:6;1243:3;1236:19;1288:4;1283:3;1279:14;1264:29;;1130:169;;;;:::o;1305:307::-;1373:1;1383:113;1397:6;1394:1;1391:13;1383:113;;;1482:1;1477:3;1473:11;1467:18;1463:1;1458:3;1454:11;1447:39;1419:2;1416:1;1412:10;1407:15;;1383:113;;;1514:6;1511:1;1508:13;1505:101;;;1594:1;1585:6;1580:3;1576:16;1569:27;1505:101;1354:258;1305:307;;;:::o;1618:102::-;1659:6;1710:2;1706:7;1701:2;1694:5;1690:14;1686:28;1676:38;;1618:102;;;:::o;1726:364::-;1814:3;1842:39;1875:5;1842:39;:::i;:::-;1897:71;1961:6;1956:3;1897:71;:::i;:::-;1890:78;;1977:52;2022:6;2017:3;2010:4;2003:5;1999:16;1977:52;:::i;:::-;2054:29;2076:6;2054:29;:::i;:::-;2049:3;2045:39;2038:46;;1818:272;1726:364;;;;:::o;2096:313::-;2209:4;2247:2;2236:9;2232:18;2224:26;;2296:9;2290:4;2286:20;2282:1;2271:9;2267:17;2260:47;2324:78;2397:4;2388:6;2324:78;:::i;:::-;2316:86;;2096:313;;;;:::o;2415:118::-;2502:24;2520:5;2502:24;:::i;:::-;2497:3;2490:37;2415:118;;:::o;2539:222::-;2632:4;2670:2;2659:9;2655:18;2647:26;;2683:71;2751:1;2740:9;2736:17;2727:6;2683:71;:::i;:::-;2539:222;;;;:::o;2767:117::-;2876:1;2873;2866:12;2890:180;2938:77;2935:1;2928:88;3035:4;3032:1;3025:15;3059:4;3056:1;3049:15;3076:281;3159:27;3181:4;3159:27;:::i;:::-;3151:6;3147:40;3289:6;3277:10;3274:22;3253:18;3241:10;3238:34;3235:62;3232:88;;;3300:18;;:::i;:::-;3232:88;3340:10;3336:2;3329:22;3119:238;3076:281;;:::o;3363:129::-;3397:6;3424:20;;:::i;:::-;3414:30;;3453:33;3481:4;3473:6;3453:33;:::i;:::-;3363:129;;;:::o;3498:117::-;3607:1;3604;3597:12;3621:143;3678:5;3709:6;3703:13;3694:22;;3725:33;3752:5;3725:33;:::i;:::-;3621:143;;;;:::o;3770:76::-;3806:7;3835:5;3824:16;;3770:76;;;:::o;3852:120::-;3924:23;3941:5;3924:23;:::i;:::-;3917:5;3914:34;3904:62;;3962:1;3959;3952:12;3904:62;3852:120;:::o;3978:141::-;4034:5;4065:6;4059:13;4050:22;;4081:32;4107:5;4081:32;:::i;:::-;3978:141;;;;:::o;4125:117::-;4234:1;4231;4224:12;4248:117;4357:1;4354;4347:12;4371:308;4433:4;4523:18;4515:6;4512:30;4509:56;;;4545:18;;:::i;:::-;4509:56;4583:29;4605:6;4583:29;:::i;:::-;4575:37;;4667:4;4661;4657:15;4649:23;;4371:308;;;:::o;4685:421::-;4774:5;4799:66;4815:49;4857:6;4815:49;:::i;:::-;4799:66;:::i;:::-;4790:75;;4888:6;4881:5;4874:21;4926:4;4919:5;4915:16;4964:3;4955:6;4950:3;4946:16;4943:25;4940:112;;;4971:79;;:::i;:::-;4940:112;5061:39;5093:6;5088:3;5083;5061:39;:::i;:::-;4780:326;4685:421;;;;;:::o;5126:355::-;5193:5;5242:3;5235:4;5227:6;5223:17;5219:27;5209:122;;5250:79;;:::i;:::-;5209:122;5360:6;5354:13;5385:90;5471:3;5463:6;5456:4;5448:6;5444:17;5385:90;:::i;:::-;5376:99;;5199:282;5126:355;;;;:::o;5487:260::-;5573:4;5663:18;5655:6;5652:30;5649:56;;;5685:18;;:::i;:::-;5649:56;5735:4;5727:6;5723:17;5715:25;;5487:260;;;:::o;5753:117::-;5862:1;5859;5852:12;5894:895;6010:5;6035:90;6051:73;6117:6;6051:73;:::i;:::-;6035:90;:::i;:::-;6026:99;;6145:5;6198:4;6190:6;6186:17;6178:6;6174:30;6227:3;6219:6;6216:15;6213:122;;;6246:79;;:::i;:::-;6213:122;6361:6;6344:439;6378:6;6373:3;6370:15;6344:439;;;6460:3;6454:10;6496:18;6483:11;6480:35;6477:122;;;6518:79;;:::i;:::-;6477:122;6642:11;6634:6;6630:24;6680:58;6734:3;6722:10;6680:58;:::i;:::-;6675:3;6668:71;6768:4;6763:3;6759:14;6752:21;;6420:363;;6404:4;6399:3;6395:14;6388:21;;6344:439;;;6348:21;6016:773;;5894:895;;;;;:::o;6813:383::-;6904:5;6953:3;6946:4;6938:6;6934:17;6930:27;6920:122;;6961:79;;:::i;:::-;6920:122;7065:4;7087:103;7186:3;7178:6;7170;7087:103;:::i;:::-;7078:112;;6910:286;6813:383;;;;:::o;7202:259::-;7287:4;7377:18;7369:6;7366:30;7363:56;;;7399:18;;:::i;:::-;7363:56;7449:4;7441:6;7437:17;7429:25;;7202:259;;;:::o;7484:893::-;7599:5;7624:89;7640:72;7705:6;7640:72;:::i;:::-;7624:89;:::i;:::-;7615:98;;7733:5;7786:4;7778:6;7774:17;7766:6;7762:30;7815:3;7807:6;7804:15;7801:122;;;7834:79;;:::i;:::-;7801:122;7949:6;7932:439;7966:6;7961:3;7958:15;7932:439;;;8048:3;8042:10;8084:18;8071:11;8068:35;8065:122;;;8106:79;;:::i;:::-;8065:122;8230:11;8222:6;8218:24;8268:58;8322:3;8310:10;8268:58;:::i;:::-;8263:3;8256:71;8356:4;8351:3;8347:14;8340:21;;8008:363;;7992:4;7987:3;7983:14;7976:21;;7932:439;;;7936:21;7605:772;;7484:893;;;;;:::o;8400:381::-;8490:5;8539:3;8532:4;8524:6;8520:17;8516:27;8506:122;;8547:79;;:::i;:::-;8506:122;8651:4;8673:102;8771:3;8763:6;8755;8673:102;:::i;:::-;8664:111;;8496:285;8400:381;;;;:::o;8811:2780::-;8898:5;8942:6;8930:9;8925:3;8921:19;8917:32;8914:119;;;8952:79;;:::i;:::-;8914:119;9051:23;9067:6;9051:23;:::i;:::-;9042:32;;9136:1;9176:60;9232:3;9223:6;9212:9;9208:22;9176:60;:::i;:::-;9169:4;9162:5;9158:16;9151:86;9084:164;9308:2;9349:60;9405:3;9396:6;9385:9;9381:22;9349:60;:::i;:::-;9342:4;9335:5;9331:16;9324:86;9258:163;9487:2;9528:60;9584:3;9575:6;9564:9;9560:22;9528:60;:::i;:::-;9521:4;9514:5;9510:16;9503:86;9431:169;9666:2;9707:60;9763:3;9754:6;9743:9;9739:22;9707:60;:::i;:::-;9700:4;9693:5;9689:16;9682:86;9610:169;9843:3;9885:59;9940:3;9931:6;9920:9;9916:22;9885:59;:::i;:::-;9878:4;9871:5;9867:16;9860:85;9789:167;10026:3;10068:59;10123:3;10114:6;10103:9;10099:22;10068:59;:::i;:::-;10061:4;10054:5;10050:16;10043:85;9966:173;10209:3;10251:59;10306:3;10297:6;10286:9;10282:22;10251:59;:::i;:::-;10244:4;10237:5;10233:16;10226:85;10149:173;10392:3;10434:59;10489:3;10480:6;10469:9;10465:22;10434:59;:::i;:::-;10427:4;10420:5;10416:16;10409:85;10332:173;10589:3;10578:9;10574:19;10568:26;10621:18;10613:6;10610:30;10607:117;;;10643:79;;:::i;:::-;10607:117;10765:70;10831:3;10822:6;10811:9;10807:22;10765:70;:::i;:::-;10756:6;10749:5;10745:18;10738:98;10515:332;10933:3;10922:9;10918:19;10912:26;10965:18;10957:6;10954:30;10951:117;;;10987:79;;:::i;:::-;10951:117;11109:94;11199:3;11190:6;11179:9;11175:22;11109:94;:::i;:::-;11100:6;11093:5;11089:18;11082:122;10857:358;11303:3;11292:9;11288:19;11282:26;11335:18;11327:6;11324:30;11321:117;;;11357:79;;:::i;:::-;11321:117;11479:93;11568:3;11559:6;11548:9;11544:22;11479:93;:::i;:::-;11470:6;11463:5;11459:18;11452:121;11225:359;8811:2780;;;;:::o;11597:558::-;11694:6;11743:2;11731:9;11722:7;11718:23;11714:32;11711:119;;;11749:79;;:::i;:::-;11711:119;11890:1;11879:9;11875:17;11869:24;11920:18;11912:6;11909:30;11906:117;;;11942:79;;:::i;:::-;11906:117;12047:91;12130:7;12121:6;12110:9;12106:22;12047:91;:::i;:::-;12037:101;;11840:308;11597:558;;;;:::o;12161:180::-;12209:77;12206:1;12199:88;12306:4;12303:1;12296:15;12330:4;12327:1;12320:15;12347:148;12449:11;12486:3;12471:18;;12347:148;;;;:::o;12501:377::-;12607:3;12635:39;12668:5;12635:39;:::i;:::-;12690:89;12772:6;12767:3;12690:89;:::i;:::-;12683:96;;12788:52;12833:6;12828:3;12821:4;12814:5;12810:16;12788:52;:::i;:::-;12865:6;12860:3;12856:16;12849:23;;12611:267;12501:377;;;;:::o;12884:241::-;13052:66;13047:3;13040:79;12884:241;:::o;13131:699::-;13401:3;13423:95;13514:3;13505:6;13423:95;:::i;:::-;13416:102;;13535:95;13626:3;13617:6;13535:95;:::i;:::-;13528:102;;13640:137;13773:3;13640:137;:::i;:::-;13802:1;13797:3;13793:11;13786:18;;13821:3;13814:10;;13131:699;;;;;:::o;13836:180::-;13884:77;13881:1;13874:88;13981:4;13978:1;13971:15;14005:4;14002:1;13995:15;14022:233;14061:3;14084:24;14102:5;14084:24;:::i;:::-;14075:33;;14130:66;14123:5;14120:77;14117:103;;;14200:18;;:::i;:::-;14117:103;14247:1;14240:5;14236:13;14229:20;;14022:233;;;:::o;14261:241::-;14429:66;14424:3;14417:79;14261:241;:::o;14508:699::-;14778:3;14800:95;14891:3;14882:6;14800:95;:::i;:::-;14793:102;;14912:95;15003:3;14994:6;14912:95;:::i;:::-;14905:102;;15017:137;15150:3;15017:137;:::i;:::-;15179:1;15174:3;15170:11;15163:18;;15198:3;15191:10;;14508:699;;;;;:::o;15213:351::-;15283:6;15332:2;15320:9;15311:7;15307:23;15303:32;15300:119;;;15338:79;;:::i;:::-;15300:119;15458:1;15483:64;15539:7;15530:6;15519:9;15515:22;15483:64;:::i;:::-;15473:74;;15429:128;15213:351;;;;:::o;15570:332::-;15691:4;15729:2;15718:9;15714:18;15706:26;;15742:71;15810:1;15799:9;15795:17;15786:6;15742:71;:::i;:::-;15823:72;15891:2;15880:9;15876:18;15867:6;15823:72;:::i;:::-;15570:332;;;;;:::o;15908:1039::-;16038:6;16046;16054;16062;16111:3;16099:9;16090:7;16086:23;16082:33;16079:120;;;16118:79;;:::i;:::-;16079:120;16259:1;16248:9;16244:17;16238:24;16289:18;16281:6;16278:30;16275:117;;;16311:79;;:::i;:::-;16275:117;16416:97;16505:7;16496:6;16485:9;16481:22;16416:97;:::i;:::-;16406:107;;16209:314;16562:2;16588:64;16644:7;16635:6;16624:9;16620:22;16588:64;:::i;:::-;16578:74;;16533:129;16701:2;16727:64;16783:7;16774:6;16763:9;16759:22;16727:64;:::i;:::-;16717:74;;16672:129;16840:2;16866:64;16922:7;16913:6;16902:9;16898:22;16866:64;:::i;:::-;16856:74;;16811:129;15908:1039;;;;;;;:::o;16953:79::-;16992:7;17021:5;17010:16;;16953:79;;;:::o;17038:157::-;17143:45;17163:24;17181:5;17163:24;:::i;:::-;17143:45;:::i;:::-;17138:3;17131:58;17038:157;;:::o;17201:160::-;17341:12;17337:1;17329:6;17325:14;17318:36;17201:160;:::o;17367:402::-;17527:3;17548:85;17630:2;17625:3;17548:85;:::i;:::-;17541:92;;17642:93;17731:3;17642:93;:::i;:::-;17760:2;17755:3;17751:12;17744:19;;17367:402;;;:::o;17775:663::-;18016:3;18031:75;18102:3;18093:6;18031:75;:::i;:::-;18131:2;18126:3;18122:12;18115:19;;18144:75;18215:3;18206:6;18144:75;:::i;:::-;18244:2;18239:3;18235:12;18228:19;;18264:148;18408:3;18264:148;:::i;:::-;18257:155;;18429:3;18422:10;;17775:663;;;;;:::o;18444:180::-;18492:77;18489:1;18482:88;18589:4;18586:1;18579:15;18613:4;18610:1;18603:15;18630:176;18662:1;18679:20;18697:1;18679:20;:::i;:::-;18674:25;;18713:20;18731:1;18713:20;:::i;:::-;18708:25;;18752:1;18742:35;;18757:18;;:::i;:::-;18742:35;18798:1;18795;18791:9;18786:14;;18630:176;;;;:::o;18812:397::-;18952:3;18967:75;19038:3;19029:6;18967:75;:::i;:::-;19067:2;19062:3;19058:12;19051:19;;19080:75;19151:3;19142:6;19080:75;:::i;:::-;19180:2;19175:3;19171:12;19164:19;;19200:3;19193:10;;18812:397;;;;;:::o;19215:274::-;19315:4;19405:18;19397:6;19394:30;19391:56;;;19427:18;;:::i;:::-;19391:56;19477:4;19469:6;19465:17;19457:25;;19215:274;;;:::o;19495:250::-;19571:4;19661:18;19653:6;19650:30;19647:56;;;19683:18;;:::i;:::-;19647:56;19733:4;19725:6;19721:17;19713:25;;19495:250;;;:::o;19770:667::-;19876:5;19901:80;19917:63;19973:6;19917:63;:::i;:::-;19901:80;:::i;:::-;19892:89;;20001:5;20054:4;20046:6;20042:17;20034:6;20030:30;20083:3;20075:6;20072:15;20069:122;;;20102:79;;:::i;:::-;20069:122;20217:6;20200:231;20234:6;20229:3;20226:15;20200:231;;;20309:3;20338:48;20382:3;20370:10;20338:48;:::i;:::-;20333:3;20326:61;20416:4;20411:3;20407:14;20400:21;;20276:155;20260:4;20255:3;20251:14;20244:21;;20200:231;;;20204:21;19882:555;;19770:667;;;;;:::o;20462:363::-;20543:5;20592:3;20585:4;20577:6;20573:17;20569:27;20559:122;;20600:79;;:::i;:::-;20559:122;20704:4;20726:93;20815:3;20807:6;20799;20726:93;:::i;:::-;20717:102;;20549:276;20462:363;;;;:::o;20854:743::-;20984:5;21009:104;21025:87;21105:6;21025:87;:::i;:::-;21009:104;:::i;:::-;21000:113;;21133:5;21186:6;21178;21174:19;21166:6;21162:32;21217:3;21209:6;21206:15;21203:122;;;21236:79;;:::i;:::-;21203:122;21351:6;21334:257;21368:6;21363:3;21360:15;21334:257;;;21445:3;21474:72;21542:3;21530:10;21474:72;:::i;:::-;21469:3;21462:85;21576:4;21571:3;21567:14;21560:21;;21412:179;21394:6;21389:3;21385:16;21378:23;;21334:257;;;21338:21;20990:607;;20854:743;;;;;:::o;21626:411::-;21731:5;21780:3;21773:4;21765:6;21761:17;21757:27;21747:122;;21788:79;;:::i;:::-;21747:122;21892:4;21914:117;22027:3;22019:6;22011;21914:117;:::i;:::-;21905:126;;21737:300;21626:411;;;;:::o;22043:450::-;22161:6;22210:5;22198:9;22189:7;22185:23;22181:35;22178:122;;;22219:79;;:::i;:::-;22178:122;22339:1;22364:112;22468:7;22459:6;22448:9;22444:22;22364:112;:::i;:::-;22354:122;;22310:176;22043:450;;;;:::o;22499:178::-;22667:3;22662;22655:16;22499:178;:::o;22683:699::-;22953:3;22975:95;23066:3;23057:6;22975:95;:::i;:::-;22968:102;;23087:95;23178:3;23169:6;23087:95;:::i;:::-;23080:102;;23192:137;23325:3;23192:137;:::i;:::-;23354:1;23349:3;23345:11;23338:18;;23373:3;23366:10;;22683:699;;;;;:::o;23388:178::-;23556:3;23551;23544:16;23388:178;:::o;23572:699::-;23842:3;23864:95;23955:3;23946:6;23864:95;:::i;:::-;23857:102;;23976:95;24067:3;24058:6;23976:95;:::i;:::-;23969:102;;24081:137;24214:3;24081:137;:::i;:::-;24243:1;24238:3;24234:11;24227:18;;24262:3;24255:10;;23572:699;;;;;:::o;24277:435::-;24457:3;24479:95;24570:3;24561:6;24479:95;:::i;:::-;24472:102;;24591:95;24682:3;24673:6;24591:95;:::i;:::-;24584:102;;24703:3;24696:10;;24277:435;;;;;:::o;24718:539::-;24940:3;24962:95;25053:3;25044:6;24962:95;:::i;:::-;24955:102;;25067:137;25200:3;25067:137;:::i;:::-;25229:1;25224:3;25220:11;25213:18;;25248:3;25241:10;;24718:539;;;;:::o;25263:273::-;25362:4;25452:18;25444:6;25441:30;25438:56;;;25474:18;;:::i;:::-;25438:56;25524:4;25516:6;25512:17;25504:25;;25263:273;;;:::o;25542:249::-;25617:4;25707:18;25699:6;25696:30;25693:56;;;25729:18;;:::i;:::-;25693:56;25779:4;25771:6;25767:17;25759:25;;25542:249;;;:::o;25815:664::-;25920:5;25945:79;25961:62;26016:6;25961:62;:::i;:::-;25945:79;:::i;:::-;25936:88;;26044:5;26097:4;26089:6;26085:17;26077:6;26073:30;26126:3;26118:6;26115:15;26112:122;;;26145:79;;:::i;:::-;26112:122;26260:6;26243:230;26277:6;26272:3;26269:15;26243:230;;;26352:3;26381:47;26424:3;26412:10;26381:47;:::i;:::-;26376:3;26369:60;26458:4;26453:3;26449:14;26442:21;;26319:154;26303:4;26298:3;26294:14;26287:21;;26243:230;;;26247:21;25926:553;;25815:664;;;;;:::o;26503:361::-;26583:5;26632:3;26625:4;26617:6;26613:17;26609:27;26599:122;;26640:79;;:::i;:::-;26599:122;26744:4;26766:92;26854:3;26846:6;26838;26766:92;:::i;:::-;26757:101;;26589:275;26503:361;;;;:::o;26892:740::-;27021:5;27046:103;27062:86;27141:6;27062:86;:::i;:::-;27046:103;:::i;:::-;27037:112;;27169:5;27222:6;27214;27210:19;27202:6;27198:32;27253:3;27245:6;27242:15;27239:122;;;27272:79;;:::i;:::-;27239:122;27387:6;27370:256;27404:6;27399:3;27396:15;27370:256;;;27481:3;27510:71;27577:3;27565:10;27510:71;:::i;:::-;27505:3;27498:84;27611:4;27606:3;27602:14;27595:21;;27448:178;27430:6;27425:3;27421:16;27414:23;;27370:256;;;27374:21;27027:605;;26892:740;;;;;:::o;27660:409::-;27764:5;27813:3;27806:4;27798:6;27794:17;27790:27;27780:122;;27821:79;;:::i;:::-;27780:122;27925:4;27947:116;28059:3;28051:6;28043;27947:116;:::i;:::-;27938:125;;27770:299;27660:409;;;;:::o;28075:448::-;28192:6;28241:5;28229:9;28220:7;28216:23;28212:35;28209:122;;;28250:79;;:::i;:::-;28209:122;28370:1;28395:111;28498:7;28489:6;28478:9;28474:22;28395:111;:::i;:::-;28385:121;;28341:175;28075:448;;;;:::o;28529:991::-;28568:7;28591:19;28608:1;28591:19;:::i;:::-;28586:24;;28624:19;28641:1;28624:19;:::i;:::-;28619:24;;28825:1;28757:66;28753:74;28750:1;28747:81;28742:1;28739;28735:9;28731:1;28728;28724:9;28720:25;28716:113;28713:139;;;28832:18;;:::i;:::-;28713:139;29036:1;28968:66;28963:75;28960:1;28956:83;28951:1;28948;28944:9;28940:1;28937;28933:9;28929:25;28925:115;28922:141;;;29043:18;;:::i;:::-;28922:141;29247:1;29179:66;29174:75;29171:1;29167:83;29162:1;29159;29155:9;29151:1;29148;29144:9;29140:25;29136:115;29133:141;;;29254:18;;:::i;:::-;29133:141;29457:1;29389:66;29384:75;29381:1;29377:83;29372:1;29369;29365:9;29361:1;29358;29354:9;29350:25;29346:115;29343:141;;;29464:18;;:::i;:::-;29343:141;29512:1;29509;29505:9;29494:20;;28529:991;;;;:::o;29526:178::-;29694:3;29689;29682:16;29526:178;:::o;29710:539::-;29932:3;29947:137;30080:3;29947:137;:::i;:::-;30109:1;30104:3;30100:11;30093:18;;30128:95;30219:3;30210:6;30128:95;:::i;:::-;30121:102;;30240:3;30233:10;;29710:539;;;;:::o

Swarm Source

ipfs://98113c478d3e9a0c9f63a7407828e431afe5f9714f47bd1f78ba3873b17f1b58

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.